ETH Price: $3,929.91 (-1.32%)

Token

Maverick Token (MAV)

Overview

Max Total Supply

15,100,663.100431064731805349 MAV

Holders

206,255

Market

Price

$0.3025 @ 0.000077 ETH (-2.20%)

Onchain Market Cap

$4,567,346.56

Circulating Supply Market Cap

$130,066,406.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
5.999999596415532956 MAV

Value
$1.81 ( ~0.000460569842315412 ETH) [0.0000%]
0xcd1d9052660cb53363bda06f95d91035bc3060c7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Maverick Protocol offers a new infrastructure for decentralized finance, built to facilitate the most liquid markets for traders, liquidity providers, DAO treasuries, and developers, powered by a revolutionary Dynamic Distribution Automated Market Maker (AMM).

Market

Volume (24H):$13,544,760.00
Market Capitalization:$130,066,406.00
Circulating Supply:430,057,744.00 MAV
Market Data Source: Coinmarketcap

This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
MaverickToken

Compiler Version
v0.8.19+commit.7dd6d404

ZkSolc Version
v1.3.7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 19 : MaverickToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {OFT} from "@layerzerolabs/solidity-examples/contracts/token/oft/OFT.sol";

contract MaverickToken is OFT {
    constructor(address _layerZeroEndpoint, address mintToAddress) OFT("Maverick Token", "MAV", _layerZeroEndpoint) {
        if (mintToAddress != address(0)) _mint(mintToAddress, 2_000_000_000 * 1e18);
    }
}

File 2 of 19 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 19 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

File 4 of 19 : ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

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

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

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

File 5 of 19 : LzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // ua can not send payload larger than this by default, but it can be changed by the ua owner
    uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000;

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

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

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

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

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

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

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

    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual {
        bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
        require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source");
        _checkPayloadSize(_dstChainId, _payload.length);
        lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams);
    }

    function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual {
        uint providedGasLimit = _getGasLimit(_adapterParams);
        uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas;
        require(minGasLimit > 0, "LzApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low");
    }

    function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
        require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
        assembly {
            gasLimit := mload(add(_adapterParams, 34))
        }
    }

    function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual {
        uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId];
        if (payloadSizeLimit == 0) { // use default if not set
            payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT;
        }
        require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large");
    }

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

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

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

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

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

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

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

    function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) {
        bytes memory path = trustedRemoteLookup[_remoteChainId];
        require(path.length != 0, "LzApp: no trusted path record");
        return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
    }

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

    function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner {
        require(_minGas > 0, "LzApp: invalid minGas");
        minDstGasLookup[_dstChainId][_packetType] = _minGas;
        emit SetMinDstGas(_dstChainId, _packetType, _minGas);
    }

    // if the size is 0, it means default size limit
    function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner {
        payloadSizeLimitLookup[_dstChainId] = _size;
    }

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

File 6 of 19 : NonblockingLzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    constructor(address _endpoint) LzApp(_endpoint) {}

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

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

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

    function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual {
        failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
        emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
    }

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

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

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

File 7 of 19 : IOFT.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

/**
 * @dev Interface of the OFT standard
 */
interface IOFT is IOFTCore, IERC20 {

}

File 8 of 19 : IOFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

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

    /**
     * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
     * `_from` the owner of token
     * `_dstChainId` the destination chain identifier
     * `_toAddress` can be any size depending on the `dstChainId`.
     * `_amount` the quantity of tokens in wei
     * `_refundAddress` the address LayerZero refunds if too much message fee is sent
     * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
     * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
     */
    function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    /**
     * @dev returns the circulating amount of tokens on current chain
     */
    function circulatingSupply() external view returns (uint);

    /**
     * @dev returns the address of the ERC20 token
     */
    function token() external view returns (address);

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

    /**
     * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
     * `_nonce` is the inbound nonce.
     */
    event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount);

    event SetUseCustomAdapterParams(bool _useCustomAdapterParams);
}

File 9 of 19 : OFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "./IOFT.sol";
import "./OFTCore.sol";

// override decimal() function is needed
contract OFT is OFTCore, ERC20, IOFT {
    constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) OFTCore(_lzEndpoint) {}

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

    function token() public view virtual override returns (address) {
        return address(this);
    }

    function circulatingSupply() public view virtual override returns (uint) {
        return totalSupply();
    }

    function _debitFrom(address _from, uint16, bytes memory, uint _amount) internal virtual override returns(uint) {
        address spender = _msgSender();
        if (_from != spender) _spendAllowance(_from, spender, _amount);
        _burn(_from, _amount);
        return _amount;
    }

    function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns(uint) {
        _mint(_toAddress, _amount);
        return _amount;
    }
}

File 10 of 19 : OFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

abstract contract OFTCore is NonblockingLzApp, ERC165, IOFTCore {
    using BytesLib for bytes;

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint16 public constant PT_SEND = 0;

    bool public useCustomAdapterParams;

    constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {}

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

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

    function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) public payable virtual override {
        _send(_from, _dstChainId, _toAddress, _amount, _refundAddress, _zroPaymentAddress, _adapterParams);
    }

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

    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        uint16 packetType;
        assembly {
            packetType := mload(add(_payload, 32))
        }

        if (packetType == PT_SEND) {
            _sendAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else {
            revert("OFTCore: unknown packet type");
        }
    }

    function _send(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual {
        _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS);

        uint amount = _debitFrom(_from, _dstChainId, _toAddress, _amount);

        bytes memory lzPayload = abi.encode(PT_SEND, _toAddress, amount);
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

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

    function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual {
        (, bytes memory toAddressBytes, uint amount) = abi.decode(_payload, (uint16, bytes, uint));

        address to = toAddressBytes.toAddress(0);

        amount = _creditTo(_srcChainId, to, amount);
        emit ReceiveFromChain(_srcChainId, to, amount);
    }

    function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual {
        if (useCustomAdapterParams) {
            _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas);
        } else {
            require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty.");
        }
    }

    function _debitFrom(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount) internal virtual returns(uint);

    function _creditTo(uint16 _srcChainId, address _toAddress, uint _amount) internal virtual returns(uint);
}

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


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

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

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

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

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

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

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

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

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

        return tempBytes;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        bytes memory tempBytes;

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

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

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

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

                mstore(tempBytes, _length)

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

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

        return tempBytes;
    }

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

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

        return tempAddress;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempBytes32;
    }

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

        assembly {
            let length := mload(_preBytes)

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

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

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

        return success;
    }

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

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

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

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

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

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

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

        return success;
    }
}

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

library ExcessivelySafeCall {
    uint256 constant LOW_28_MASK =
    0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

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

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

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

File 13 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 14 of 19 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

File 15 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 16 of 19 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 17 of 19 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "compilerPath": "",
  "experimental": {},
  "optimizer": {
    "enabled": true,
    "mode": "3"
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"address","name":"mintToAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","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":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010008a98f208987ecda43d3c4f5ebec11e490adca7433f8f7e17f99cbfb02b7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0004000000000002000900000000000200000000030100190000006003300270000008020430019700030000004103550002000000010355000008020030019d000100000000001f0000000101200190000000220000c13d0000008001000039000000400010043f0000000001000031000000040110008c000000620000413d0000000201000367000000000101043b000000e001100270000008140210009c000000640000a13d000008150210009c000000740000a13d000008160210009c000000fd0000213d0000081e0210009c0000017e0000213d000008220210009c0000033c0000613d000008230210009c0000036e0000613d000008240110009c000000620000c13d200214be0000040f0000000001000416000000000110004c000000620000c13d0000000001000031000000bf02100039000000200800008a000000000282016f0000080303200041000008040330009c000000320000213d0000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000400020043f0000001f0210018f00000002030003670000000504100272000000400000613d00000000050000190000000506500210000000000763034f000000000707043b000000a00660003900000000007604350000000105500039000000000645004b000000380000413d000000000520004c0000004f0000613d0000000504400210000000000343034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000080502000041000000400310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d000000a00500043d000008060150009c000000620000213d000000c00100043d000900000001001d000008060110009c0000021b0000a13d00000000010000190000200400010430000008330210009c0000007f0000213d000008420210009c000001230000a13d000008430210009c000001850000213d000008470210009c000003880000613d000008480210009c000003ad0000613d000008490110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000004740000013d000008250210009c0000014e0000a13d000008260210009c000001a50000213d0000082a0210009c000003ae0000613d0000082b0210009c000003de0000613d0000082c0110009c000000620000c13d200213030000040f000008340210009c000001720000a13d000008350210009c000001cf0000213d000008390210009c000003df0000613d0000083a0210009c000003f80000613d0000083b0110009c000000620000c13d0000000001000416000000000110004c000000620000c13d0000000002000031000000040120008a0000080503000041000000600410008c000000000400001900000000040340190000080501100197000000000510004c000000000300a019000008050110009c00000000010400190000000001036019000000000110004c000000620000c13d00000002030003670000000401300370000000000101043b0000ffff0410008c000000620000213d0000002404300370000000000404043b0000080d0540009c000000620000213d00000023054000390000080506000041000000000725004b0000000007000019000000000706801900000805082001970000080505500197000000000985004b0000000006008019000000000585013f000008050550009c00000000050700190000000005066019000000000550004c000000620000c13d0000000405400039000000000353034f000000000303043b0000080d0530009c0000002c0000213d0000003f05300039000000200600008a000000000565016f000000400800043d0000000005580019000000000685004b000000000600001900000001060040390000080d0750009c0000002c0000213d00000001066001900000002c0000c13d0000002406400039000000400050043f000900000008001d00000000043804360000000005630019000000000225004b000000620000213d0000001f0230018f00000002056003670000000506300272000000d70000613d000000000700001900000005087002100000000009840019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000000cf0000413d000000000720004c000000e60000613d0000000506600210000000000565034f00000000066400190000000302200210000000000706043300000000072701cf000000000727022f000000000505043b0000010002200089000000000525022f00000000022501cf000000000272019f00000000002604350000000002340019000000000002043500000044020000390000000202200367000000000202043b000800000002001d0000080d0220009c000000620000213d20020aca0000040f00000000020100190000000901000029200210450000040f00000008020000292002106b0000040f000000000101041a000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e000008170210009c000001fb0000213d0000081b0210009c000003f90000613d0000081c0210009c000004300000613d0000081d0110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d0000000601000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000084a0210009c000002ad0000a13d0000084b0210009c000004310000613d0000084c0210009c000004550000613d0000084d0110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000400310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000002010003670000000402100370000000000202043b000008060320009c000000620000213d0000002401100370000000000301043b000000000100041120021eea0000040f0000000101000039000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000082d0210009c000002dd0000a13d0000082e0210009c000004560000613d0000082f0210009c000004710000613d000008300110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d0000000401000039000000000101041a0000080601100197000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000083c0210009c0000030d0000a13d0000083d0210009c0000048c0000613d0000083e0210009c000004b10000613d0000083f0110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000003e20000013d0000081f0210009c000004b20000613d000008200210009c000004b30000613d000008210110009c000000620000c13d200218cb0000040f000008440210009c000004df0000613d000008450210009c000005100000613d000008460110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d000000400100043d000000120200003900000000002104350000080202000041000008020310009c0000000001028019000000400110021000000850011001c7000020030001042e000008270210009c000005680000613d000008280210009c000005690000613d000008290110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d000000400100043d000900000001001d00000857010000410000000000100439000000000100041200000004001004430000002400000443000080050100003900000044020000392002079f0000040f0000080601100197000000090300002900000000001304350000080201000041000008020230009c0000000001034019000000400110021000000850011001c7000020030001042e000008360210009c0000058c0000613d000008370210009c0000058d0000613d000008380110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d000000000100041a00000806021001970000000005000411000000000252004b0000065f0000c13d0000080a01100197000000000010041b00000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080b011001c70000800d0200003900000003030000390000080c04000041000000000600001920021ff80000040f0000000101200190000000620000613d000007300000013d000008180210009c000005b20000613d000008190210009c000005e40000613d0000081a0110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d000000400100043d000000000200041000000000002104350000080202000041000008020310009c0000000001028019000000400110021000000850011001c7000020030001042e000000400300043d000008070130009c0000002c0000213d0000004001300039000000400010043f0000000e01000039000000000413043600000808010000410000000000140435000000400200043d000008070120009c0000002c0000213d000600000004001d000500000003001d0000004001200039000000400010043f00000020032000390000080901000041000300000003001d00000000001304350000000303000039000700000002001d0000000000320435000000000200041a0000080a012001970000000006000411000000000116019f000000000010041b00000802010000410000000004000414000800000005001d000008020540009c0000000001044019000000c0011002100000080b011001c700000806052001970000800d020000390000080c04000041000400000008001d20021ff80000040f00000008030000290000000101200190000000620000613d000000800030043f000000050100002900000000060104330000080d0160009c000000070400002900000006070000290000002c0000213d0000000a05000039000000000105041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000044f0000c13d000000200130008c0000027d0000413d000100000003001d000200000006001d000800000005001d000000000050043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f0000000102200190000000620000613d00000002060000290000001f026000390000000502200270000000200360008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000704000029000000080500002900000006070000290000027d0000813d000000000002041b0000000102200039000000000312004b000002790000413d0000001f0160008c000006b20000a13d000200000006001d000800000005001d000000000050043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f00000004030000290000000102200190000000620000613d000000020700002900000000033701700000002002000039000000000101043b00000005060000290000029d0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000002950000413d000000000373004b000002a80000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b0000000101000039000000010270021000000007040000290000000805000029000006bc0000013d0000084e0210009c000005e50000613d0000084f0110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004010000390000000201100367000000000101043b0000085f02100197000000000221004b000000620000c13d0000000102000039000000000310004c000002d40000613d000008600310009c000002d40000613d000008610210009c00000000020000190000000102006039000008620110009c00000000010000190000000101006039000000000221019f000000010120018f000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e000008310210009c000005e60000613d000008320110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000400310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000002020003670000000401200370000000000101043b0000ffff0310008c000000620000213d0000002402200370000000000202043b000900000002001d0000ffff0220008c000000620000213d00000000001004350000000201000039000000200010043f00000040020000390000000001000019200207890000040f000000090200002920020adc0000040f000000000101041a000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e000008400210009c0000061a0000613d000008410110009c000000620000c13d0000000001000416000000000110004c000000620000c13d000000000100003120020a980000040f000800000002001d000700000003001d0000ffff0110018f00000000001004350000000101000039000000200010043f00000040020000390000000001000019200207890000040f000000400200043d000900000002001d200212210000040f00000009030000290000000002310049000000000103001920020ff70000040f00000009010000290000000012010434200207890000040f000900000001001d0000000003000031000000080100002900000007020000292002100a0000040f0000000012010434200207890000040f0000000902000029000000000112004b00000000010000190000000101006039000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004020000390000000201200367000000000101043b000008060310009c000000620000213d000000000300041a00000806033001970000000004000411000000000343004b0000065f0000c13d000000000302041a0000080a03300197000000000313019f000000000032041b000000400200043d000000000012043500000802010000410000000003000414000008020430009c0000000003018019000008020420009c00000000010240190000004001100210000000c002300210000000000112019f0000080e011001c70000800d020000390000000103000039000008560400004120021ff80000040f0000000101200190000007300000c13d000000620000013d0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d000000400100043d000027100200003900000000002104350000080202000041000008020310009c0000000001028019000000400110021000000850011001c7000020030001042e0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000400310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004010000390000000201100367000000000101043b000900000001001d0000ffff0110008c000000620000213d20021e2a0000040f000000090100002900000000001004350000000301000039000000200010043f00000040020000390000000001000019200207890000040f00000024020000390000000202200367000000000202043b000000000021041b0000000001000019000020030001042e200209f70000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d0000000b04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f00000001022001900000044f0000c13d000000400100043d0000000002710436000000000550004c000006820000613d0000000000400435000000000370004c0000000003000019000006880000613d000008580400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000003d60000413d000006880000013d2002125e0000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d000000400100043d00000000000104350000080202000041000008020310009c0000000001028019000000400110021000000850011001c7000020030001042e20020bda0000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004010000390000000201100367000000000101043b000000000210004c0000000002000019000000010200c039000000000221004b000000620000c13d000000000200041a00000806022001970000000003000411000000000232004b0000065f0000c13d0000000602000039000000000302041a000001000400008a000000000343016f000000000313019f000000000032041b000000400200043d000000000012043500000802010000410000000003000414000008020430009c0000000003018019000008020420009c00000000010240190000004001100210000000c002300210000000000112019f0000080e011001c70000800d020000390000000103000039000008550400004120021ff80000040f0000000101200190000007300000c13d000000620000013d2002194f0000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d0000000a04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000006700000613d0000085b0100004100000000001004350000002201000039000000040010043f0000085c010000410000200400010430200209560000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d000000000100041a0000080601100197000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000000310004c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d0000000901000039000000000101041a000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000000620000213d00000000001004350000000301000039000000200010043f00000040020000390000000001000019200207890000040f000000000101041a000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e20020aed0000040f200215b80000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000400310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000002020003670000000401200370000000000101043b000008060310009c000000620000213d0000002402200370000000000202043b000900000002001d000008060220009c000000620000213d00000000001004350000000801000039000000200010043f00000040020000390000000001000019200207890000040f000000090200002920021e410000040f000000000101041a000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000600310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000002010003670000000402100370000000000202043b0000000003020019000008060220009c000000620000213d0000002402100370000000000202043b000900000002001d000008060220009c000000620000213d0000004401100370000000000401043b000800000004001d00000000020004110000000001030019000700000001001d000000000304001920021f510000040f00000007010000290000000902000029000000080300002920021e520000040f0000000101000039000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000000001000416000000000110004c000000620000c13d0000000002000031000000040120008a0000080503000041000000a00410008c000000000400001900000000040340190000080501100197000000000510004c000000000300a019000008050110009c00000000010400190000000001036019000000000110004c000000620000c13d00000002010003670000000403100370000000000303043b000900000003001d0000ffff0330008c000000620000213d0000002403100370000000000303043b0000080d0430009c000000620000213d00000023043000390000080505000041000000000624004b0000000006000019000000000605801900000805072001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c000000620000c13d0000000404300039000000000441034f000000000404043b000800000004001d0000080d0440009c000000620000213d00000024043000390000000803000029000700000004001d0000000003430019000000000323004b000000620000213d0000006403100370000000000403043b000000000340004c0000000003000019000000010300c039000600000004001d000000000334004b000000620000c13d0000008401100370000000000101043b0000080d0310009c000000620000213d0000000401100039200207b00000040f00000044030000390000000203300367000000000403043b00000000060100190000000007020019000000090100002900000007020000290000000803000029000000060500002920021cd30000040f000000400300043d0000002004300039000000000024043500000000001304350000080201000041000008020230009c000000000103401900000040011002100000085d011001c7000020030001042e200213640000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000400310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000002010003670000000402100370000000000202043b000008060320009c000000620000213d0000002401100370000000000301043b000000000100041120021e520000040f0000000101000039000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e2002107c0000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004010000390000000201100367000000000101043b000008060210009c000000620000213d00000000001004350000000701000039000000200010043f00000040020000390000000001000019200207890000040f000000000101041a000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004010000390000000201100367000000000601043b000008060160009c000000620000213d000000000100041a00000806021001970000000005000411000000000252004b0000065f0000c13d000000000260004c000007210000c13d000000400100043d000000640210003900000851030000410000000000320435000000440210003900000852030000410000000000320435000000240210003900000026030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c7000020040001043020021a5e0000040f200207cb0000040f0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000000620000213d00000000001004350000000101000039000000200010043f00000040020000390000000001000019200207890000040f000000400200043d000900000002001d200212210000040f00000009030000290000000002310049000000000103001920020ff70000040f0000002001000039000000400200043d000800000002001d000000000212043600000009010000292002092d0000040f000000080400002900000000014100490000080202000041000008020310009c0000000001028019000008020340009c000000000204401900000040022002100000006001100210000000000121019f000020030001042e0000000001000416000000000110004c000000620000c13d000000040100008a00000000011000310000080502000041000000400310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000000620000c13d00000004010000390000000201100367000000000101043b000900000001001d000008060110009c000000620000213d0000000001000411000800000001001d00000000001004350000000801000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000000620000613d000000000101043b00000009020000290000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000000620000613d000000000101043b000000000101041a00000024020000390000000202200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000007320000613d0000085b0100004100000000001004350000001101000039000000040010043f0000085c010000410000200400010430000000400100043d00000044021000390000085903000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000400100043d0000000002710436000000000550004c0000069a0000613d0000000000400435000000000370004c0000000003000019000006a00000613d0000085e0400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b0000067a0000413d000006a00000013d000001000400008a000000000343016f0000000000320435000000000270004c000000200300003900000000030060190000002002300039000900000001001d20020ff70000040f000000400100043d000800000001001d0000000902000029200209400000040f000000080400002900000000014100490000080202000041000008020310009c0000000001028019000008020340009c000000000204401900000040022002100000006001100210000000000121019f000020030001042e000001000400008a000000000343016f0000000000320435000000000270004c000000200300003900000000030060190000002002300039000900000001001d20020ff70000040f000000400100043d000800000001001d0000000902000029200209400000040f000000080400002900000000014100490000080202000041000008020310009c0000000001028019000008020340009c000000000204401900000040022002100000006001100210000000000121019f000020030001042e000000000160004c0000000001000019000006b60000613d00000000010704330000000302600210000000010300008a000000000223022f000000000232013f000000000221016f0000000101600210000000000112019f000000000015041b00000000050404330000080d0150009c0000002c0000213d0000000b04000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f00000001011001900000044f0000c13d000800000005001d000600000004001d000500000003001d000000200130008c000006ef0000413d0000000601000029000000000010043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f0000000102200190000000620000613d00000008030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000005010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000006ef0000813d000000000002041b0000000102200039000000000312004b000006eb0000413d00000008010000290000001f0110008c0000073e0000a13d0000000601000029000000000010043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f00000001022001900000000402000029000000620000613d000000080300002900000000032301700000002002000039000000000101043b00000007060000290000070f0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000007070000413d0000000804000029000000000343004b0000071d0000813d00000008030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000070400002900000000024200190000000002020433000000000232016f000000000021041b0000000101000039000000080200002900000001022002100000074b0000013d0000080a01100197000000000161019f000000000010041b00000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080b011001c70000800d0200003900000003030000390000080c0400004120021ff80000040f0000000101200190000000620000613d0000000001000019000020030001042e0000000801000029000000090200002920021eea0000040f0000000101000039000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e0000000801000029000000000110004c0000000001000019000007440000613d0000000301000029000000000101043300000008040000290000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000000000112019f0000000602000029000000000012041b00000009010000290000080601100198000900000001001d0000075b0000c13d000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000081301000041000020030001042e0000000901000039000000000201041a0000080f0320009c000006590000813d0000081002200041000000000021041b000000090100002900000000001004350000000701000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000000620000613d000000000101043b000000000201041a0000081002200041000000000021041b0000081001000041000000400200043d000000000012043500000802010000410000000003000414000008020430009c0000000003018019000008020420009c00000000010240190000004001100210000000c002300210000000000121019f0000080e011001c70000800d02000039000000030300003900000812040000410000000005000019000000090600002920021ff80000040f0000000101200190000007520000c13d000000620000013d0000080203000041000008020410009c00000000010380190000004001100210000008020420009c00000000020380190000006002200210000000000112019f0000000002000414000008020420009c0000000002038019000000c002200210000000000112019f0000080b011001c7000080100200003920021ffd0000040f00000001022001900000079d0000613d000000000101043b000000000001042d00000000010000190000200400010430000000000301001900000802010000410000000004000414000008020540009c0000000001044019000000c001100210000000600220021000000000011200190000086301100041000000000203001920021ffd0000040f0000000102200190000007ae0000613d000000000101043b000000000001042d000000000100001900002004000104300000001f031000390000080504000041000000000523004b0000000005000019000000000504401900000805062001970000080503300197000000000763004b000000000400a019000000000363013f000008050330009c00000000030500190000000003046019000000000330004c000007c90000613d0000000203100367000000000303043b0000080d0430009c000007c90000213d00000020011000390000000004310019000000000224004b000007c90000213d0000000002030019000000000001042d00000000010000190000200400010430000a0000000000020000000001000416000000000110004c000007e20000c13d0000000001000031000000040210008a0000080503000041000000800420008c000000000400001900000000040340190000080502200197000000000520004c000000000300a019000008050220009c00000000020400190000000002036019000000000220004c000007e20000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000007e40000a13d000000000100001900002004000104300000002403200370000000000303043b0000080d0430009c000007e20000213d00000023043000390000080505000041000000000614004b0000000006000019000000000605801900000805071001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c000007e20000c13d0000000404300039000000000442034f000000000b04043b0000080d04b0009c000007e20000213d000000240c300039000000000dcb001900000000031d004b000007e20000213d0000004403200370000000000a03043b0000080d03a0009c000007e20000213d0000006403200370000000000303043b0000080d0430009c000007e20000213d00000023043000390000080505000041000000000614004b0000000006000019000000000605801900000805071001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c000007e20000c13d0000000404300039000000000242034f000000000402043b0000080d0240009c000007e20000213d0000002402300039000a00000002001d0000000002240019000000000112004b000007e20000213d0000085701000041000000000010043900000000010004120000000400100443000000240000044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000864011001c70000800502000039000900000009001d00060000000a001d00080000000b001d00070000000c001d000500000004001d00040000000d001d20021ffd0000040f00000009030000290000000102200190000007e20000613d000000000101043b00000806011001970000000002000411000000000112004b0000085b0000c13d00000000003004350000000101000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000007e20000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b0000086d0000613d0000085b0100004100000000001004350000002201000039000000040010043f0000085c010000410000200400010430000000400100043d00000044021000390000086503000041000000000032043500000024021000390000001e030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000400400043d000200000004001d000100000005001d0000000004540436000300000004001d000000000330004c000008850000613d000000000010043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f0000000102200190000007e20000613d0000000102000029000000000220004c000009210000c13d000000000100001900000003050000290000088d0000013d000001000100008a000000000112016f000000030500002900000000001504350000000101000029000000000110004c000000200100003900000000010060190000000204000029000300000005001d000000000245004900000000011200190000001f01100039000000200200008a000000000321016f0000000001430019000000000331004b000000000300001900000001030040390000080d0410009c0000091b0000213d00000001033001900000091b0000c13d000000400010043f000000020300002900000000030304330000000804000029000000000334004b0000000003000019000009090000c13d0000000803000029000000000330004c0000000003000019000009090000613d00000008030000290000003f03300039000000000223016f0000000002210019000000000312004b000000000300001900000001030040390000080d0420009c0000091b0000213d00000001033001900000091b0000c13d0000000003000031000000400020043f000000080500002900000000025104360000000404000029000000000334004b0000000704000029000007e20000213d0000001f0350018f00000002044003670000000505500272000008c70000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000008bf0000413d000000000630004c000008d60000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000803000029000000000332001900000000000304350000080203000041000008020420009c000000000203801900000040022002100000000001010433000008020410009c00000000010380190000006001100210000000000121019f0000000002000414000008020420009c0000000002038019000000c002200210000000000112019f0000080b011001c7000080100200003920021ffd0000040f0000000102200190000007e20000613d00000802020000410000000304000029000008020340009c00000000030200190000000003044019000000400330021000000002040000290000000004040433000008020540009c00000000040280190000006004400210000000000334019f000000000101043b000400000001001d0000000001000414000008020410009c0000000001028019000000c001100210000000000131019f0000080b011001c7000080100200003920021ffd0000040f0000000102200190000007e20000613d000000000101043b0000000402000029000000000112004b00000000030000190000000103006039000000010130018f20021b580000040f0000000003000031000000070100002900000008020000292002100a0000040f000800000001001d00000000030000310000000a0100002900000005020000292002100a0000040f000000000401001900000009010000290000000802000029000000060300002920021b700000040f0000000001000019000020030001042e0000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000000201043b0000000001000019000000030500002900000001060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b000009250000413d0000088d0000013d00000000030104330000000002320436000000000430004c000009390000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b000009320000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000430004c0000094f0000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b000009480000413d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d00020000000000020000000001000416000000000110004c0000096d0000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c0000096d0000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c0000096f0000a13d00000000010000190000200400010430000000000100041a00000806011001970000000002000411000000000121004b000009bd0000c13d0000085701000041000000000010043900000000010004120000000400100443000000240000044300000802010000410000000002000414000200000003001d000008020320009c0000000001024019000000c00110021000000864011001c7000080050200003920021ffd0000040f00000001022001900000096d0000613d000000000101043b000008660200004100000000002004390000080601100197000100000001001d000000040010044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000867011001c7000080020200003920021ffd0000040f000000020300002900000001022001900000096d0000613d000000000101043b000000000110004c0000096d0000613d000000400500043d000008680100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c000009b50000613d0000080204000041000008020310009c0000000001048019000008020350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f0000085c011001c7000200000005001d20021ff80000040f000000020500002900000000030100190000006003300270000108020030019d000008020430019700030000000103550000000102200190000009d10000613d000008690150009c000009ce0000413d0000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000400100043d00000044021000390000085903000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000400050043f0000000001000019000020030001042e000000400200043d0000001f0340018f0000000504400272000009de0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000009d60000413d000000000530004c000009ed0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000802010000410000000103000031000008020430009c0000000003018019000008020420009c000000000102401900000040011002100000006002300210000000000112019f000020040001043000020000000000020000000001000416000000000110004c00000a0e0000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c00000a0e0000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000a100000a13d00000000010000190000200400010430000000000100041a00000806011001970000000002000411000000000121004b00000a5e0000c13d0000085701000041000000000010043900000000010004120000000400100443000000240000044300000802010000410000000002000414000200000003001d000008020320009c0000000001024019000000c00110021000000864011001c7000080050200003920021ffd0000040f000000010220019000000a0e0000613d000000000101043b000008660200004100000000002004390000080601100197000100000001001d000000040010044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000867011001c7000080020200003920021ffd0000040f0000000203000029000000010220019000000a0e0000613d000000000101043b000000000110004c00000a0e0000613d000000400500043d0000086a0100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000a560000613d0000080204000041000008020310009c0000000001048019000008020350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f0000085c011001c7000200000005001d20021ff80000040f000000020500002900000000030100190000006003300270000108020030019d00000802043001970003000000010355000000010220019000000a720000613d000008690150009c00000a6f0000413d0000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000400100043d00000044021000390000085903000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000400050043f0000000001000019000020030001042e000000400200043d0000001f0340018f000000050440027200000a7f0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000a770000413d000000000530004c00000a8e0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000802010000410000000103000031000008020430009c0000000003018019000008020420009c000000000102401900000040011002100000006002300210000000000112019f0000200400010430000000040210008a00000805030000410000003f0420008c000000000400001900000000040320190000080502200197000000000520004c0000000003008019000008050220009c00000000020400190000000002036019000000000220004c00000ac80000613d00000002020003670000000403200370000000000403043b0000ffff0340008c00000ac80000213d0000002403200370000000000503043b0000080d0350009c00000ac80000213d00000023035000390000080506000041000000000713004b0000000007000019000000000706801900000805081001970000080503300197000000000983004b0000000006008019000000000383013f000008050330009c00000000030700190000000003066019000000000330004c00000ac80000c13d0000000403500039000000000232034f000000000302043b0000080d0230009c00000ac80000213d00000024025000390000000005230019000000000115004b00000ac80000213d0000000001040019000000000001042d000000000100001900002004000104300000ffff0110018f00000000001004350000000501000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000ada0000613d000000000101043b000000000001042d000000000100001900002004000104300000ffff0220018f0000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000aeb0000613d000000000101043b000000000001042d0000000001000019000020040001043000040000000000020000000001000416000000000110004c00000b200000c13d0000000001000031000000040210008a0000080503000041000000400420008c000000000400001900000000040340190000080502200197000000000520004c000000000300a019000008050220009c00000000020400190000000002036019000000000220004c00000b200000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00000b200000213d0000002403200370000000000303043b0000080d0430009c00000b200000213d00000023043000390000080505000041000000000614004b0000000006000019000000000605801900000805071001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c00000b200000c13d0000000404300039000000000242034f000000000402043b0000080d0240009c00000b200000213d00000024053000390000000002540019000000000112004b00000b220000a13d00000000010000190000200400010430000000000100041a00000806011001970000000002000411000000000121004b00000ba00000c13d0000085701000041000000000010043900000000010004120000000400100443000000240000044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000864011001c70000800502000039000400000004001d000300000009001d000200000005001d20021ffd0000040f000000010220019000000b200000613d000000000101043b000008660200004100000000002004390000080601100197000100000001001d000000040010044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000867011001c7000080020200003920021ffd0000040f000000020500002900000003040000290000000409000029000000010220019000000b200000613d000000000101043b000000000110004c00000b200000613d000000400a00043d0000086b0100004100000000001a04350000002402a000390000000001000414000000400300003900000000003204350000000402a0003900000000004204350000004402a0003900000000009204350000001f0390018f0000006402a000390000000204500367000000050590027200000b680000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000b600000413d000000000630004c00000b770000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000000102000029000000040320008c00000b980000613d0000001f04900039000000200300008a000000000534016f0000086c030000410000086c0450009c000000000503801900000802030000410000080204a0009c000000000403001900000000040a401900000040044002100000006005500210000000000545019f000008020410009c0000000001038019000000c001100210000000000115019f0000085a0110004100040000000a001d20021ff80000040f000000040a00002900000000030100190000006003300270000108020030019d00000802043001970003000000010355000000010220019000000bb40000613d0000086901a0009c00000bb10000413d0000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000400100043d00000044021000390000085903000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c700002004000104300000004000a0043f0000000001000019000020030001042e000000400200043d0000001f0340018f000000050440027200000bc10000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000bb90000413d000000000530004c00000bd00000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000802010000410000000103000031000008020430009c0000000003018019000008020420009c000000000102401900000040011002100000006002300210000000000112019f0000200400010430000e0000000000020000000003000031000000040130008a0000080502000041000000df0410008c000000000400001900000000040220190000080501100197000000000510004c0000000002008019000008050110009c00000000010400190000000001026019000000000110004c00000bf20000613d00000002010003670000000402100370000000000c02043b0000080602c0009c00000bf20000213d0000002402100370000000000d02043b0000ffff02d0008c00000bf40000a13d000000000100001900002004000104300000004402100370000000000402043b0000080d0240009c00000bf20000213d00000023024000390000080505000041000000000632004b0000000006000019000000000605801900000805073001970000080502200197000000000872004b0000000005008019000000000272013f000008050220009c00000000020600190000000002056019000000000220004c00000bf20000c13d0000000402400039000000000221034f000000000202043b0000080d0520009c00000bf20000213d00000024064000390000000004620019000000000434004b00000bf20000213d0000008404100370000000000f04043b0000080604f0009c00000bf20000213d000000a404100370000000000b04043b0000080604b0009c00000bf20000213d000000c404100370000000000404043b0000080d0540009c00000bf20000213d00000023054000390000080507000041000000000835004b0000000008000019000000000807801900000805093001970000080505500197000000000a95004b0000000007008019000000000595013f000008050550009c00000000050800190000000005076019000000000550004c00000bf20000c13d0000000405400039000000000151034f000000000101043b0000080d0510009c00000bf20000213d00000024044000390000000005410019000000000335004b00000bf20000213d000e0000000d001d0000003f03200039000000200d00008a0000000003d3016f000000400e00043d00000000033e00190000000007e3004b000000000700001900000001070040390000080d0830009c00000f950000213d000000010770019000000f950000c13d000d0000000b001d000000400030043f0000001f0720018f00000000032e04360000000206600367000000050820027200000c510000613d0000000009000019000000050a900210000000000ba30019000000000aa6034f000000000a0a043b0000000000ab04350000000109900039000000000a89004b00000c490000413d000000000970004c00000c600000613d0000000508800210000000000686034f00000000088300190000000307700210000000000908043300000000097901cf000000000979022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000696019f0000000000680435000000000223001900000000000204350000003f021000390000000002d2016f000000400700043d0000000002270019000000000372004b000000000300001900000001030040390000080d0620009c00000f950000213d000000010330019000000f950000c13d000b0000000e001d000a0000000d001d0000000003000031000000400020043f000c00000007001d0000000002170436000000000335004b00000bf20000213d00080000000f001d00090000000c001d0000001f0310018f0000000204400367000000050510027200000c840000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000c7c0000413d000000000630004c00000c930000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000112001900000000000104350000000c0100002900000000010104330000000602000039000000000202041a000000ff0220019000000cbe0000c13d000000000110004c00000cd20000c13d00000064010000390000000201100367000000000101043b000700000001001d00000000020004110000000901000029000600000002001d000000000121004b00000d1c0000c13d0000000903000029000000000130004c00000dd20000c13d000000400100043d00000064021000390000087f030000410000000000320435000000440210003900000880030000410000000000320435000000240210003900000021030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000000210110008c00000ce70000213d000000400100043d00000044021000390000086f03000041000000000032043500000024021000390000001c030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000400100043d000000640210003900000870030000410000000000320435000000440210003900000871030000410000000000320435000000240210003900000026030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c700002004000104300000000c0100002900000022011000390000000001010433000700000001001d0000000e0100002900000000001004350000000201000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b0000000000000435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b000000000101041a000000000210004c00000d570000c13d000000400100043d00000044021000390000086e03000041000000000032043500000024021000390000001a030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000090100002900000000001004350000000801000039000500000001001d000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b00000006020000290000080602200197000600000002001d0000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b000000000201041a000000010100008a000400000002001d000000000112004b00000ca60000613d00000007010000290000000402000029000000000112004b00000d6c0000813d000000400100043d00000044021000390000087703000041000000000032043500000024021000390000001d030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c700002004000104300000000702000029000000000112004b00000c9d0000813d000000400100043d00000044021000390000086d03000041000000000032043500000024021000390000001b030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c700002004000104300000000901000029000000000110004c00000d840000c13d000000400100043d000000640210003900000875030000410000000000320435000000440210003900000876030000410000000000320435000000240210003900000024030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c700002004000104300000000601000029000000000110004c00000d9c0000c13d000000400100043d000000640210003900000873030000410000000000320435000000440210003900000874030000410000000000320435000000240210003900000022030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000000090100002900000000001004350000000501000029000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b00000006020000290000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000905000029000000010220019000000bf20000613d000000070200002900000004030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000800d0200003900000003030000390000087204000041000000060600002920021ff80000040f0000000903000029000000010120019000000bf20000613d00000000003004350000000701000039000600000001001d000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b000000000201041a0000000701000029000500000002001d000000000112004b00000dfb0000813d000000400100043d00000064021000390000087d03000041000000000032043500000044021000390000087e030000410000000000320435000000240210003900000022030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000000090100002900000000001004350000000601000029000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000905000029000000010220019000000bf20000613d000000070300002900000005020000290000000002320049000000000101043b000000000021041b0000000901000039000000000201041a0000000002320049000000000021041b000000400100043d000000000031043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000800d0200003900000003030000390000081204000041000500000003001d000000000600001920021ff80000040f000000010120019000000bf20000613d000000400300043d000000400130003900000060020000390000000000210435000000200130003900000000000104350000000b06000029000000000106043300000080023000390000000000120435000600000003001d000000a002300039000000000310004c00000e3d0000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b00000e360000413d0000000002210019000000000002043500000006040000290000006002400039000000070300002900000000003204350000009f021000390000000a03000029000000000232016f0000000000240435000000bf01100039000000000231016f0000000001420019000000000221004b000000000200001900000001020040390000080d0310009c00000f950000213d000000010220019000000f950000c13d000000400010043f0000000e010000290000ffff0110018f0000000002000416000400000002001d000e00000001001d00000000001004350000000101000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f0000000004056019000300000004001d0000001f0440008c00000000040000190000000104002039000000010440018f000000000443004b00000e770000613d0000085b0100004100000000001004350000002201000039000000040010043f0000085c010000410000200400010430000000400400043d000200000004001d00000003050000290000000004540436000100000004001d000000000330004c00000e8f0000613d000000000010043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d0000000302000029000000000220004c00000ee70000c13d0000000001000019000000010500002900000e970000013d000001000100008a000000000112016f000000010500002900000000001504350000000301000029000000000110004c000000200100003900000000010060190000000203000029000000000235004900000000011200190000001f011000390000000a02000029000000000221016f0000000001320019000000000221004b000000000200001900000001020040390000080d0310009c00000f950000213d000000010220019000000f950000c13d000000400010043f00000002020000290000000002020433000000000220004c00000ebe0000c13d00000064021000390000087b03000041000000000032043500000044021000390000087c030000410000000000320435000000240210003900000030030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c7000020040001043000000006010000290000000001010433000300000001001d0000000e0100002900000000001004350000000501000029000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b000000000101041a000000000210004c00002710010060390000000302000029000000000121004b00000ef30000813d000000400100043d00000044021000390000087a03000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000000201043b0000000001000019000000010500002900000003060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b00000eeb0000413d00000e970000013d0000085701000041000000000010043900000000010004120000000400100443000000240000044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000864011001c7000080050200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b000008660200004100000000002004390000080601100197000500000001001d000000040010044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000867011001c7000080020200003920021ffd0000040f000000010220019000000bf20000613d000000000101043b000000000110004c00000bf20000613d000000400500043d00000878010000410000000001150436000100000001001d00000024025000390000000001000414000000c003000039000000000032043500000004025000390000000e03000029000000000032043500000002080000290000000003080433000000c4045000390000000000340435000300000005001d000000e404500039000000000530004c00000f300000613d000000000500001900000000064500190000002005500039000000000785001900000000070704330000000000760435000000000635004b00000f290000413d000000000543001900000000000504350000001f033000390000000a05000029000000000353016f00000000034300190000000004230049000000030500002900000044055000390000000000450435000000060800002900000000040804330000000003430436000000000540004c00000f470000613d000000000500001900000000063500190000002005500039000000000785001900000000070704330000000000760435000000000645004b00000f400000413d000000000534001900000000000504350000000d05000029000008060550019700000003070000290000008406700039000000000056043500000008050000290000080605500197000000640670003900000000005604350000001f044000390000000a05000029000000000454016f00000000043400190000000002240049000000a40370003900000000002304350000000c0700002900000000030704330000000002340436000000000430004c00000f660000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00000f5f0000413d000000000423001900000000000404350000000504000029000000040440008c00000f910000613d0000001f033000390000000a04000029000000000343016f0000000305000029000000000252004900000000023200190000080203000041000008020420009c00000000020380190000006002200210000008020450009c000000000403001900000000040540190000004004400210000000000242019f000008020410009c0000000001038019000000c001100210000000000112019f0000000402000029000000000220004c00000f840000c13d000000050200002920021ff80000040f00000f8a0000013d0000080b011001c7000080090200003900000004030000290000000504000029000000000500001920021ff80000040f000300000001035500000000030100190000006003300270000108020030019d0000080204300197000000010220019000000fd10000613d00000003010000290000080d0110009c0000000b0200002900000f9b0000a13d0000085b0100004100000000001004350000004101000039000000040010043f0000085c0100004100002004000104300000000303000029000000400030043f000000400100003900000000001304350000000001020433000000400230003900000000001204350000006002300039000000000310004c00000fae0000613d0000000003000019000000000423001900000020033000390000000b05000029000000000553001900000000050504330000000000540435000000000413004b00000fa60000413d000000000221001900000000000204350000000702000029000000010300002900000000002304350000007f011000390000000a02000029000000000121016f00000802020000410000000304000029000008020340009c000000000302001900000000030440190000004003300210000008020410009c00000000010280190000006001100210000000000131019f0000000003000414000008020430009c0000000002034019000000c002200210000000000112019f000000090200002900000806062001970000080b011001c70000800d02000039000000030300003900000879040000410000000e0500002920021ff80000040f000000010120019000000bf20000613d0000000001000019000020030001042e000000400200043d0000001f0340018f000000050440027200000fde0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000fd60000413d000000000530004c00000fed0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000802010000410000000103000031000008020430009c0000000003018019000008020420009c000000000102401900000040011002100000006002300210000000000112019f00002004000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000080d0310009c000010040000213d0000000102200190000010040000c13d000000400010043f000000000001042d0000085b0100004100000000001004350000004101000039000000040010043f0000085c0100004100002004000104300000000004010019000008690120009c0000103d0000813d0000003f01200039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b000000000600001900000001060040390000080d0750009c0000103d0000213d00000001066001900000103d0000c13d000000400050043f00000000052104360000000006420019000000000336004b000010430000213d0000001f0320018f000000020440036700000005062002720000102b0000613d000000000700001900000005087002100000000009850019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000010230000413d000000000730004c0000103a0000613d0000000506600210000000000464034f00000000066500190000000303300210000000000706043300000000073701cf000000000737022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000373019f000000000036043500000000022500190000000000020435000000000001042d0000085b0100004100000000001004350000004101000039000000040010043f0000085c01000041000020040001043000000000010000190000200400010430000000400400043d0000000003010433000000000530004c000010510000613d000000000500001900000000064500190000002005500039000000000715001900000000070704330000000000760435000000000635004b0000104a0000413d000000000143001900000000002104350000080201000041000008020240009c0000000002010019000000000204401900000040022002100000002003300039000008020430009c00000000030180190000006003300210000000000223019f0000000003000414000008020430009c0000000001034019000000c001100210000000000121019f0000080b011001c7000080100200003920021ffd0000040f0000000102200190000010690000613d000000000101043b000000000001042d000000000100001900002004000104300000080d022001970000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f00000001022001900000107a0000613d000000000101043b000000000001042d0000000001000019000020040001043000030000000000020000000001000416000000000110004c000010cf0000c13d0000000001000031000000040210008a0000080503000041000000800420008c000000000400001900000000040340190000080502200197000000000520004c000000000300a019000008050220009c00000000020400190000000002036019000000000220004c000010cf0000c13d00000002030003670000000402300370000000000d02043b0000ffff02d0008c000010cf0000213d0000002402300370000000000402043b0000080d0240009c000010cf0000213d00000023024000390000080505000041000000000612004b0000000006000019000000000605801900000805071001970000080502200197000000000872004b0000000005008019000000000272013f000008050220009c00000000020600190000000002056019000000000220004c000010cf0000c13d0000000402400039000000000223034f000000000202043b0000080d0520009c000010cf0000213d00000024064000390000000004620019000000000414004b000010cf0000213d0000004404300370000000000404043b0000080d0440009c000010cf0000213d0000006404300370000000000404043b0000080d0540009c000010cf0000213d00000023054000390000080507000041000000000815004b0000000008000019000000000807801900000805091001970000080505500197000000000a95004b0000000007008019000000000595013f000008050550009c00000000050800190000000005076019000000000550004c000010cf0000c13d0000000405400039000000000353034f000000000303043b0000080d0530009c000010cf0000213d00000024044000390000000005430019000000000115004b000010d10000a13d0000000001000019000020040001043000000000010004100000000007000411000000000117004b0000118c0000c13d0000003f07200039000000200100008a000000000817016f000000400700043d0000000008870019000000000978004b000000000900001900000001090040390000080d0a80009c000011a10000213d0000000109900190000011a10000c13d000000400080043f0000001f0820018f000000000727043600000002066003670000000509200272000010f00000613d000000000a000019000000050ba00210000000000cb70019000000000bb6034f000000000b0b043b0000000000bc0435000000010aa00039000000000b9a004b000010e80000413d000000000a80004c000010ff0000613d0000000509900210000000000696034f00000000099700190000000308800210000000000a090433000000000a8a01cf000000000a8a022f000000000606043b0000010008800089000000000686022f00000000068601cf0000000006a6019f0000000000690435000000000227001900000000000204350000003f02300039000000000612016f000000400200043d0000000006620019000000000726004b000000000700001900000001070040390000080d0860009c000011a10000213d0000000107700190000011a10000c13d0000000007000031000000400060043f0000000006320436000000000575004b000010cf0000213d00030000000d001d0000001f0530018f000000020440036700000005073002720000111f0000613d00000000080000190000000509800210000000000a960019000000000994034f000000000909043b00000000009a04350000000108800039000000000978004b000011170000413d000000000850004c0000112e0000613d0000000507700210000000000474034f00000000077600190000000305500210000000000807043300000000085801cf000000000858022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000484019f00000000004704350000000003360019000000000003043500000000040604330000ffff03400190000011a70000c13d00000000030204330000080505000041000000600730008c000000000700001900000000070540190000080508300197000000000980004c000000000500a019000008050880009c000000000507c019000000000550004c000010cf0000c13d0000ffff0440008c000010cf0000213d000000400420003900000000050404330000080d0450009c000010cf0000213d000000000436001900000000052500190000003f035000390000080506000041000000000743004b0000000007000019000000000706801900000805033001970000080508400197000000000983004b0000000006008019000000000383013f000008050330009c00000000030700190000000003066019000000000330004c000010cf0000c13d000000200350003900000000030304330000080d0630009c000011a10000213d0000003f06300039000000000616016f000000400100043d0000000006610019000000000716004b000000000700001900000001070040390000080d0860009c000011a10000213d0000000107700190000011a10000c13d000000400060043f000000000631043600000040055000390000000007530019000000000447004b000010cf0000213d000000000430004c000011750000613d000000000400001900000000076400190000000008540019000000000808043300000000008704350000002004400039000000000734004b0000116e0000413d000000000336001900000000000304350000000001010433000000130110008c000011b90000213d000000400100043d000000440210003900000887030000410000000000320435000000240210003900000015030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000400100043d000000640210003900000881030000410000000000320435000000440210003900000882030000410000000000320435000000240210003900000026030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c700002004000104300000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000400100043d00000044021000390000088303000041000000000032043500000024021000390000001c030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c7000020040001043000000060012000390000000001010433000200000001001d0000000001060433000008840210009c000011d10000213d000000400100043d00000044021000390000088603000041000000000032043500000024021000390000001f030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c700002004000104300000000902000039000000000402041a00000002030000290000000003340019000000000443004b000000000400001900000001040040390000000104400190000011e00000613d0000085b0100004100000000001004350000001101000039000000040010043f0000085c0100004100002004000104300000006001100270000000000032041b000100000001001d00000000001004350000000701000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000010cf0000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d000000000031043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000800d02000039000000030300003900000812040000410000000005000019000000010600002920021ff80000040f00000003050000290000000101200190000010cf0000613d000000400100043d0000000202000029000000000021043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000ffff0550018f0000800d0200003900000003030000390000088504000041000000010600002920021ff80000040f0000000101200190000010cf0000613d0000000001000019000020030001042e0002000000000002000000000301041a000000010430019000000001053002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000010550018f000000000554004b000012560000c13d0000000005620436000000000240004c0000124b0000613d000200000006001d000100000005001d000000000010043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f00000001022001900000125c0000613d0000000206000029000000000260004c000012520000613d000000000201043b000000000100001900000001050000290000000003150019000000000402041a000000000043043500000001022000390000002001100039000000000361004b000012430000413d000012540000013d000001000100008a000000000113016f0000000000150435000000000160004c00000020010000390000000001006019000012540000013d000000000100001900000001050000290000000001150019000000000001042d0000085b0100004100000000001004350000002201000039000000040010043f0000085c0100004100002004000104300000000001000019000020040001043000030000000000020000000001000416000000000110004c000012ad0000c13d000000040100008a00000000011000310000080502000041000000200310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000012ad0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000012ad0000213d00000000001004350000000101000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000012ad0000613d000000000601043b000000000206041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000012940000613d0000085b0100004100000000001004350000002201000039000000040010043f0000085c010000410000200400010430000000400100043d0000000007510436000000000330004c000012af0000613d000300000005001d000100000007001d000200000001001d000000000060043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f0000000102200190000012ad0000613d0000000306000029000000000260004c000012e60000c13d000000000500001900000002010000290000000107000029000012b50000013d00000000010000190000200400010430000001000300008a000000000232016f0000000000270435000000000250004c00000020050000390000000005006019000000000217004900000000025200190000001f03200039000000200200008a000000000223016f0000000004120019000000000224004b000000000200001900000001020040390000080d0340009c000012d80000213d0000000102200190000012d80000c13d000000400040043f0000000002010433000000000320004c000012de0000c13d00000044024000390000088803000041000000000032043500000024024000390000001d030000390000000000320435000008530200004100000000002404350000000402400039000000200300003900000000003204350000080202000041000008020340009c0000000001020019000000000104401900000040011002100000085a011001c700002004000104300000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000130320008c000012f20000213d0000085b0100004100000000001004350000001101000039000000040010043f0000085c010000410000200400010430000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000365004b000012ea0000413d000012b50000013d000000140220008a20021df30000040f0000000002010019000000400100043d000300000001001d200209400000040f000000030400002900000000014100490000080202000041000008020310009c0000000001028019000008020340009c000000000204401900000040022002100000006001100210000000000121019f000020030001042e00030000000000020000000001000416000000000110004c000013550000c13d000000040100008a00000000011000310000080502000041000000400310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000013550000c13d00000002010003670000000402100370000000000202043b000300000002001d000008060220009c000013550000213d0000002401100370000000000101043b000200000001001d0000000001000411000100000001001d00000000001004350000000801000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000013550000613d000000000101043b00000003020000290000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000013550000613d000000000101043b000000000101041a0000000203000029000000000231004b000013570000813d000000400100043d00000064021000390000088903000041000000000032043500000044021000390000088a030000410000000000320435000000240210003900000025030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c700002004000104300000000001000019000020040001043000000000033100490000000101000029000000030200002920021eea0000040f0000000101000039000000400200043d00000000001204350000080201000041000008020320009c0000000001024019000000400110021000000850011001c7000020030001042e000c0000000000020000000001000416000000000110004c0000137b0000c13d0000000001000031000000040210008a0000080503000041000000400420008c000000000400001900000000040340190000080502200197000000000520004c000000000300a019000008050220009c00000000020400190000000002036019000000000220004c0000137b0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c0000137d0000a13d000000000100001900002004000104300000002403200370000000000303043b0000080d0430009c0000137b0000213d00000023043000390000080505000041000000000614004b0000000006000019000000000605801900000805071001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c0000137b0000c13d0000000404300039000000000442034f000000000504043b0000080d0450009c0000137b0000213d00000024083000390000000003850019000000000113004b0000137b0000213d000000400a00043d000000000100041a00000806011001970000000003000411000000000131004b000013f60000c13d000000000182034f0000001f0650018f000000200ba000390000000507500272000013ad0000613d0000000002000019000000050320021000000000043b0019000000000331034f000000000303043b00000000003404350000000102200039000000000372004b000013a50000413d000000000260004c000013bc0000613d0000000502700210000000000121034f00000000022b00190000000303600210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f000000000012043500000000015b0019000000000200041000000060022002100000000000210435000000140150003900000000001a04350000005301500039000000200400008a000000000141016f00000000011a00190000000002a1004b000000000200001900000001020040390000080d0310009c000013f00000213d0000000102200190000013f00000c13d00060000000b001d00050000000a001d000900000004001d000700000007001d000800000006001d000000400010043f00000000009004350000000101000039000400000001001d000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c70000801002000039000c00000005001d000b00000009001d000a00000008001d20021ffd0000040f0000000a050000290000000b040000290000000c0700002900000001022001900000137b0000613d000000000601043b0000000501000029000000000c0104330000080d01c0009c00000008080000290000000709000029000000090a000029000000060b000029000014060000a13d0000085b0100004100000000001004350000004101000039000000040010043f0000085c0100004100002004000104300000004401a0003900000859020000410000000000210435000008530100004100000000001a04350000002401a00039000000200200003900000000002104350000000401a00039000000000021043500000802010000410000080202a0009c00000000010a401900000040011002100000085a011001c70000200400010430000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000014170000613d0000085b0100004100000000001004350000002201000039000000040010043f0000085c010000410000200400010430000000200130008c000014400000413d000100000003001d00020000000c001d000300000006001d000000000060043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f0000000a050000290000000b040000290000000c0700002900000001022001900000137b0000613d000000020c0000290000001f02c0003900000005022002700000002003c0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000008080000290000000709000029000000090a0000290000000306000029000000060b000029000014400000813d000000000002041b0000000102200039000000000312004b0000143c0000413d0000001f01c0008c000014750000a13d00020000000c001d000300000006001d000000000060043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f00000001022001900000137b0000613d0000000902000029000000020700002900000000032701700000002002000039000000000101043b0000000506000029000014600000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000014580000413d000000000373004b0000146b0000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b00000001017002100000000c070000290000000b04000029000000080800002900000007090000290000000a05000029000000090a000029000000040200002900000003060000290000147f0000013d0000000001c0004c0000000001000019000014790000613d00000000010b04330000000302c00210000000010300008a000000000223022f000000000232013f000000000121016f0000000102c00210000000000121019f000000000016041b000000400100043d00000020021000390000004003000039000000000032043500000000004104350000004002100039000000000072043500000060021000390000000203500367000000000490004c000014950000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b0000148d0000413d000000000480004c000014a40000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000000272001900000000000204350000007f027000390000000002a2016f0000080203000041000008020410009c00000000010380190000004001100210000008020420009c00000000020380190000006002200210000000000112019f0000000002000414000008020420009c0000000002038019000000c002200210000000000112019f0000080b011001c70000800d0200003900000001030000390000088b0400004120021ff80000040f00000001012001900000137b0000613d0000000001000019000020030001042e00050000000000020000000001000416000000000110004c000014f50000c13d0000000001000031000000040210008a0000080503000041000000800420008c000000000400001900000000040340190000080502200197000000000520004c000000000300a019000008050220009c00000000020400190000000002036019000000000220004c000014f50000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000014f50000213d0000002403200370000000000a03043b0000ffff03a0008c000014f50000213d0000006403200370000000000303043b0000080d0430009c000014f50000213d00000023043000390000080505000041000000000614004b0000000006000019000000000605801900000805071001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c000014f50000c13d0000000404300039000000000242034f000000000402043b0000080d0240009c000014f50000213d00000024053000390000000002540019000000000112004b000014f70000a13d00000000010000190000200400010430000000000100041a00000806011001970000000002000411000000000121004b0000157e0000c13d0000085701000041000000000010043900000000010004120000000400100443000000240000044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000864011001c70000800502000039000500000004001d000400000009001d00030000000a001d000200000005001d20021ffd0000040f0000000102200190000014f50000613d000000000101043b000008660200004100000000002004390000080601100197000100000001001d000000040010044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000867011001c7000080020200003920021ffd0000040f00000002050000290000000304000029000000040300002900000005090000290000000102200190000014f50000613d000000000101043b000000000110004c000014f50000613d000000400a00043d0000002401a0003900000000004104350000088c0100004100000000001a04350000000401a00039000000000031043500000044010000390000000201100367000000000101043b0000006402a00039000000800300003900000000003204350000004402a0003900000000001204350000008402a00039000000000100041400000000009204350000001f0390018f000000a402a0003900000002045003670000000505900272000015460000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000153e0000413d000000000630004c000015550000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000000102000029000000040320008c000015760000613d0000001f04900039000000200300008a000000000534016f0000088d030000410000088d0450009c000000000503801900000802030000410000080204a0009c000000000403001900000000040a401900000040044002100000006005500210000000000545019f000008020410009c0000000001038019000000c001100210000000000115019f0000088e0110004100050000000a001d20021ff80000040f000000050a00002900000000030100190000006003300270000108020030019d000008020430019700030000000103550000000102200190000015920000613d0000086901a0009c0000158f0000413d0000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000400100043d00000044021000390000085903000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c700002004000104300000004000a0043f0000000001000019000020030001042e000000400200043d0000001f0340018f00000005044002720000159f0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000015970000413d000000000530004c000015ae0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000802010000410000000103000031000008020430009c0000000003018019000008020420009c000000000102401900000040011002100000006002300210000000000112019f000020040001043000110000000000020000000001000031000000040210008a00000805030000410000007f0420008c000000000400001900000000040320190000080502200197000000000520004c0000000003008019000008050220009c00000000020400190000000002036019000000000220004c000015cc0000613d00000002020003670000000403200370000000000b03043b0000ffff03b0008c000015ce0000a13d000000000100001900002004000104300000002403200370000000000303043b0000080d0430009c000015cc0000213d00000023043000390000080505000041000000000614004b0000000006000019000000000605801900000805071001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c000015cc0000c13d0000000404300039000000000442034f000000000904043b0000080d0490009c000015cc0000213d000000240c300039000000000dc9001900000000031d004b000015cc0000213d0000004403200370000000000a03043b0000080d03a0009c000015cc0000213d0000006403200370000000000303043b0000080d0430009c000015cc0000213d00000023043000390000080505000041000000000614004b0000000006000019000000000605801900000805071001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c000015cc0000c13d0000000404300039000000000242034f000000000402043b0000080d0240009c000015cc0000213d0000002402300039001000000002001d0000000002240019001100000002001d000000000112004b000015cc0000213d0000000000b004350000000501000039000a00000001001d000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c70000801002000039000e00000009001d000d0000000a001d000b0000000b001d000f0000000c001d000c00000004001d00090000000d001d20021ffd0000040f0000000f030000290000000e070000290000000102200190000015cc0000613d000000400200043d0000001f0870018f0000000203300367000000000101043b0000000509700272000016310000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b000016290000413d000000000480004c000016400000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000800000009001d000700000008001d000000000372001900000000001304350000088f010000410000088f0370009c000000000107401900000802030000410000000004000414000008020540009c0000000004038019000008020520009c0000000002038019000000400220021000000060011002100000085001100041000600000001001d000000000112019f000000c002400210000000000112019f0000080b011001c7000080100200003920021ffd0000040f00000001022001900000000d02000029000015cc0000613d000000000101043b0000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000c060000290000000102200190000015cc0000613d000000000101043b000000000201041a000000000120004c000016810000c13d000000400100043d000000640210003900000893030000410000000000320435000000440210003900000894030000410000000000320435000000240210003900000023030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000500000002001d0000003f01600039000000200500008a000000000251016f000000400100043d000400000002001d0000000002210019000000000312004b000000000300001900000001030040390000080d0420009c000017ba0000213d0000000103300190000017ba0000c13d000200000005001d0000000003000031000000400020043f00000000026104360000001104000029000000000334004b000015cc0000213d0000001f0360018f000300000003001d000000100300002900000002033003670000000507600272000016a50000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b0000169d0000413d000100000007001d0000000304000029000000000440004c000016b80000613d00000001040000290000000504400210000000000343034f000000000442001900000003050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c03000029000000000332001900000000000304350000080203000041000008020420009c000000000203801900000040022002100000000001010433000008020410009c00000000010380190000006001100210000000000121019f0000000002000414000008020420009c0000000002038019000000c002200210000000000112019f0000080b011001c7000080100200003920021ffd0000040f0000000102200190000015cc0000613d000000000101043b0000000502000029000000000121004b000017c00000c13d0000000b0100002900000000001004350000000a01000029000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f00000001022001900000000f03000029000015cc0000613d000000400200043d0000000203300367000000000101043b0000000807000029000000000470004c000016f00000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000016e80000413d0000000704000029000000000440004c000017020000613d00000008040000290000000504400210000000000343034f000000000442001900000007050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e03000029000000000332001900000000001304350000080201000041000008020320009c000000000201801900000040022002100000000603000029000000000232019f0000000003000414000008020430009c0000000001034019000000c001100210000000000121019f0000080b011001c7000080100200003920021ffd0000040f00000001022001900000000d02000029000015cc0000613d000000000101043b0000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f00000009070000290000000f060000290000000e050000290000000102200190000015cc0000613d000000000101043b000000000001041b0000003f015000390000000202000029000000000221016f000000400100043d0000000002210019000000000312004b000000000300001900000001030040390000080d0420009c000017ba0000213d0000000103300190000017ba0000c13d0000000003000031000000400020043f0000000001510436000000000237004b000015cc0000213d00000002026003670000000806000029000000000360004c000017460000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000463004b0000173e0000413d0000000703000029000000000330004c000017580000613d00000008030000290000000503300210000000000232034f000000000331001900000007040000290000000304400210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000e0200002900000000012100190000000000010435000000400100043d00000004020000290000000002210019000000000312004b000000000300001900000001030040390000080d0420009c0000000c04000029000017ba0000213d0000000103300190000017ba0000c13d0000000003000031000000400020043f00000000024104360000001104000029000000000334004b000015cc0000213d000000100300002900000002033003670000000107000029000000000470004c0000177a0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000017720000413d0000000304000029000000000440004c0000178c0000613d00000001040000290000000504400210000000000343034f000000000442001900000003050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c030000290000000003320019000000000003043500000000040204330000ffff03400190000017d50000c13d00000000030104330000080505000041000000600630008c000000000600001900000000060540190000080507300197000000000870004c000000000500a019000008050770009c000000000506c019000000000550004c000015cc0000c13d0000ffff0440008c000015cc0000213d000000400410003900000000040404330000080d0540009c000015cc0000213d000000000323001900000000051400190000003f025000390000080504000041000000000632004b0000000006000019000000000604801900000805022001970000080507300197000000000872004b0000000004008019000000000272013f000008050220009c00000000020600190000000002046019000000000220004c000015cc0000c13d000000200250003900000000020204330000080d0420009c0000000206000029000017e70000a13d0000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000400100043d000000640210003900000890030000410000000000320435000000440210003900000891030000410000000000320435000000240210003900000021030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000000400100043d00000044021000390000088303000041000000000032043500000024021000390000001c030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c700002004000104300000003f04200039000000000664016f000000400400043d0000000006640019000000000746004b000000000700001900000001070040390000080d0860009c000017ba0000213d0000000107700190000017ba0000c13d000000400060043f000000000624043600000040055000390000000007520019000000000337004b000015cc0000213d000000000320004c000018020000613d000000000300001900000000076300190000000008530019000000000808043300000000008704350000002003300039000000000723004b000017fb0000413d000000000226001900000000000204350000000002040433000000130220008c000018190000213d000000400100043d000000440210003900000887030000410000000000320435000000240210003900000015030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c7000020040001043000000060011000390000000001010433001100000001001d0000000001060433000008840210009c000018310000213d000000400100043d00000044021000390000088603000041000000000032043500000024021000390000001f030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c700002004000104300000000902000039000000000402041a00000011030000290000000003340019000000000443004b000000000400001900000001040040390000000104400190000018400000613d0000085b0100004100000000001004350000001101000039000000040010043f0000085c0100004100002004000104300000006001100270000000000032041b001000000001001d00000000001004350000000701000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000015cc0000613d000000000101043b000000000201041a00000011030000290000000002320019000000000021041b000000400100043d000000000031043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000800d02000039000000030300003900000812040000410000000005000019000000100600002920021ff80000040f0000000b050000290000000101200190000015cc0000613d000000400100043d0000001102000029000000000021043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000800d0200003900000003030000390000088504000041000000100600002920021ff80000040f0000000f060000290000000b050000290000000e040000290000000101200190000015cc0000613d000000400100043d000000200210003900000080030000390000000000320435000000000051043500000080021000390000000000420435000000a00210003900000002036003670000000804000029000000000440004c000018970000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b000000000056043500000001044000390000000805000029000000000554004b0000188e0000413d0000000704000029000000000440004c000018a90000613d00000008040000290000000504400210000000000343034f000000000442001900000007050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e030000290000000002320019000000000002043500000060021000390000000504000029000000000042043500000040021000390000000d040000290000000000420435000000bf023000390000000203000029000000000232016f0000080203000041000008020410009c00000000010380190000004001100210000008020420009c00000000020380190000006002200210000000000112019f0000000002000414000008020420009c0000000002038019000000c002200210000000000112019f0000080b011001c70000800d020000390000000103000039000008920400004120021ff80000040f0000000101200190000015cc0000613d0000000001000019000020030001042e00030000000000020000000001000416000000000110004c000018e60000c13d000000040100008a00000000011000310000080502000041000000600310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c000018e60000c13d00000002010003670000000402100370000000000302043b0000ffff0230008c000018e60000213d0000002402100370000000000402043b0000ffff0240008c000018e80000a13d000000000100001900002004000104300000004401100370000000000501043b000000000100041a00000806011001970000000002000411000000000121004b000019030000c13d000000000150004c000019140000c13d000000400100043d000000440210003900000897030000410000000000320435000000240210003900000015030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000400100043d00000044021000390000085903000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000100000005001d00000000003004350000000201000039000000200010043f00000802010000410000000002000414000200000003001d000008020320009c0000000001024019000000c00110021000000811011001c70000801002000039000300000004001d20021ffd0000040f00000003030000290000000102200190000018e60000613d000000000101043b0000000000300435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000030400002900000002030000290000000102200190000018e60000613d000000000101043b0000000105000029000000000051041b000000400100043d0000004002100039000000000052043500000020021000390000000000420435000000000031043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f00000895011001c70000800d020000390000000103000039000008960400004120021ff80000040f0000000101200190000018e60000613d0000000001000019000020030001042e00060000000000020000000001000416000000000110004c000019660000c13d0000000001000031000000040210008a0000080503000041000000400420008c000000000400001900000000040340190000080502200197000000000520004c000000000300a019000008050220009c00000000020400190000000002036019000000000220004c000019660000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000019680000a13d000000000100001900002004000104300000002403200370000000000303043b0000080d0430009c000019660000213d00000023043000390000080505000041000000000614004b0000000006000019000000000605801900000805071001970000080504400197000000000874004b0000000005008019000000000474013f000008050440009c00000000040600190000000004056019000000000440004c000019660000c13d0000000404300039000000000242034f000000000402043b0000080d0240009c000019660000213d00000024053000390000000002540019000000000112004b000019660000213d000000000100041a00000806011001970000000002000411000000000121004b000019af0000c13d00000000009004350000000101000039000300000001001d000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c70000801002000039000600000004001d000500000009001d000400000005001d20021ffd0000040f0000000406000029000000050500002900000006090000290000000102200190000019660000613d000000000401043b000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000019c00000613d0000085b0100004100000000001004350000002201000039000000040010043f0000085c010000410000200400010430000000400100043d00000044021000390000085903000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000200130008c000019e30000413d000100000003001d000200000004001d000000000040043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f0000000406000029000000050500002900000006090000290000000102200190000019660000613d0000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000204000029000019e30000813d000000000002041b0000000102200039000000000312004b000019df0000413d0000001f0190008c00001a120000a13d000200000004001d000000000040043500000802010000410000000002000414000008020320009c0000000001024019000000c0011002100000080e011001c7000080100200003920021ffd0000040f0000000406000029000000050500002900000006090000290000000102200190000019660000613d000000200200008a0000000003290170000000000101043b000000000200001900001a020000613d000000000200001900000000046200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b000019fa0000413d000000000393004b00001a0e0000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000202200367000000000202043b000000000232016f000000000021041b00000001019002100000000302000029000000020400002900001a1d0000013d000000000190004c000000000100001900001a170000613d0000000201600367000000000101043b0000000302900210000000010300008a000000000223022f000000000232013f000000000121016f0000000102900210000000000121019f000000000014041b000000400100043d0000002002100039000000400300003900000000003204350000000000510435000000400210003900000000009204350000001f0390018f00000060021000390000000204600367000000050590027200001a340000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001a2c0000413d000000000630004c00001a430000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000007f02900039000000200300008a000000000232016f0000080203000041000008020410009c00000000010380190000004001100210000008020420009c00000000020380190000006002200210000000000112019f0000000002000414000008020420009c0000000002038019000000c002200210000000000112019f0000080b011001c70000800d020000390000000103000039000008980400004120021ff80000040f0000000101200190000019660000613d0000000001000019000020030001042e00020000000000020000000001000416000000000110004c00001b3c0000c13d000000040100008a00000000011000310000080502000041000000800310008c000000000300001900000000030240190000080501100197000000000410004c000000000200a019000008050110009c00000000010300190000000001026019000000000110004c00001b3c0000c13d00000002030003670000000401300370000000000101043b0000ffff0210008c00001b3c0000213d0000002402300370000000000202043b0000ffff0420008c00001b3c0000213d0000004403300370000000000303043b000008060330009c00001b3c0000213d000000400500043d00000044035000390000000004000410000000000043043500000024035000390000000000230435000008990200004100000000002504350000000402500039000000000012043500000064010000390000000201100367000000000101043b000200000005001d000000640250003900000000001204350000000001000414000100000001001d0000085701000041000000000010043900000000010004120000000400100443000000240000044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000864011001c7000080050200003920021ffd0000040f000000010220019000001b3c0000613d000000000101043b0000080602100197000000040120008c00001aa60000c13d00000003010003670000000103000031000000020800002900001abb0000013d00000802010000410000000104000029000008020340009c000000000301001900000000030440190000000205000029000008020450009c00000000010540190000004001100210000000c003300210000000000113019f00000854011001c720021ffd0000040f000000020800002900000000030100190000006003300270000108020030019d00000802033001970003000000010355000000010220019000001b110000613d0000001f0230018f000000050430027200001ac70000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001abf0000413d000000000520004c00001ad60000613d0000000504400210000000000141034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f00000000001404350000001f02300039000000200100008a000000000412016f0000000002840019000000000442004b000000000400001900000001040040390000080d0520009c00001b0b0000213d000000010440019000001b0b0000c13d0000080504000041000000200530008c000000000500001900000000050440190000080506300197000000000760004c000000000400a019000008050660009c000000000405c019000000400020043f000000000440004c00001b3c0000c13d000000020400002900000000040404330000080d0540009c00001b3c0000213d0000000206000029000000000563001900000000036400190000001f043000390000080506000041000000000754004b0000000007000019000000000706801900000805044001970000080508500197000000000984004b0000000006008019000000000484013f000008050440009c00000000040700190000000004066019000000000440004c00001b3c0000c13d00000000430304340000080d0630009c00001b0b0000213d0000003f06300039000000000116016f00000000012100190000080d0610009c00001b370000a13d0000085b0100004100000000001004350000004101000039000000040010043f0000085c010000410000200400010430000000400200043d0000001f0430018f000000050330027200001b1e0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00001b160000413d000000000540004c00001b2d0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000802010000410000000103000031000008020430009c0000000003018019000008020420009c000000000102401900000040011002100000006002300210000000000112019f0000200400010430000000400010043f00000000013204360000000006430019000000000556004b00001b3e0000a13d00000000010000190000200400010430000000000530004c00001b480000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000635004b00001b410000413d00000000011300190000000000010435000000400100043d000200000001001d200209400000040f000000020400002900000000014100490000080202000041000008020310009c0000000001028019000008020340009c000000000204401900000040022002100000006001100210000000000121019f000020030001042e000000000110004c00001b5b0000613d000000000001042d000000400100043d00000064021000390000089a03000041000000000032043500000044021000390000089b030000410000000000320435000000240210003900000026030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c700002004000104300008000000000002000000000b020019000000000a000414000000400500043d00000044025000390000008006000039000000000062043500000020065000390000089c0200004100000000002604350000ffff0210018f0000002401500039000500000002001d000000000021043500000000020b0433000000a4015000390000000000210435000000c401500039000000000720004c00001b8c0000613d0000000007000019000000000817001900000020077000390000000009b7001900000000090904330000000000980435000000000827004b00001b850000413d000000000712001900000000000704350000001f02200039000000200700008a000800000007001d000000000272016f000000a007200039000000840850003900000000007804350000080d073001970000006403500039000400000007001d0000000000730435000000000212001900000000910404340000000002120436000000000310004c00001ba60000613d000000000300001900000000072300190000002003300039000000000843001900000000080804330000000000870435000000000713004b00001b9f0000413d0000000003210019000000000003043500000000025200490000001f011000390000000803000029000000000131016f0000000001120019000000200210008a00000000002504350000001f01100039000000000131016f0000000008510019000000000118004b000000000100001900000001010040390000080d0280009c00001ccd0000213d000000010110019000001ccd0000c13d000000400080043f0000089d0180009c00001ccd0000213d000000c001800039000000400010043f0000009601000039000000000c180436000000000100003100000002011003670000000002000019000000050320021000000000073c0019000000000331034f000000000303043b00000000003704350000000102200039000000050320008c00001bc30000413d0000000002000410000000040120008c000700000004001d00030000000b001d000600000008001d00001bd40000c13d0000000102000039000000010100003100001bee0000013d0000080201000041000008020360009c0000000003010019000000000306401900000040033002100000000005050433000008020650009c00000000050180190000006005500210000000000335019f0000080205a0009c00000000010a4019000000c001100210000000000113019f000200000009001d00010000000c001d20021ff80000040f000000010c000029000000020900002900000006080000290000000704000029000000010220018f00030000000103550000006001100270000108020010019d0000080201100197000000960310008c0000009605000039000000000501401900000000005804350000000101000031000000000115004b00001ccb0000213d00000003030003670000001f0150018f000000050850027200001c020000613d0000000005000019000000050650021000000000076c0019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b00001bfa0000413d000000000510004c00001c110000613d0000000505800210000000000353034f00000000065c00190000000301100210000000000506043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f0000000000160435000000000120004c00001cca0000c13d0000080201000041000008020290009c0000000002010019000000000209401900000040022002100000000003040433000008020430009c00000000030180190000006003300210000000000223019f0000000003000414000008020430009c0000000001034019000000c001100210000000000121019f0000080b011001c7000080100200003920021ffd0000040f000000010220019000001ccb0000613d000000000101043b000200000001001d000000050100002900000000001004350000000501000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000307000029000000010220019000001ccb0000613d000000400200043d000000000301043b0000000001070433000000000410004c00001c450000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b00001c3e0000413d000000000421001900000000003404350000080203000041000008020420009c000000000203801900000040022002100000002001100039000008020410009c00000000010380190000006001100210000000000121019f0000000002000414000008020420009c0000000002038019000000c002200210000000000112019f0000080b011001c7000080100200003920021ffd0000040f000000010220019000001ccb0000613d000000000101043b00000004020000290000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f00000003080000290000000707000029000000010220019000001ccb0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000002002100039000000a0030000390000000000320435000000050200002900000000002104350000000002080433000000a0031000390000000000230435000000c003100039000000000420004c00001c810000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b00001c7a0000413d000000000432001900000000000404350000004004100039000000040500002900000000005404350000001f022000390000000804000029000000000242016f000000000232001900000000031200490000006004100039000000000034043500000000030704330000000002320436000000000430004c00001c990000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00001c920000413d000000000423001900000000000404350000001f033000390000000804000029000000000343016f0000000002230019000000000312004900000080041000390000000000340435000000060700002900000000030704330000000002320436000000000430004c00001caf0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00001ca80000413d0000001f043000390000000805000029000000000454016f00000000032300190000000000030435000000000212004900000000024200190000080203000041000008020420009c00000000020380190000006002200210000008020410009c00000000010380190000004001100210000000000112019f0000000002000414000008020420009c0000000002038019000000c002200210000000000112019f0000080b011001c70000800d0200003900000001030000390000089e0400004120021ff80000040f000000010120019000001ccb0000613d000000000001042d000000000100001900002004000104300000085b0100004100000000001004350000004101000039000000040010043f0000085c0100004100002004000104300009000000000002000800000007001d000700000006001d000600000005001d000300000001001d000000400a00043d0000004001a00039000000600500003900000000005104350000008001a0003900000000003104350000002001a0003900000000000104350000001f0530018f000000a001a000390000000202200367000000050630027200001cee0000613d000000000700001900000005087002100000000009810019000000000882034f000000000808043b00000000008904350000000107700039000000000867004b00001ce60000413d000000000750004c00001cfd0000613d0000000506600210000000000262034f00000000066100190000000305500210000000000706043300000000075701cf000000000757022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000272019f0000000000260435000000000131001900000000000104350000006001a0003900000000004104350000009f01300039000000200200008a000000000121016f00000000001a0435000000bf01300039000500000002001d000000000121016f00040000000a001d0000000004a10019000000000114004b000000000100001900000001010040390000080d0240009c00001dc50000213d000000010110019000001dc50000c13d000000400040043f0000089f010000410000000001140436000200000001001d0000000001000414000100000001001d0000085701000041000000000010043900000000010004120000000400100443000000240000044300000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000864011001c70000800502000039000900000004001d20021ffd0000040f000000090a000029000000010220019000001dcb0000613d000000000201043b0000004401a00039000000a0030000390000000000310435000000000100041000000806011001970000002403a00039000000000013043500000003010000290000ffff0310018f0000000401a00039000000000031043500000004080000290000000003080433000000a404a000390000000000340435000000c404a000390000080602200197000000000530004c0000000809000029000000050b00002900001d460000613d000000000500001900000000064500190000002005500039000000000785001900000000070704330000000000760435000000000635004b00001d3f0000413d000000000543001900000000000504350000000605000029000000000550004c0000000005000019000000010500c0390000006406a0003900000000005604350000001f033000390000000003b3016f000000000443001900000000011400490000008403a0003900000000001304350000001f0390018f000000000194043600000007040000290000000204400367000000050590027200001d630000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001d5b0000413d000000000630004c00001d720000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f000000000035043500000000039100190000000000030435000000040320008c00001d7b0000c13d0000000103000031000000400130008c0000004004000039000000000403401900001db40000013d0000001f039000390000000003b3016f0000000003a30049000000000113001900000802030000410000080204a0009c000000000403001900000000040a40190000004004400210000008020510009c00000000010380190000006001100210000000000141019f0000000105000029000008020450009c0000000003054019000000c003300210000000000131019f20021ffd0000040f000000090a000029000000000301001900000060033002700000080203300197000000400430008c000000400400003900000000040340190000001f0540018f000000050640027200001da10000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b00001d990000413d000000000750004c00001db00000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f0003000000010355000000010220019000001dcd0000613d0000001f01400039000000e00210018f0000000001a20019000000000221004b000000000200001900000001020040390000080d0410009c00001dc50000213d000000010220019000001dc50000c13d000000400010043f000000400130008c00001dcb0000413d00000000010a043300000002020000290000000002020433000000000001042d0000085b0100004100000000001004350000004101000039000000040010043f0000085c01000041000020040001043000000000010000190000200400010430000000400200043d0000001f0430018f000000050330027200001dda0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00001dd20000413d000000000540004c00001de90000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000802010000410000000103000031000008020430009c0000000003018019000008020420009c000000000102401900000040011002100000006002300210000000000112019f000020040001043000000000030100190000001f0100008a000000000112004b00001e120000813d0000000001030433000000000121004b00001e180000413d000000400100043d000000000420004c00001e0f0000613d0000001f0420019000000000050000190000002005006039000000000645019f00000000041600190000000005240019000000000754004b00001e0a0000813d000000000336001900000000360304340000000004640436000000000654004b00001e060000413d00000000002104350000001f02400039000000200300008a000000000232016f00001e100000013d0000000002010436000000400020043f000000000001042d0000085b0100004100000000001004350000001101000039000000040010043f0000085c010000410000200400010430000000400100043d0000004402100039000008a0030000410000000000320435000000240210003900000011030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000000100041a00000806011001970000000002000411000000000121004b00001e300000c13d000000000001042d000000400100043d00000044021000390000085903000041000000000032043500000853020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c7000020040001043000000806022001970000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000001e500000613d000000000101043b000000000001042d000000000100001900002004000104300005000000000002000500000003001d000008060110019800001eab0000613d0000080602200198000200000002001d00001ec00000613d000300000001001d00000000001004350000000701000039000400000001001d000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000001ea90000613d0000000402000029000000000101043b000000000301041a0000000501000029000100000003001d000000000113004b00001ed50000413d00000003010000290000000000100435000000200020043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000001ea90000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000020100002900000000001004350000000401000029000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000001ea90000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d000000000031043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000800d02000039000000030300003900000812040000410000000305000029000000020600002920021ff80000040f000000010120019000001ea90000613d000000000001042d00000000010000190000200400010430000000400100043d0000006402100039000008a50300004100000000003204350000004402100039000008a6030000410000000000320435000000240210003900000025030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000000400100043d0000006402100039000008a30300004100000000003204350000004402100039000008a4030000410000000000320435000000240210003900000023030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000000400100043d0000006402100039000008a10300004100000000003204350000004402100039000008a2030000410000000000320435000000240210003900000026030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c700002004000104300003000000000002000008060110019800001f270000613d000200000003001d0000080602200198000300000002001d00001f3c0000613d000100000001001d00000000001004350000000801000039000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000102200190000000030400002900001f250000613d000000000101043b0000000000400435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f0000000306000029000000010220019000001f250000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000800d0200003900000003030000390000087204000041000000010500002920021ff80000040f000000010120019000001f250000613d000000000001042d00000000010000190000200400010430000000400100043d000000640210003900000875030000410000000000320435000000440210003900000876030000410000000000320435000000240210003900000024030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000000400100043d000000640210003900000873030000410000000000320435000000440210003900000874030000410000000000320435000000240210003900000022030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c700002004000104300005000000000002000300000003001d000400000002001d0000080601100197000500000001001d00000000001004350000000801000039000100000001001d000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000001fba0000613d000000000101043b00000004020000290000080602200197000400000002001d0000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000001fba0000613d000000000101043b000000000201041a000000010100008a000200000002001d000000000112004b00001fb90000613d00000003010000290000000202000029000000000112004b00001fbc0000413d0000000501000029000000000110004c00001fce0000613d0000000401000029000000000110004c00001fe30000613d000000050100002900000000001004350000000101000029000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000001fba0000613d000000000101043b00000004020000290000000000200435000000200010043f00000802010000410000000002000414000008020320009c0000000001024019000000c00110021000000811011001c7000080100200003920021ffd0000040f000000010220019000001fba0000613d000000030200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000802020000410000000003000414000008020430009c0000000003028019000008020410009c00000000010280190000004001100210000000c002300210000000000112019f0000080e011001c70000800d02000039000000030300003900000872040000410000000505000029000000040600002920021ff80000040f000000010120019000001fba0000613d000000000001042d00000000010000190000200400010430000000400100043d00000044021000390000087703000041000000000032043500000024021000390000001d030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c000000000102801900000040011002100000085a011001c70000200400010430000000400100043d000000640210003900000875030000410000000000320435000000440210003900000876030000410000000000320435000000240210003900000024030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c70000200400010430000000400100043d000000640210003900000873030000410000000000320435000000440210003900000874030000410000000000320435000000240210003900000022030000390000000000320435000008530200004100000000002104350000000402100039000000200300003900000000003204350000080202000041000008020310009c0000000001028019000000400110021000000854011001c7000020040001043000001ffb002104210000000102000039000000000001042d0000000002000019000000000001042d00002000002104230000000102000039000000000001042d0000000002000019000000000001042d0000200200000432000020030001042e000020040001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000009f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4d6176657269636b20546f6b656e0000000000000000000000000000000000004d41560000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000fffffffffffffffffffffffffffffffffffffffff989a386c05eff8630000000000000000000000000000000000000000000000006765c793fa10079d00000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000007533d78700000000000000000000000000000000000000000000000000000000baf3292c00000000000000000000000000000000000000000000000000000000eab45d9b00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f5ecbdbc00000000000000000000000000000000000000000000000000000000fc0c546a00000000000000000000000000000000000000000000000000000000eab45d9c00000000000000000000000000000000000000000000000000000000eb8d72b700000000000000000000000000000000000000000000000000000000ed629c5c00000000000000000000000000000000000000000000000000000000d1deba1e00000000000000000000000000000000000000000000000000000000d1deba1f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000df2a5b3b00000000000000000000000000000000000000000000000000000000baf3292d00000000000000000000000000000000000000000000000000000000c446183400000000000000000000000000000000000000000000000000000000cbed8b9c0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a6c3d16400000000000000000000000000000000000000000000000000000000a6c3d16500000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000b353aaa70000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009f38369a00000000000000000000000000000000000000000000000000000000a457c2d7000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000009358928b00000000000000000000000000000000000000000000000000000000950c8a74000000000000000000000000000000000000000000000000000000007533d788000000000000000000000000000000000000000000000000000000008cfd8f5c0000000000000000000000000000000000000000000000000000000039509350000000000000000000000000000000000000000000000000000000004c4289990000000000000000000000000000000000000000000000000000000066ad5c890000000000000000000000000000000000000000000000000000000066ad5c8a0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000004c42899a0000000000000000000000000000000000000000000000000000000051905636000000000000000000000000000000000000000000000000000000005b8c41e6000000000000000000000000000000000000000000000000000000003f1f4fa3000000000000000000000000000000000000000000000000000000003f1f4fa40000000000000000000000000000000000000000000000000000000042d65a8d00000000000000000000000000000000000000000000000000000000447705150000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000003d8b38f6000000000000000000000000000000000000000000000000000000000df374820000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002a205e3d00000000000000000000000000000000000000000000000000000000313ce567000000000000000000000000000000000000000000000000000000000df374830000000000000000000000000000000000000000000000000000000010ddb1370000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000001d35670000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000002000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000001584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a45db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db94f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8ffffffff0000000000000000000000000000000000000000000000000000000036372b070000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000014e4ceea00000000000000000000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000440000000000000000000000004c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000010ddb1370000000000000000000000000000000000000000000000000000000042d65a8d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff9b4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000004c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000004c7a4170703a20696e76616c69642061646170746572506172616d7300000000656d7074792e00000000000000000000000000000000000000000000000000004f4654436f72653a205f61646170746572506172616d73206d757374206265208c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c58031000000000000000000000000000000000000000000000000000000000039a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d04c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676561207472757374656420736f75726365000000000000000000000000000000004c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f7420636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573204c7a41707000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062654f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000000000000000000000000000000000000000000000ffffffffffffffffffffffffbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf45524332303a206d696e7420746f20746865207a65726f206164647265737300746f416464726573735f6f75744f66426f756e647300000000000000000000004c7a4170703a206e6f20747275737465642070617468207265636f7264000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f778c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572cecbed8b9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff5b00000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffdf64000000000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f61c264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e561676500000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737302000000000000000000000000000000000000600000000000000000000000009d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac04c7a4170703a20696e76616c6964206d696e4761730000000000000000000000fa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dabf5ecbdbc000000000000000000000000000000000000000000000000000000006e747261637400000000000000000000000000000000000000000000000000004c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f66ad5c8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c40a7bb1000000000000000000000000000000000000000000000000000000000736c6963655f6f75744f66426f756e6473000000000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640000000000000000000000000000000000000000000000000000000000000000d2d41193444f89a4137364ba38810d970d68157a2c80e201e41512e148928464

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

0x0000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _layerZeroEndpoint (address): 0x9b896c0e23220469C7AE69cb4BbAE391eAa4C8da
Arg [1] : mintToAddress (address): 0x0000000000000000000000000000000000000000

-----Encoded View---------------


[ 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.