ETH Price: $3,388.80 (-1.54%)
Gas: 3 Gwei

Token

MetaZero (MZERO)
 

Overview

Max Total Supply

99,999,700 MZERO

Holders

6,665 ( -0.045%)

Market

Price

$0.03 @ 0.000010 ETH (-10.96%)

Onchain Market Cap

$3,375,462.87

Circulating Supply Market Cap

$3,375,528.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
31,495.853190505820927291 MZERO

Value
$1,063.13 ( ~0.31371861224359 Eth) [0.0315%]
0x424e97e814322be193cc78854517cc7afb2e1910
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MetaZero is creating a Synthetic Liquidity Layer Protocol for Cross-chain (Omnichain) Tokenization of Gaming Real World Assets (RWAs).

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaZero

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-22
*/

// File: contracts/LayerZero/token/oft/v2/interfaces/IOFTReceiverV2.sol



pragma solidity >=0.5.0;

interface IOFTReceiverV2 {
    /**
     * @dev Called by the OFT contract when tokens are received from source chain.
     * @param _srcChainId The chain id of the source chain.
     * @param _srcAddress The address of the OFT token contract on the source chain.
     * @param _nonce The nonce of the transaction on the source chain.
     * @param _from The address of the account who calls the sendAndCall() on the source chain.
     * @param _amount The amount of tokens to transfer.
     * @param _payload Additional data with no specified format.
     */
    function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external;
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: contracts/LayerZero/token/oft/v2/interfaces/ICommonOFT.sol



pragma solidity >=0.5.0;


/**
 * @dev Interface of the IOFT core standard
 */
interface ICommonOFT is IERC165 {

    struct LzCallParams {
        address payable refundAddress;
        address zroPaymentAddress;
        bytes adapterParams;
    }

    /**
     * @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, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

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

// File: contracts/LayerZero/token/oft/v2/interfaces/IOFTV2.sol



pragma solidity >=0.5.0;


/**
 * @dev Interface of the IOFT core standard
 */
interface IOFTV2 is ICommonOFT {

    /**
     * @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, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) external payable;

    function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable;
}

// File: contracts/LayerZero/libraries/ExcessivelySafeCall.sol


pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint 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,
        uint _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint _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,
        uint _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint _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);
        uint _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: contracts/LayerZero/libraries/BytesLib.sol


/*
 * @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,
        uint _start,
        uint _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, uint _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, uint _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, uint _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, uint _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, uint _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, uint _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, uint _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, uint _start) internal pure returns (uint) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint tempUint;

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

        return tempUint;
    }

    function toBytes32(bytes memory _bytes, uint _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: contracts/LayerZero/lzApp/interfaces/ILayerZeroUserApplicationConfig.sol



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: contracts/LayerZero/lzApp/interfaces/ILayerZeroEndpoint.sol



pragma solidity >=0.5.0;


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: contracts/LayerZero/lzApp/interfaces/ILayerZeroReceiver.sol



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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: contracts/LayerZero/lzApp/LzApp.sol



pragma solidity ^0.8.0;






/*
 * 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 public constant 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];
        require(minGasLimit > 0, "LzApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit + _extraGas, "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 _remoteChainId, bytes calldata _path) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = _path;
        emit SetTrustedRemote(_remoteChainId, _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 {
        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: contracts/LayerZero/lzApp/NonblockingLzApp.sol



pragma solidity ^0.8.0;



/*
 * 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)
        );
        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: contracts/LayerZero/token/oft/v2/OFTCoreV2.sol



pragma solidity ^0.8.0;





abstract contract OFTCoreV2 is NonblockingLzApp {
    using BytesLib for bytes;
    using ExcessivelySafeCall for address;

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint8 public constant PT_SEND = 0;
    uint8 public constant PT_SEND_AND_CALL = 1;

    uint8 public immutable sharedDecimals;

    mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets;

    /**
     * @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, bytes32 indexed _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 CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash);

    event NonContractAddress(address _address);

    // _sharedDecimals should be the minimum decimals on all chains
    constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {
        sharedDecimals = _sharedDecimals;
    }

    /************************************************************************
     * public functions
     ************************************************************************/
    function callOnOFTReceived(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes32 _from,
        address _to,
        uint _amount,
        bytes calldata _payload,
        uint _gasForCall
    ) public virtual {
        require(_msgSender() == address(this), "OFTCore: caller must be OFTCore");

        // send
        _amount = _transferFrom(address(this), _to, _amount);
        emit ReceiveFromChain(_srcChainId, _to, _amount);

        // call
        IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload);
    }

    /************************************************************************
     * internal functions
     ************************************************************************/
    function _estimateSendFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bool _useZro,
        bytes memory _adapterParams
    ) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendFrom()
        bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount));
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _estimateSendAndCallFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes memory _payload,
        uint64 _dstGasForCall,
        bool _useZro,
        bytes memory _adapterParams
    ) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendAndCall()
        bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall);
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _nonblockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual override {
        uint8 packetType = _payload.toUint8(0);

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

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

        (amount, ) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust
        require(amount > 0, "OFTCore: amount too small");

        bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(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 {
        (address to, uint64 amountSD) = _decodeSendPayload(_payload);
        if (to == address(0)) {
            to = address(0xdead);
        }

        uint amount = _sd2ld(amountSD);
        amount = _creditTo(_srcChainId, to, amount);

        emit ReceiveFromChain(_srcChainId, to, amount);
    }

    function _sendAndCall(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes memory _payload,
        uint64 _dstGasForCall,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams
    ) internal virtual returns (uint amount) {
        _checkGasLimit(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall);

        (amount, ) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount);
        require(amount > 0, "OFTCore: amount too small");

        // encode the msg.sender into the payload instead of _from
        bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall);
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

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

    function _sendAndCallAck(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual {
        (bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload);

        bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce];
        uint amount = _sd2ld(amountSD);

        // credit to this contract first, and then transfer to receiver only if callOnOFTReceived() succeeds
        if (!credited) {
            amount = _creditTo(_srcChainId, address(this), amount);
            creditedPackets[_srcChainId][_srcAddress][_nonce] = true;
        }

        if (!_isContract(to)) {
            emit NonContractAddress(to);
            return;
        }

        // workaround for stack too deep
        uint16 srcChainId = _srcChainId;
        bytes memory srcAddress = _srcAddress;
        uint64 nonce = _nonce;
        bytes memory payload = _payload;
        bytes32 from_ = from;
        address to_ = to;
        uint amount_ = amount;
        bytes memory payloadForCall_ = payloadForCall;

        // no gas limit for the call if retry
        uint gas = credited ? gasleft() : gasForCall;
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(
            gasleft(),
            150,
            abi.encodeWithSelector(this.callOnOFTReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas)
        );

        if (success) {
            bytes32 hash = keccak256(payload);
            emit CallOFTReceivedSuccess(srcChainId, srcAddress, nonce, hash);
        } else {
            // store the failed message into the nonblockingLzApp
            _storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason);
        }
    }

    function _isContract(address _account) internal view returns (bool) {
        return _account.code.length > 0;
    }

    function _ld2sd(uint _amount) internal view virtual returns (uint64) {
        uint amountSD = _amount / _ld2sdRate();
        require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow");
        return uint64(amountSD);
    }

    function _sd2ld(uint64 _amountSD) internal view virtual returns (uint) {
        return _amountSD * _ld2sdRate();
    }

    function _removeDust(uint _amount) internal view virtual returns (uint amountAfter, uint dust) {
        dust = _amount % _ld2sdRate();
        amountAfter = _amount - dust;
    }

    function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal view virtual returns (bytes memory) {
        return abi.encodePacked(PT_SEND, _toAddress, _amountSD);
    }

    function _decodeSendPayload(bytes memory _payload) internal view virtual returns (address to, uint64 amountSD) {
        require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
    }

    function _encodeSendAndCallPayload(
        address _from,
        bytes32 _toAddress,
        uint64 _amountSD,
        bytes memory _payload,
        uint64 _dstGasForCall
    ) internal view virtual returns (bytes memory) {
        return abi.encodePacked(PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload);
    }

    function _decodeSendAndCallPayload(bytes memory _payload)
        internal
        view
        virtual
        returns (
            bytes32 from,
            address to,
            uint64 amountSD,
            bytes memory payload,
            uint64 dstGasForCall
        )
    {
        require(_payload.toUint8(0) == PT_SEND_AND_CALL, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
        from = _payload.toBytes32(41);
        dstGasForCall = _payload.toUint64(73);
        payload = _payload.slice(81, _payload.length - 81);
    }

    function _addressToBytes32(address _address) internal pure virtual returns (bytes32) {
        return bytes32(uint(uint160(_address)));
    }

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

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

    function _transferFrom(
        address _from,
        address _to,
        uint _amount
    ) internal virtual returns (uint);

    function _ld2sdRate() internal view virtual returns (uint);
}

// File: contracts/LayerZero/token/oft/v2/BaseOFTV2.sol



pragma solidity ^0.8.0;




abstract contract BaseOFTV2 is OFTCoreV2, ERC165, IOFTV2 {
    constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) {}

    /************************************************************************
     * public functions
     ************************************************************************/
    function sendFrom(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        LzCallParams calldata _callParams
    ) public payable virtual override {
        _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);
    }

    function sendAndCall(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes calldata _payload,
        uint64 _dstGasForCall,
        LzCallParams calldata _callParams
    ) public payable virtual override {
        _sendAndCall(
            _from,
            _dstChainId,
            _toAddress,
            _amount,
            _payload,
            _dstGasForCall,
            _callParams.refundAddress,
            _callParams.zroPaymentAddress,
            _callParams.adapterParams
        );
    }

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

    function estimateSendFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bool _useZro,
        bytes calldata _adapterParams
    ) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams);
    }

    function estimateSendAndCallFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes calldata _payload,
        uint64 _dstGasForCall,
        bool _useZro,
        bytes calldata _adapterParams
    ) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams);
    }

    function circulatingSupply() public view virtual override returns (uint);

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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: contracts/LayerZero/token/oft/v2/OFTV2.sol



pragma solidity ^0.8.0;



contract OFTV2 is BaseOFTV2, ERC20 {
    uint internal immutable ld2sdRate;

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _sharedDecimals,
        address _lzEndpoint
    ) ERC20(_name, _symbol) BaseOFTV2(_sharedDecimals, _lzEndpoint) {
        uint8 decimals = decimals();
        require(_sharedDecimals <= decimals, "OFT: sharedDecimals must be <= decimals");
        ld2sdRate = 10**(decimals - _sharedDecimals);
    }

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

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

    /************************************************************************
     * internal functions
     ************************************************************************/
    function _debitFrom(
        address _from,
        uint16,
        bytes32,
        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;
    }

    function _transferFrom(
        address _from,
        address _to,
        uint _amount
    ) internal virtual override returns (uint) {
        address spender = _msgSender();
        // if transfer from this contract, no need to check allowance
        if (_from != address(this) && _from != spender) _spendAllowance(_from, spender, _amount);
        _transfer(_from, _to, _amount);
        return _amount;
    }

    function _ld2sdRate() internal view virtual override returns (uint) {
        return ld2sdRate;
    }
}

// File: contracts/MetaZero/MetaZeroETH.sol

// https://metazero.gg/




pragma solidity ^0.8.19;

contract MetaZero is OFTV2 {
    IUniswapV2Router02 immutable uniswapV2Router;
    uint256 maxTxAmount;
    uint256 public buyTax = 25;
    uint256 public sellTax = 25;
    uint256 minAmountToSwapTaxes;
    uint256 maxWalletAmount;
    uint256 launchedAt;
    uint256 public buys;
    uint256 buysBeforeSells = 25;

    bool launchTax;
    bool taxesEnabled = true;
    bool limitsEnabled = true;
    bool inSwapAndLiq;
    bool public tradingAllowed;

    address public taxWallet;
    address public immutable uniswapV2Pair;

    mapping(address => bool) public _isExcludedFromFees;

    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }

    constructor()
        OFTV2(
            "MetaZero",
            "MZERO",
            8,
            0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
        )
    {
        _mint(owner(), 100_000_000 * 10 ** 18);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        minAmountToSwapTaxes = (totalSupply() * 3) / 1000;
        maxWalletAmount = (totalSupply() * 2) / 100;
        maxTxAmount = totalSupply() / 100;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[taxWallet] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(_uniswapV2Pair)] = true;

        taxWallet = 0xa7C85D22ee1908a348e73E177F732fE155456ffE;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "ERC20: transfer must be greater than 0");

        if (!tradingAllowed) {
            require(from == owner() || to == owner(), "Trading not active yet");
        }

        uint256 taxAmount;

        if (launchTax) {
            setTax(block.number);
        }

        if (from == uniswapV2Pair && !_isExcludedFromFees[to]) {
            require(
                balanceOf(to) + amount <= maxWalletAmount,
                "Max Wallet In Effect"
            );
            require(amount <= maxTxAmount, "Max Tx in effect");
            if (taxesEnabled) {
                taxAmount = (amount * buyTax) / 100;
            }

            buys++;
        }

        if (to == uniswapV2Pair && !_isExcludedFromFees[from]) {
            require(amount <= maxTxAmount, "Max Tx in effect");
            if (taxesEnabled) {
                taxAmount = (amount * sellTax) / 100;
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool overMinTokenBalance = contractTokenBalance >= minAmountToSwapTaxes;

        if (
            overMinTokenBalance &&
            !inSwapAndLiq &&
            from != uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            buys > buysBeforeSells
        ) {
            swapAndSend(minAmountToSwapTaxes);
        }

        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;
            super._transfer(from, address(this), taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }

    function swapAndSend(uint256 _contractTokenBalance) internal lockTheSwap {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(
            address(this),
            address(uniswapV2Router),
            _contractTokenBalance
        );

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _contractTokenBalance,
            0, // accept any amount of ETH
            path,
            taxWallet,
            block.timestamp
        );
    }

    function setTax(uint256 _block) public {
        if (launchedAt == _block) {
            buyTax = 50;
            sellTax = 50;
        } else if (launchedAt + 1 >= _block) {
            buyTax = 35;
            sellTax = 35;
        } else if (launchedAt + 5 >= _block) {
            buyTax = 25;
            sellTax = 25;
        } else if (launchedAt + 11 >= _block) {
            buyTax = 15;
            sellTax = 15;
        } else if (launchedAt + 24 >= _block) {
            buyTax = 10;
            sellTax = 10;
        }
    }

    function changetaxWallet(address _newtaxWallet) external onlyOwner {
        taxWallet = _newtaxWallet;
    }

    function removeLaunchTax(
        uint256 _newBuyTaxPercent,
        uint256 _newSellTaxPercent
    ) external onlyOwner {
        require(
            _newBuyTaxPercent <= 10 && _newSellTaxPercent <= 10,
            "Cannot set taxes above 10"
        );
        buyTax = _newBuyTaxPercent;
        sellTax = _newSellTaxPercent;
        launchTax = false;
    }

    function excludeFromFees(
        address _address,
        bool _isExcluded
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }

    function updateMaxWalletAmount(
        uint256 newMaxWalletAmount
    ) external onlyOwner {
        maxWalletAmount = newMaxWalletAmount;
    }

    function updateMaxTxAmount(uint256 _newAmount) external onlyOwner {
        maxTxAmount = _newAmount;
    }

    function changeMinAmountToSwapTaxes(
        uint256 newMinAmount
    ) external onlyOwner {
        require(newMinAmount > 0, "Cannot set to zero");
        minAmountToSwapTaxes = newMinAmount;
    }

    function enableTaxes(bool _enable) external onlyOwner {
        taxesEnabled = _enable;
    }

    function activate() external onlyOwner {
        require(!tradingAllowed, "Trading not paused");
        tradingAllowed = true;
        launchedAt = block.number;
        launchTax = true;
    }

    function toggleLimits(bool _limitsEnabed) external onlyOwner {
        limitsEnabled = _limitsEnabed;
    }

    function manualSwap(uint256 _amount) external onlyOwner {
        swapAndSend(_amount);
    }
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function balanceOf(address owner) external view returns (uint);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

    function transfer(address to, uint value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":true,"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":"_hash","type":"bytes32"}],"name":"CallOFTReceivedSuccess","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":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","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":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"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":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":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","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":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newtaxWallet","type":"address"}],"name":"changetaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_amount","type":"uint256"}],"name":"manualSwap","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":[{"internalType":"uint256","name":"_newBuyTaxPercent","type":"uint256"},{"internalType":"uint256","name":"_newSellTaxPercent","type":"uint256"}],"name":"removeLaunchTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"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":"uint256","name":"_block","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","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":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsEnabed","type":"bool"}],"name":"toggleLimits","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tradingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040526019600d819055600e8190556013556014805462ffff0019166201010017905534801562000031575f80fd5b50604051806040016040528060088152602001674d6574615a65726f60c01b815250604051806040016040528060058152602001644d5a45524f60d81b81525060087366a71dcef29a0ffbdbe3c6a460a3b5bc225cd6758383838381818080620000aa620000a46200044f60201b60201c565b62000453565b6001600160a01b0316608052505060ff1660a05250600a9050620000cf83826200061a565b50600b620000de82826200061a565b5050505f620000f2620004a260201b60201c565b90508060ff168360ff161115620001605760405162461bcd60e51b815260206004820152602760248201527f4f46543a20736861726564446563696d616c73206d757374206265203c3d20646044820152666563696d616c7360c81b60648201526084015b60405180910390fd5b6200016c8382620006fa565b6200017990600a62000815565b60c05250620001a4935062000192925050620004a79050565b6a52b7d2dcc80cd2e4000000620004b5565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022091906200082c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200029291906200082c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200030391906200082c565b6001600160a01b0380841660e05281166101005290506103e86200032660095490565b6200033390600362000854565b6200033f91906200086e565b600f5560646200034e60095490565b6200035b90600262000854565b6200036791906200086e565b60105560646200037660095490565b6200038291906200086e565b600c55600160155f6200039c5f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055338152601590935281832080548516600190811790915560148054650100000000009004831685528385208054871683179055308552838520805487168317905595909116835291208054909216179055805478a7c85d22ee1908a348e73e177f732fe155456ffe0000000000600160281b600160c81b031990911617905550620008a4565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b5f546001600160a01b031690565b6001600160a01b0382166200050d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000157565b8060095f8282546200052091906200088e565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620005a657607f821691505b602082108103620005c557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200057857805f5260205f20601f840160051c81016020851015620005f25750805b601f840160051c820191505b8181101562000613575f8155600101620005fe565b5050505050565b81516001600160401b038111156200063657620006366200057d565b6200064e8162000647845462000591565b84620005cb565b602080601f83116001811462000684575f84156200066c5750858301515b5f19600386901b1c1916600185901b178555620006de565b5f85815260208120601f198616915b82811015620006b45788860151825594840194600190910190840162000693565b5085821015620006d257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b60ff8281168282160390811115620007165762000716620006e6565b92915050565b600181815b808511156200075c57815f1904821115620007405762000740620006e6565b808516156200074e57918102915b93841c939080029062000721565b509250929050565b5f82620007745750600162000716565b816200078257505f62000716565b81600181146200079b5760028114620007a657620007c6565b600191505062000716565b60ff841115620007ba57620007ba620006e6565b50506001821b62000716565b5060208310610133831016604e8410600b8410161715620007eb575081810a62000716565b620007f783836200071c565b805f19048211156200080d576200080d620006e6565b029392505050565b5f6200082560ff84168362000764565b9392505050565b5f602082840312156200083d575f80fd5b81516001600160a01b038116811462000825575f80fd5b8082028115828204841417620007165762000716620006e6565b5f826200088957634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007165762000716620006e6565b60805160a05160c05160e05161010051614da8620009525f395f81816106b8015281816123f80152818161254e015261265201525f8181612cd001528181612d870152612dc601525f818161316d015281816135b1015261388701525f61084c01525f8181610a4101528181610c8001528181610f8f015281816110bb0152818161138301528181611a7e0152818161201c0152818161276901528181612bdc015261373f0152614da85ff3fe6080604052600436106103d3575f3560e01c8063857749b0116101ff578063bccb468711610113578063df2a5b3b116100a8578063eaffd49a11610078578063eaffd49a14610bef578063eb8d72b714610c0e578063f2fde38b14610c2d578063f5ecbdbc14610c4c578063fc0c546a14610c6b575f80fd5b8063df2a5b3b14610b6f578063df47e37314610b8e578063e0bf7fd114610bad578063e6a20ae614610bdb575f80fd5b8063cbed8b9c116100e3578063cbed8b9c14610b09578063cc1776d314610b28578063d1deba1f14610b3d578063dd62ed3e14610b50575f80fd5b8063bccb468714610aa1578063c024666814610ab6578063c18bc19514610ad5578063c446183414610af4575f80fd5b8063a457c2d711610194578063a9059cbb11610164578063a9059cbb146109f2578063b256f7b714610a11578063b353aaa714610a30578063b70143c914610a63578063baf3292d14610a82575f80fd5b8063a457c2d714610976578063a4c51df514610995578063a6c3d165146109b4578063a6fb5dfd146109d3575f80fd5b8063950c8a74116101cf578063950c8a74146108d457806395d89b41146108f35780639bdb9812146109075780639f38369a14610957575f80fd5b8063857749b01461083b5780638cfd8f5c1461086e5780638da5cb5b146108a45780639358928b146108c0575f80fd5b80633d5369f6116102f657806353371be01161028b578063695ef6bf1161025b578063695ef6bf146107ae57806370a08231146107c1578063715018a6146107f55780637533d7881461080957806376203b4814610828575f80fd5b806353371be0146107025780635b8c41e6146107235780636256d1811461077057806366ad5c8a1461078f575f80fd5b806344770515116102c6578063447705151461069457806349bd5a5e146106a75780634c42899a146106da5780634f7041a5146106ed575f80fd5b80633d5369f61461060c5780633d8b38f61461062b5780633f1f4fa41461064a57806342d65a8d14610675575f80fd5b806318160ddd1161036c578063302757441161033c5780633027574414610579578063313ce56714610598578063365260b4146105b957806339509351146105ed575f80fd5b806318160ddd146104dd57806323b872dd146104fb5780632dc0562d1461051a5780632e5bb6ff1461055a575f80fd5b8063095ea7b3116103a7578063095ea7b31461046c5780630df374831461048b5780630f15f4c0146104aa57806310ddb137146104be575f80fd5b80621d3567146103d757806301ffc9a7146103f857806306fdde031461042c57806307e0db171461044d575b5f80fd5b3480156103e2575f80fd5b506103f66103f1366004613dc6565b610c7d565b005b348015610403575f80fd5b50610417610412366004613e53565b610ea8565b60405190151581526020015b60405180910390f35b348015610437575f80fd5b50610440610ede565b6040516104239190613ec7565b348015610458575f80fd5b506103f6610467366004613ed9565b610f6e565b348015610477575f80fd5b50610417610486366004613f06565b610ff2565b348015610496575f80fd5b506103f66104a5366004613f30565b611009565b3480156104b5575f80fd5b506103f6611027565b3480156104c9575f80fd5b506103f66104d8366004613ed9565b61109a565b3480156104e8575f80fd5b506009545b604051908152602001610423565b348015610506575f80fd5b50610417610515366004613f4a565b6110f2565b348015610525575f80fd5b50601454610542906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610423565b348015610565575f80fd5b506103f6610574366004613f88565b611115565b348015610584575f80fd5b506103f6610593366004613fae565b6111b4565b3480156105a3575f80fd5b5060125b60405160ff9091168152602001610423565b3480156105c4575f80fd5b506105d86105d3366004613fc7565b6111d6565b60408051928352602083019190915201610423565b3480156105f8575f80fd5b50610417610607366004613f06565b611229565b348015610617575f80fd5b506103f6610626366004613f88565b61124a565b348015610636575f80fd5b50610417610645366004614027565b61129b565b348015610655575f80fd5b506104ed610664366004613ed9565b60036020525f908152604090205481565b348015610680575f80fd5b506103f661068f366004614027565b611364565b34801561069f575f80fd5b506104ed5f81565b3480156106b2575f80fd5b506105427f000000000000000000000000000000000000000000000000000000000000000081565b3480156106e5575f80fd5b506105a75f81565b3480156106f8575f80fd5b506104ed600d5481565b34801561070d575f80fd5b5060145461041790640100000000900460ff1681565b34801561072e575f80fd5b506104ed61073d3660046140df565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561077b575f80fd5b506103f661078a366004613f88565b6113e5565b34801561079a575f80fd5b506103f66107a9366004613dc6565b6113f2565b6103f66107bc36600461418e565b6114cc565b3480156107cc575f80fd5b506104ed6107db3660046141fc565b6001600160a01b03165f9081526007602052604090205490565b348015610800575f80fd5b506103f6611536565b348015610814575f80fd5b50610440610823366004613ed9565b611549565b6103f6610836366004614217565b6115e0565b348015610846575f80fd5b506105a77f000000000000000000000000000000000000000000000000000000000000000081565b348015610879575f80fd5b506104ed6108883660046142c2565b600260209081525f928352604080842090915290825290205481565b3480156108af575f80fd5b505f546001600160a01b0316610542565b3480156108cb575f80fd5b506104ed61168d565b3480156108df575f80fd5b50600454610542906001600160a01b031681565b3480156108fe575f80fd5b5061044061169c565b348015610912575f80fd5b506104176109213660046140df565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b348015610962575f80fd5b50610440610971366004613ed9565b6116ab565b348015610981575f80fd5b50610417610990366004613f06565b6117bc565b3480156109a0575f80fd5b506105d86109af3660046142f3565b611836565b3480156109bf575f80fd5b506103f66109ce366004614027565b6118c2565b3480156109de575f80fd5b506103f66109ed3660046141fc565b61194a565b3480156109fd575f80fd5b50610417610a0c366004613f06565b611982565b348015610a1c575f80fd5b506103f6610a2b366004613fae565b61198f565b348015610a3b575f80fd5b506105427f000000000000000000000000000000000000000000000000000000000000000081565b348015610a6e575f80fd5b506103f6610a7d366004613f88565b6119b3565b348015610a8d575f80fd5b506103f6610a9c3660046141fc565b6119c4565b348015610aac575f80fd5b506104ed60125481565b348015610ac1575f80fd5b506103f6610ad03660046143a4565b611a20565b348015610ae0575f80fd5b506103f6610aef366004613f88565b611a52565b348015610aff575f80fd5b506104ed61271081565b348015610b14575f80fd5b506103f6610b233660046143ce565b611a5f565b348015610b33575f80fd5b506104ed600e5481565b6103f6610b4b366004613dc6565b611ae4565b348015610b5b575f80fd5b506104ed610b6a366004614437565b611cf4565b348015610b7a575f80fd5b506103f6610b8936600461446e565b611d1e565b348015610b99575f80fd5b506103f6610ba83660046144a7565b611d87565b348015610bb8575f80fd5b50610417610bc73660046141fc565b60156020525f908152604090205460ff1681565b348015610be6575f80fd5b506105a7600181565b348015610bfa575f80fd5b506103f6610c093660046144c7565b611e02565b348015610c19575f80fd5b506103f6610c28366004614027565b611f1c565b348015610c38575f80fd5b506103f6610c473660046141fc565b611f75565b348015610c57575f80fd5b50610440610c66366004614587565b611feb565b348015610c76575f80fd5b5030610542565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610cfa5760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff86165f9081526001602052604081208054610d17906145d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d43906145d1565b8015610d8e5780601f10610d6557610100808354040283529160200191610d8e565b820191905f5260205f20905b815481529060010190602001808311610d7157829003601f168201915b50505050509050805186869050148015610da857505f8151115b8015610dd0575080516020820120604051610dc69088908890614603565b6040518091039020145b610e2b5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610cf1565b610e9f8787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061209892505050565b50505050505050565b5f6001600160e01b03198216631f7ecdf760e01b1480610ed857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610eed906145d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610f19906145d1565b8015610f645780601f10610f3b57610100808354040283529160200191610f64565b820191905f5260205f20905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b610f76612110565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610fd9575f80fd5b505af1158015610feb573d5f803e3d5ffd5b5050505050565b5f33610fff818585612169565b5060019392505050565b611011612110565b61ffff9091165f90815260036020526040902055565b61102f612110565b601454640100000000900460ff161561107f5760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610cf1565b601480544360115564ff000000ff1916640100000001179055565b6110a2612110565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610fc2565b5f336110ff85828561228c565b61110a858585612304565b506001949350505050565b806011540361112b576032600d819055600e5550565b80601154600161113b9190614626565b1061114d576023600d819055600e5550565b80601154600561115d9190614626565b1061116f576019600d819055600e5550565b80601154600b61117f9190614626565b1061119157600f600d819055600e5550565b8060115460186111a19190614626565b106111b157600a600d819055600e555b50565b6111bc612110565b601480549115156101000261ff0019909216919091179055565b5f8061121a8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061270492505050565b91509150965096945050505050565b5f33610fff81858561123b8383611cf4565b6112459190614626565b612169565b611252612110565b5f81116112965760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610cf1565b600f55565b61ffff83165f90815260016020526040812080548291906112bb906145d1565b80601f01602080910402602001604051908101604052809291908181526020018280546112e7906145d1565b80156113325780601f1061130957610100808354040283529160200191611332565b820191905f5260205f20905b81548152906001019060200180831161131557829003601f168201915b505050505090508383604051611349929190614603565b60405180910390208180519060200120149150509392505050565b61136c612110565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d906113bc90869086908690600401614661565b5f604051808303815f87803b1580156113d3575f80fd5b505af1158015610e9f573d5f803e3d5ffd5b6113ed612110565b600c55565b3330146114505760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610cf1565b6114c48686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f920191909152506127f392505050565b505050505050565b6114c4858585856114e060208701876141fc565b6114f060408801602089016141fc565b6114fd604089018961467e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061287892505050565b61153e612110565b6115475f61295d565b565b60016020525f908152604090208054611561906145d1565b80601f016020809104026020016040519081016040528092919081815260200182805461158d906145d1565b80156115d85780601f106115af576101008083540402835291602001916115d8565b820191905f5260205f20905b8154815290600101906020018083116115bb57829003601f168201915b505050505081565b6116828888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a925061162c91505060208901896141fc565b61163c60408a0160208b016141fc565b61164960408b018b61467e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ac92505050565b505050505050505050565b5f61169760095490565b905090565b6060600b8054610eed906145d1565b61ffff81165f908152600160205260408120805460609291906116cd906145d1565b80601f01602080910402602001604051908101604052809291908181526020018280546116f9906145d1565b80156117445780601f1061171b57610100808354040283529160200191611744565b820191905f5260205f20905b81548152906001019060200180831161172757829003601f168201915b5050505050905080515f0361179b5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610cf1565b6117b55f601483516117ad91906146c0565b839190612aa5565b9392505050565b5f33816117c98286611cf4565b9050838110156118295760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cf1565b61110a8286868403612169565b5f806118b08b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612bb192505050565b91509150995099975050505050505050565b6118ca612110565b8181306040516020016118df939291906146d3565b60408051601f1981840301815291815261ffff85165f90815260016020522090611909908261473d565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161193d93929190614661565b60405180910390a1505050565b611952612110565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b5f33610fff818585612304565b611997612110565b60148054911515620100000262ff000019909216919091179055565b6119bb612110565b6111b181612c68565b6119cc612110565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b611a28612110565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b611a5a612110565b601055565b611a67612110565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90611abb90889088908890889088906004016147f8565b5f604051808303815f87803b158015611ad2575f80fd5b505af1158015611682573d5f803e3d5ffd5b61ffff86165f908152600560205260408082209051611b069088908890614603565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611b855760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610cf1565b808383604051611b96929190614603565b604051809103902014611bf55760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610cf1565b61ffff87165f908152600560205260408082209051611c179089908990614603565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611cac91899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f920191909152506127f392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611ce3959493929190614830565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611d26612110565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161193d565b611d8f612110565b600a8211158015611da15750600a8111155b611ded5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f7665203130000000000000006044820152606401610cf1565b600d91909155600e556014805460ff19169055565b333014611e515760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610cf1565b611e5c308686612e4e565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611e9e91815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611ee2908e908e908e908e908e908d908d908d9060040161486a565b5f604051808303815f88803b158015611ef9575f80fd5b5087f1158015611f0b573d5f803e3d5ffd5b505050505050505050505050505050565b611f24612110565b61ffff83165f908152600160205260409020611f418284836148c4565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161193d93929190614661565b611f7d612110565b6001600160a01b038116611fe25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cf1565b6111b18161295d565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc906084015f60405180830381865afa158015612068573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261208f919081019061497d565b95945050505050565b5f806120fa5a60966366ad5c8a60e01b898989896040516024016120bf94939291906149e5565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612e9f565b91509150816114c4576114c48686868685612f23565b5f546001600160a01b031633146115475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf1565b6001600160a01b0383166121cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cf1565b6001600160a01b03821661222c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cf1565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6122978484611cf4565b90505f1981146122fe57818110156122f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cf1565b6122fe8484848403612169565b50505050565b5f81116123625760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610cf1565b601454640100000000900460ff166123e0575f546001600160a01b038481169116148061239b57505f546001600160a01b038381169116145b6123e05760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610cf1565b6014545f9060ff16156123f6576123f643611115565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614801561244f57506001600160a01b0383165f9081526015602052604090205460ff16155b1561254c5760105482612476856001600160a01b03165f9081526007602052604090205490565b6124809190614626565b11156124c55760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610cf1565b600c5482111561250a5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff1615612537576064600d548361252a9190614a22565b6125349190614a4d565b90505b60128054905f61254683614a60565b91905055505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156125a557506001600160a01b0384165f9081526015602052604090205460ff16155b1561261c57600c548211156125ef5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff161561261c576064600e548361260f9190614a22565b6126199190614a4d565b90505b305f90815260076020526040902054600f548110801590819061264957506014546301000000900460ff16155b801561268757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b80156126ab57506001600160a01b0386165f9081526015602052604090205460ff16155b80156126ba5750601354601254115b156126ca576126ca600f54612c68565b82156126f9575f6126db84866146c0565b90506126e8873086612fbd565b6126f3878783612fbd565b506114c4565b6114c4868686612fbd565b5f805f61274f8761271488613166565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906127a6908b90309086908b908b90600401614a78565b6040805180830381865afa1580156127c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e49190614acb565b92509250509550959350505050565b5f6127fe82826131eb565b905060ff81166128195761281485858585613246565b610feb565b5f1960ff82160161283057612814858585856132d4565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610cf1565b5f612885878284816134d7565b61288e856135aa565b50905061289d888888846135e9565b90505f81116128ea5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f6128f88761271484613166565b905061290888828787873461361a565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161294991815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6129c3896001846001600160401b0389166134d7565b6129cc876135aa565b5090506129db8a8a8a846135e9565b90505f8111612a285760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f612a3e338a612a3785613166565b8a8a6137b7565b9050612a4e8a828787873461361a565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a8f91815260200190565b60405180910390a4509998505050505050505050565b606081612ab381601f614626565b1015612af25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610cf1565b612afc8284614626565b84511015612b405760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610cf1565b606082158015612b5e5760405191505f825260208201604052612ba8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612b97578051835260209283019201612b7f565b5050858452601f01601f1916604052505b50949350505050565b5f805f612bc2338a612a378b613166565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612c19908d90309086908b908b90600401614a78565b6040805180830381865afa158015612c33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c579190614acb565b925092505097509795505050505050565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612cae57612cae614aed565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4e9190614b01565b81600181518110612d6157612d61614aed565b60200260200101906001600160a01b031690816001600160a01b031681525050612dac307f000000000000000000000000000000000000000000000000000000000000000084612169565b60145460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792612e109287925f92889265010000000000909204909116904290600401614b1c565b5f604051808303815f87803b158015612e27575f80fd5b505af1158015612e39573d5f803e3d5ffd5b50506014805463ff0000001916905550505050565b5f33306001600160a01b03861614801590612e7b5750806001600160a01b0316856001600160a01b031614155b15612e8b57612e8b85828561228c565b612e96858585612304565b50909392505050565b5f60605f805f8661ffff166001600160401b03811115612ec157612ec1614075565b6040519080825280601f01601f191660200182016040528015612eeb576020820181803683370190505b5090505f808751602089015f8d8df191503d925086831115612f0b578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f2085604051612f529190614b8d565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612fae9087908790879087908790614ba8565b60405180910390a15050505050565b6001600160a01b0383166130215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cf1565b6001600160a01b0382166130835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cf1565b6001600160a01b0383165f90815260076020526040902054818110156130fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cf1565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906131599086815260200190565b60405180910390a36122fe565b5f806131927f000000000000000000000000000000000000000000000000000000000000000084614a4d565b90506001600160401b03811115610ed85760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610cf1565b5f6131f7826001614626565b8351101561323d5760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610cf1565b50016001015190565b5f80613251836137fd565b90925090506001600160a01b03821661326a5761dead91505b5f61327482613881565b90506132818784836138b5565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf836040516132c391815260200190565b60405180910390a350505050505050565b5f805f805f6132e2866138c7565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f20896040516133149190614b8d565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff16915061334685613881565b9050816133b2576133588b30836138b5565b61ffff8c165f9081526006602052604090819020905191925060019161337f908d90614b8d565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613409576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a1505050505050506122fe565b8a8a8a8a8a8a868a5f8a613426578b6001600160401b0316613428565b5a5b90505f806134595a609663eaffd49a60e01b8e8e8e8d8d8d8d8d6040516024016120bf989796959493929190614bf9565b9150915081156134b2578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd884906134a4908e908e908690614c6c565b60405180910390a2506134bf565b6134bf8b8b8b8b85612f23565b50505050505050505050505050505050505050505050565b5f6134e18361397d565b61ffff8087165f90815260026020908152604080832093891683529290522054909150806135515760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610cf1565b61355b8382614626565b8210156114c45760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610cf1565b5f806135d67f000000000000000000000000000000000000000000000000000000000000000084614c99565b90506135e281846146c0565b9150915091565b5f336001600160a01b03861681146136065761360686828561228c565b61361086846139d8565b5090949350505050565b61ffff86165f9081526001602052604081208054613637906145d1565b80601f0160208091040260200160405190810160405280929190818152602001828054613663906145d1565b80156136ae5780601f10613685576101008083540402835291602001916136ae565b820191905f5260205f20905b81548152906001019060200180831161369157829003601f168201915b5050505050905080515f0361371e5760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610cf1565b613729878751613b0a565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100908490613780908b9086908c908c908c908c90600401614cac565b5f604051808303818588803b158015613797575f80fd5b505af11580156137a9573d5f803e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b03891685876040516020016137de96959493929190614d12565b604051602081830303815290604052905095945050505050565b505050565b5f808061380a84826131eb565b60ff1614801561381b575082516029145b6138625760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61386d83600d613b7a565b915061387a836021613bde565b9050915091565b5f610ed87f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416614a22565b5f6138c08383613c3a565b5092915050565b5f808060608160016138d987836131eb565b60ff16146139245760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61392f86600d613b7a565b935061393c866021613bde565b9250613949866029613cf9565b9450613956866049613bde565b9050613972605180885161396a91906146c0565b889190612aa5565b915091939590929450565b5f6022825110156139d05760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610cf1565b506022015190565b6001600160a01b038216613a385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cf1565b6001600160a01b0382165f9081526007602052604090205481811015613aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cf1565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b2a57506127105b808211156137f85760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610cf1565b5f613b86826014614626565b83511015613bce5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610cf1565b500160200151600160601b900490565b5f613bea826008614626565b83511015613c315760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610cf1565b50016008015190565b6001600160a01b038216613c905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cf1565b8060095f828254613ca19190614626565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d05826020614626565b83511015613d4d5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610cf1565b50016020015190565b803561ffff81168114613d67575f80fd5b919050565b5f8083601f840112613d7c575f80fd5b5081356001600160401b03811115613d92575f80fd5b602083019150836020828501011115613da9575f80fd5b9250929050565b80356001600160401b0381168114613d67575f80fd5b5f805f805f8060808789031215613ddb575f80fd5b613de487613d56565b955060208701356001600160401b0380821115613dff575f80fd5b613e0b8a838b01613d6c565b9097509550859150613e1f60408a01613db0565b94506060890135915080821115613e34575f80fd5b50613e4189828a01613d6c565b979a9699509497509295939492505050565b5f60208284031215613e63575f80fd5b81356001600160e01b0319811681146117b5575f80fd5b5f5b83811015613e94578181015183820152602001613e7c565b50505f910152565b5f8151808452613eb3816020860160208601613e7a565b601f01601f19169290920160200192915050565b602081525f6117b56020830184613e9c565b5f60208284031215613ee9575f80fd5b6117b582613d56565b6001600160a01b03811681146111b1575f80fd5b5f8060408385031215613f17575f80fd5b8235613f2281613ef2565b946020939093013593505050565b5f8060408385031215613f41575f80fd5b613f2283613d56565b5f805f60608486031215613f5c575f80fd5b8335613f6781613ef2565b92506020840135613f7781613ef2565b929592945050506040919091013590565b5f60208284031215613f98575f80fd5b5035919050565b80358015158114613d67575f80fd5b5f60208284031215613fbe575f80fd5b6117b582613f9f565b5f805f805f8060a08789031215613fdc575f80fd5b613fe587613d56565b9550602087013594506040870135935061400160608801613f9f565b925060808701356001600160401b0381111561401b575f80fd5b613e4189828a01613d6c565b5f805f60408486031215614039575f80fd5b61404284613d56565b925060208401356001600160401b0381111561405c575f80fd5b61406886828701613d6c565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156140b1576140b1614075565b604052919050565b5f6001600160401b038211156140d1576140d1614075565b50601f01601f191660200190565b5f805f606084860312156140f1575f80fd5b6140fa84613d56565b925060208401356001600160401b03811115614114575f80fd5b8401601f81018613614124575f80fd5b8035614137614132826140b9565b614089565b81815287602083850101111561414b575f80fd5b816020840160208301375f6020838301015280945050505061416f60408501613db0565b90509250925092565b5f60608284031215614188575f80fd5b50919050565b5f805f805f60a086880312156141a2575f80fd5b85356141ad81613ef2565b94506141bb60208701613d56565b9350604086013592506060860135915060808601356001600160401b038111156141e3575f80fd5b6141ef88828901614178565b9150509295509295909350565b5f6020828403121561420c575f80fd5b81356117b581613ef2565b5f805f805f805f8060e0898b03121561422e575f80fd5b883561423981613ef2565b975061424760208a01613d56565b9650604089013595506060890135945060808901356001600160401b0380821115614270575f80fd5b61427c8c838d01613d6c565b909650945084915061429060a08c01613db0565b935060c08b01359150808211156142a5575f80fd5b506142b28b828c01614178565b9150509295985092959890939650565b5f80604083850312156142d3575f80fd5b6142dc83613d56565b91506142ea60208401613d56565b90509250929050565b5f805f805f805f805f60e08a8c03121561430b575f80fd5b6143148a613d56565b985060208a0135975060408a0135965060608a01356001600160401b038082111561433d575f80fd5b6143498d838e01613d6c565b909850965086915061435d60808d01613db0565b955061436b60a08d01613f9f565b945060c08c0135915080821115614380575f80fd5b5061438d8c828d01613d6c565b915080935050809150509295985092959850929598565b5f80604083850312156143b5575f80fd5b82356143c081613ef2565b91506142ea60208401613f9f565b5f805f805f608086880312156143e2575f80fd5b6143eb86613d56565b94506143f960208701613d56565b93506040860135925060608601356001600160401b0381111561441a575f80fd5b61442688828901613d6c565b969995985093965092949392505050565b5f8060408385031215614448575f80fd5b823561445381613ef2565b9150602083013561446381613ef2565b809150509250929050565b5f805f60608486031215614480575f80fd5b61448984613d56565b925061449760208501613d56565b9150604084013590509250925092565b5f80604083850312156144b8575f80fd5b50508035926020909101359150565b5f805f805f805f805f806101008b8d0312156144e1575f80fd5b6144ea8b613d56565b995060208b01356001600160401b0380821115614505575f80fd5b6145118e838f01613d6c565b909b50995089915061452560408e01613db0565b985060608d0135975060808d0135915061453e82613ef2565b90955060a08c0135945060c08c0135908082111561455a575f80fd5b506145678d828e01613d6c565b9150809450508092505060e08b013590509295989b9194979a5092959850565b5f805f806080858703121561459a575f80fd5b6145a385613d56565b93506145b160208601613d56565b925060408501356145c181613ef2565b9396929550929360600135925050565b600181811c908216806145e557607f821691505b60208210810361418857634e487b7160e01b5f52602260045260245ffd5b818382375f9101908152919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ed857610ed8614612565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f61208f604083018486614639565b5f808335601e19843603018112614693575f80fd5b8301803591506001600160401b038211156146ac575f80fd5b602001915036819003821315613da9575f80fd5b81810381811115610ed857610ed8614612565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156137f857805f5260205f20601f840160051c8101602085101561471e5750805b601f840160051c820191505b81811015610feb575f815560010161472a565b81516001600160401b0381111561475657614756614075565b61476a8161476484546145d1565b846146f9565b602080601f83116001811461479d575f84156147865750858301515b5f19600386901b1c1916600185901b1785556114c4565b5f85815260208120601f198616915b828110156147cb578886015182559484019460019091019084016147ac565b50858210156147e857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f61ffff808816835280871660208401525084604083015260806060830152614825608083018486614639565b979650505050505050565b61ffff86168152608060208201525f61484d608083018688614639565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201525f61488760c08301898b614639565b6001600160401b038816604084015286606084015285608084015282810360a08401526148b5818587614639565b9b9a5050505050505050505050565b6001600160401b038311156148db576148db614075565b6148ef836148e983546145d1565b836146f9565b5f601f841160018114614920575f85156149095750838201355b5f19600387901b1c1916600186901b178355610feb565b5f83815260208120601f198716915b8281101561494f578685013582556020948501946001909201910161492f565b508682101561496b575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561498d575f80fd5b81516001600160401b038111156149a2575f80fd5b8201601f810184136149b2575f80fd5b80516149c0614132826140b9565b8181528560208385010111156149d4575f80fd5b61208f826020830160208601613e7a565b61ffff85168152608060208201525f614a016080830186613e9c565b6001600160401b038516604084015282810360608401526148258185613e9c565b8082028115828204841417610ed857610ed8614612565b634e487b7160e01b5f52601260045260245ffd5b5f82614a5b57614a5b614a39565b500490565b5f60018201614a7157614a71614612565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614aa590830186613e9c565b84151560608401528281036080840152614abf8185613e9c565b98975050505050505050565b5f8060408385031215614adc575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614b11575f80fd5b81516117b581613ef2565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015614b6c5784516001600160a01b031683529383019391830191600101614b47565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8251614b9e818460208701613e7a565b9190910192915050565b61ffff8616815260a060208201525f614bc460a0830187613e9c565b6001600160401b03861660408401528281036060840152614be58186613e9c565b90508281036080840152614abf8185613e9c565b5f61010061ffff8b168352806020840152614c168184018b613e9c565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614c568186613e9c565b9150508260e08301529998505050505050505050565b606081525f614c7e6060830186613e9c565b6001600160401b039490941660208301525060400152919050565b5f82614ca757614ca7614a39565b500690565b61ffff8716815260c060208201525f614cc860c0830188613e9c565b8281036040840152614cda8188613e9c565b6001600160a01b0387811660608601528616608085015283810360a08501529050614d058185613e9c565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201525f6001600160401b0360c01b808760c01b166021840152856029840152808560c01b166049840152508251614d60816051850160208701613e7a565b9190910160510197965050505050505056fea2646970667358221220e53ab7693f14237317e29f8462de245d91c629598bfc3f8569822bd3a59786e764736f6c63430008160033

Deployed Bytecode

0x6080604052600436106103d3575f3560e01c8063857749b0116101ff578063bccb468711610113578063df2a5b3b116100a8578063eaffd49a11610078578063eaffd49a14610bef578063eb8d72b714610c0e578063f2fde38b14610c2d578063f5ecbdbc14610c4c578063fc0c546a14610c6b575f80fd5b8063df2a5b3b14610b6f578063df47e37314610b8e578063e0bf7fd114610bad578063e6a20ae614610bdb575f80fd5b8063cbed8b9c116100e3578063cbed8b9c14610b09578063cc1776d314610b28578063d1deba1f14610b3d578063dd62ed3e14610b50575f80fd5b8063bccb468714610aa1578063c024666814610ab6578063c18bc19514610ad5578063c446183414610af4575f80fd5b8063a457c2d711610194578063a9059cbb11610164578063a9059cbb146109f2578063b256f7b714610a11578063b353aaa714610a30578063b70143c914610a63578063baf3292d14610a82575f80fd5b8063a457c2d714610976578063a4c51df514610995578063a6c3d165146109b4578063a6fb5dfd146109d3575f80fd5b8063950c8a74116101cf578063950c8a74146108d457806395d89b41146108f35780639bdb9812146109075780639f38369a14610957575f80fd5b8063857749b01461083b5780638cfd8f5c1461086e5780638da5cb5b146108a45780639358928b146108c0575f80fd5b80633d5369f6116102f657806353371be01161028b578063695ef6bf1161025b578063695ef6bf146107ae57806370a08231146107c1578063715018a6146107f55780637533d7881461080957806376203b4814610828575f80fd5b806353371be0146107025780635b8c41e6146107235780636256d1811461077057806366ad5c8a1461078f575f80fd5b806344770515116102c6578063447705151461069457806349bd5a5e146106a75780634c42899a146106da5780634f7041a5146106ed575f80fd5b80633d5369f61461060c5780633d8b38f61461062b5780633f1f4fa41461064a57806342d65a8d14610675575f80fd5b806318160ddd1161036c578063302757441161033c5780633027574414610579578063313ce56714610598578063365260b4146105b957806339509351146105ed575f80fd5b806318160ddd146104dd57806323b872dd146104fb5780632dc0562d1461051a5780632e5bb6ff1461055a575f80fd5b8063095ea7b3116103a7578063095ea7b31461046c5780630df374831461048b5780630f15f4c0146104aa57806310ddb137146104be575f80fd5b80621d3567146103d757806301ffc9a7146103f857806306fdde031461042c57806307e0db171461044d575b5f80fd5b3480156103e2575f80fd5b506103f66103f1366004613dc6565b610c7d565b005b348015610403575f80fd5b50610417610412366004613e53565b610ea8565b60405190151581526020015b60405180910390f35b348015610437575f80fd5b50610440610ede565b6040516104239190613ec7565b348015610458575f80fd5b506103f6610467366004613ed9565b610f6e565b348015610477575f80fd5b50610417610486366004613f06565b610ff2565b348015610496575f80fd5b506103f66104a5366004613f30565b611009565b3480156104b5575f80fd5b506103f6611027565b3480156104c9575f80fd5b506103f66104d8366004613ed9565b61109a565b3480156104e8575f80fd5b506009545b604051908152602001610423565b348015610506575f80fd5b50610417610515366004613f4a565b6110f2565b348015610525575f80fd5b50601454610542906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610423565b348015610565575f80fd5b506103f6610574366004613f88565b611115565b348015610584575f80fd5b506103f6610593366004613fae565b6111b4565b3480156105a3575f80fd5b5060125b60405160ff9091168152602001610423565b3480156105c4575f80fd5b506105d86105d3366004613fc7565b6111d6565b60408051928352602083019190915201610423565b3480156105f8575f80fd5b50610417610607366004613f06565b611229565b348015610617575f80fd5b506103f6610626366004613f88565b61124a565b348015610636575f80fd5b50610417610645366004614027565b61129b565b348015610655575f80fd5b506104ed610664366004613ed9565b60036020525f908152604090205481565b348015610680575f80fd5b506103f661068f366004614027565b611364565b34801561069f575f80fd5b506104ed5f81565b3480156106b2575f80fd5b506105427f0000000000000000000000008343cbfe85c3cadf76c76d15b87e18e89435fe4e81565b3480156106e5575f80fd5b506105a75f81565b3480156106f8575f80fd5b506104ed600d5481565b34801561070d575f80fd5b5060145461041790640100000000900460ff1681565b34801561072e575f80fd5b506104ed61073d3660046140df565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561077b575f80fd5b506103f661078a366004613f88565b6113e5565b34801561079a575f80fd5b506103f66107a9366004613dc6565b6113f2565b6103f66107bc36600461418e565b6114cc565b3480156107cc575f80fd5b506104ed6107db3660046141fc565b6001600160a01b03165f9081526007602052604090205490565b348015610800575f80fd5b506103f6611536565b348015610814575f80fd5b50610440610823366004613ed9565b611549565b6103f6610836366004614217565b6115e0565b348015610846575f80fd5b506105a77f000000000000000000000000000000000000000000000000000000000000000881565b348015610879575f80fd5b506104ed6108883660046142c2565b600260209081525f928352604080842090915290825290205481565b3480156108af575f80fd5b505f546001600160a01b0316610542565b3480156108cb575f80fd5b506104ed61168d565b3480156108df575f80fd5b50600454610542906001600160a01b031681565b3480156108fe575f80fd5b5061044061169c565b348015610912575f80fd5b506104176109213660046140df565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b348015610962575f80fd5b50610440610971366004613ed9565b6116ab565b348015610981575f80fd5b50610417610990366004613f06565b6117bc565b3480156109a0575f80fd5b506105d86109af3660046142f3565b611836565b3480156109bf575f80fd5b506103f66109ce366004614027565b6118c2565b3480156109de575f80fd5b506103f66109ed3660046141fc565b61194a565b3480156109fd575f80fd5b50610417610a0c366004613f06565b611982565b348015610a1c575f80fd5b506103f6610a2b366004613fae565b61198f565b348015610a3b575f80fd5b506105427f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67581565b348015610a6e575f80fd5b506103f6610a7d366004613f88565b6119b3565b348015610a8d575f80fd5b506103f6610a9c3660046141fc565b6119c4565b348015610aac575f80fd5b506104ed60125481565b348015610ac1575f80fd5b506103f6610ad03660046143a4565b611a20565b348015610ae0575f80fd5b506103f6610aef366004613f88565b611a52565b348015610aff575f80fd5b506104ed61271081565b348015610b14575f80fd5b506103f6610b233660046143ce565b611a5f565b348015610b33575f80fd5b506104ed600e5481565b6103f6610b4b366004613dc6565b611ae4565b348015610b5b575f80fd5b506104ed610b6a366004614437565b611cf4565b348015610b7a575f80fd5b506103f6610b8936600461446e565b611d1e565b348015610b99575f80fd5b506103f6610ba83660046144a7565b611d87565b348015610bb8575f80fd5b50610417610bc73660046141fc565b60156020525f908152604090205460ff1681565b348015610be6575f80fd5b506105a7600181565b348015610bfa575f80fd5b506103f6610c093660046144c7565b611e02565b348015610c19575f80fd5b506103f6610c28366004614027565b611f1c565b348015610c38575f80fd5b506103f6610c473660046141fc565b611f75565b348015610c57575f80fd5b50610440610c66366004614587565b611feb565b348015610c76575f80fd5b5030610542565b337f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b031614610cfa5760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff86165f9081526001602052604081208054610d17906145d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d43906145d1565b8015610d8e5780601f10610d6557610100808354040283529160200191610d8e565b820191905f5260205f20905b815481529060010190602001808311610d7157829003601f168201915b50505050509050805186869050148015610da857505f8151115b8015610dd0575080516020820120604051610dc69088908890614603565b6040518091039020145b610e2b5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610cf1565b610e9f8787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061209892505050565b50505050505050565b5f6001600160e01b03198216631f7ecdf760e01b1480610ed857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610eed906145d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610f19906145d1565b8015610f645780601f10610f3b57610100808354040283529160200191610f64565b820191905f5260205f20905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b610f76612110565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610fd9575f80fd5b505af1158015610feb573d5f803e3d5ffd5b5050505050565b5f33610fff818585612169565b5060019392505050565b611011612110565b61ffff9091165f90815260036020526040902055565b61102f612110565b601454640100000000900460ff161561107f5760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610cf1565b601480544360115564ff000000ff1916640100000001179055565b6110a2612110565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906310ddb13790602401610fc2565b5f336110ff85828561228c565b61110a858585612304565b506001949350505050565b806011540361112b576032600d819055600e5550565b80601154600161113b9190614626565b1061114d576023600d819055600e5550565b80601154600561115d9190614626565b1061116f576019600d819055600e5550565b80601154600b61117f9190614626565b1061119157600f600d819055600e5550565b8060115460186111a19190614626565b106111b157600a600d819055600e555b50565b6111bc612110565b601480549115156101000261ff0019909216919091179055565b5f8061121a8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061270492505050565b91509150965096945050505050565b5f33610fff81858561123b8383611cf4565b6112459190614626565b612169565b611252612110565b5f81116112965760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610cf1565b600f55565b61ffff83165f90815260016020526040812080548291906112bb906145d1565b80601f01602080910402602001604051908101604052809291908181526020018280546112e7906145d1565b80156113325780601f1061130957610100808354040283529160200191611332565b820191905f5260205f20905b81548152906001019060200180831161131557829003601f168201915b505050505090508383604051611349929190614603565b60405180910390208180519060200120149150509392505050565b61136c612110565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906342d65a8d906113bc90869086908690600401614661565b5f604051808303815f87803b1580156113d3575f80fd5b505af1158015610e9f573d5f803e3d5ffd5b6113ed612110565b600c55565b3330146114505760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610cf1565b6114c48686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f920191909152506127f392505050565b505050505050565b6114c4858585856114e060208701876141fc565b6114f060408801602089016141fc565b6114fd604089018961467e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061287892505050565b61153e612110565b6115475f61295d565b565b60016020525f908152604090208054611561906145d1565b80601f016020809104026020016040519081016040528092919081815260200182805461158d906145d1565b80156115d85780601f106115af576101008083540402835291602001916115d8565b820191905f5260205f20905b8154815290600101906020018083116115bb57829003601f168201915b505050505081565b6116828888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a925061162c91505060208901896141fc565b61163c60408a0160208b016141fc565b61164960408b018b61467e565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ac92505050565b505050505050505050565b5f61169760095490565b905090565b6060600b8054610eed906145d1565b61ffff81165f908152600160205260408120805460609291906116cd906145d1565b80601f01602080910402602001604051908101604052809291908181526020018280546116f9906145d1565b80156117445780601f1061171b57610100808354040283529160200191611744565b820191905f5260205f20905b81548152906001019060200180831161172757829003601f168201915b5050505050905080515f0361179b5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610cf1565b6117b55f601483516117ad91906146c0565b839190612aa5565b9392505050565b5f33816117c98286611cf4565b9050838110156118295760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cf1565b61110a8286868403612169565b5f806118b08b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612bb192505050565b91509150995099975050505050505050565b6118ca612110565b8181306040516020016118df939291906146d3565b60408051601f1981840301815291815261ffff85165f90815260016020522090611909908261473d565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161193d93929190614661565b60405180910390a1505050565b611952612110565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b5f33610fff818585612304565b611997612110565b60148054911515620100000262ff000019909216919091179055565b6119bb612110565b6111b181612c68565b6119cc612110565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b611a28612110565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b611a5a612110565b601055565b611a67612110565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063cbed8b9c90611abb90889088908890889088906004016147f8565b5f604051808303815f87803b158015611ad2575f80fd5b505af1158015611682573d5f803e3d5ffd5b61ffff86165f908152600560205260408082209051611b069088908890614603565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611b855760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610cf1565b808383604051611b96929190614603565b604051809103902014611bf55760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610cf1565b61ffff87165f908152600560205260408082209051611c179089908990614603565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611cac91899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f920191909152506127f392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611ce3959493929190614830565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611d26612110565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161193d565b611d8f612110565b600a8211158015611da15750600a8111155b611ded5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f7665203130000000000000006044820152606401610cf1565b600d91909155600e556014805460ff19169055565b333014611e515760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610cf1565b611e5c308686612e4e565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611e9e91815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611ee2908e908e908e908e908e908d908d908d9060040161486a565b5f604051808303815f88803b158015611ef9575f80fd5b5087f1158015611f0b573d5f803e3d5ffd5b505050505050505050505050505050565b611f24612110565b61ffff83165f908152600160205260409020611f418284836148c4565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161193d93929190614661565b611f7d612110565b6001600160a01b038116611fe25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cf1565b6111b18161295d565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b03169063f5ecbdbc906084015f60405180830381865afa158015612068573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261208f919081019061497d565b95945050505050565b5f806120fa5a60966366ad5c8a60e01b898989896040516024016120bf94939291906149e5565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612e9f565b91509150816114c4576114c48686868685612f23565b5f546001600160a01b031633146115475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf1565b6001600160a01b0383166121cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cf1565b6001600160a01b03821661222c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cf1565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6122978484611cf4565b90505f1981146122fe57818110156122f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cf1565b6122fe8484848403612169565b50505050565b5f81116123625760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610cf1565b601454640100000000900460ff166123e0575f546001600160a01b038481169116148061239b57505f546001600160a01b038381169116145b6123e05760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610cf1565b6014545f9060ff16156123f6576123f643611115565b7f0000000000000000000000008343cbfe85c3cadf76c76d15b87e18e89435fe4e6001600160a01b0316846001600160a01b031614801561244f57506001600160a01b0383165f9081526015602052604090205460ff16155b1561254c5760105482612476856001600160a01b03165f9081526007602052604090205490565b6124809190614626565b11156124c55760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610cf1565b600c5482111561250a5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff1615612537576064600d548361252a9190614a22565b6125349190614a4d565b90505b60128054905f61254683614a60565b91905055505b7f0000000000000000000000008343cbfe85c3cadf76c76d15b87e18e89435fe4e6001600160a01b0316836001600160a01b03161480156125a557506001600160a01b0384165f9081526015602052604090205460ff16155b1561261c57600c548211156125ef5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff161561261c576064600e548361260f9190614a22565b6126199190614a4d565b90505b305f90815260076020526040902054600f548110801590819061264957506014546301000000900460ff16155b801561268757507f0000000000000000000000008343cbfe85c3cadf76c76d15b87e18e89435fe4e6001600160a01b0316866001600160a01b031614155b80156126ab57506001600160a01b0386165f9081526015602052604090205460ff16155b80156126ba5750601354601254115b156126ca576126ca600f54612c68565b82156126f9575f6126db84866146c0565b90506126e8873086612fbd565b6126f3878783612fbd565b506114c4565b6114c4868686612fbd565b5f805f61274f8761271488613166565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906340a7bb10906127a6908b90309086908b908b90600401614a78565b6040805180830381865afa1580156127c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e49190614acb565b92509250509550959350505050565b5f6127fe82826131eb565b905060ff81166128195761281485858585613246565b610feb565b5f1960ff82160161283057612814858585856132d4565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610cf1565b5f612885878284816134d7565b61288e856135aa565b50905061289d888888846135e9565b90505f81116128ea5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f6128f88761271484613166565b905061290888828787873461361a565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161294991815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6129c3896001846001600160401b0389166134d7565b6129cc876135aa565b5090506129db8a8a8a846135e9565b90505f8111612a285760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f612a3e338a612a3785613166565b8a8a6137b7565b9050612a4e8a828787873461361a565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a8f91815260200190565b60405180910390a4509998505050505050505050565b606081612ab381601f614626565b1015612af25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610cf1565b612afc8284614626565b84511015612b405760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610cf1565b606082158015612b5e5760405191505f825260208201604052612ba8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612b97578051835260209283019201612b7f565b5050858452601f01601f1916604052505b50949350505050565b5f805f612bc2338a612a378b613166565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906340a7bb1090612c19908d90309086908b908b90600401614a78565b6040805180830381865afa158015612c33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c579190614acb565b925092505097509795505050505050565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612cae57612cae614aed565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4e9190614b01565b81600181518110612d6157612d61614aed565b60200260200101906001600160a01b031690816001600160a01b031681525050612dac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612169565b60145460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792612e109287925f92889265010000000000909204909116904290600401614b1c565b5f604051808303815f87803b158015612e27575f80fd5b505af1158015612e39573d5f803e3d5ffd5b50506014805463ff0000001916905550505050565b5f33306001600160a01b03861614801590612e7b5750806001600160a01b0316856001600160a01b031614155b15612e8b57612e8b85828561228c565b612e96858585612304565b50909392505050565b5f60605f805f8661ffff166001600160401b03811115612ec157612ec1614075565b6040519080825280601f01601f191660200182016040528015612eeb576020820181803683370190505b5090505f808751602089015f8d8df191503d925086831115612f0b578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f2085604051612f529190614b8d565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612fae9087908790879087908790614ba8565b60405180910390a15050505050565b6001600160a01b0383166130215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cf1565b6001600160a01b0382166130835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cf1565b6001600160a01b0383165f90815260076020526040902054818110156130fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cf1565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906131599086815260200190565b60405180910390a36122fe565b5f806131927f00000000000000000000000000000000000000000000000000000002540be40084614a4d565b90506001600160401b03811115610ed85760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610cf1565b5f6131f7826001614626565b8351101561323d5760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610cf1565b50016001015190565b5f80613251836137fd565b90925090506001600160a01b03821661326a5761dead91505b5f61327482613881565b90506132818784836138b5565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf836040516132c391815260200190565b60405180910390a350505050505050565b5f805f805f6132e2866138c7565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f20896040516133149190614b8d565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff16915061334685613881565b9050816133b2576133588b30836138b5565b61ffff8c165f9081526006602052604090819020905191925060019161337f908d90614b8d565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613409576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a1505050505050506122fe565b8a8a8a8a8a8a868a5f8a613426578b6001600160401b0316613428565b5a5b90505f806134595a609663eaffd49a60e01b8e8e8e8d8d8d8d8d6040516024016120bf989796959493929190614bf9565b9150915081156134b2578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd884906134a4908e908e908690614c6c565b60405180910390a2506134bf565b6134bf8b8b8b8b85612f23565b50505050505050505050505050505050505050505050565b5f6134e18361397d565b61ffff8087165f90815260026020908152604080832093891683529290522054909150806135515760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610cf1565b61355b8382614626565b8210156114c45760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610cf1565b5f806135d67f00000000000000000000000000000000000000000000000000000002540be40084614c99565b90506135e281846146c0565b9150915091565b5f336001600160a01b03861681146136065761360686828561228c565b61361086846139d8565b5090949350505050565b61ffff86165f9081526001602052604081208054613637906145d1565b80601f0160208091040260200160405190810160405280929190818152602001828054613663906145d1565b80156136ae5780601f10613685576101008083540402835291602001916136ae565b820191905f5260205f20905b81548152906001019060200180831161369157829003601f168201915b5050505050905080515f0361371e5760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610cf1565b613729878751613b0a565b60405162c5803160e81b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063c5803100908490613780908b9086908c908c908c908c90600401614cac565b5f604051808303818588803b158015613797575f80fd5b505af11580156137a9573d5f803e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b03891685876040516020016137de96959493929190614d12565b604051602081830303815290604052905095945050505050565b505050565b5f808061380a84826131eb565b60ff1614801561381b575082516029145b6138625760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61386d83600d613b7a565b915061387a836021613bde565b9050915091565b5f610ed87f00000000000000000000000000000000000000000000000000000002540be4006001600160401b038416614a22565b5f6138c08383613c3a565b5092915050565b5f808060608160016138d987836131eb565b60ff16146139245760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61392f86600d613b7a565b935061393c866021613bde565b9250613949866029613cf9565b9450613956866049613bde565b9050613972605180885161396a91906146c0565b889190612aa5565b915091939590929450565b5f6022825110156139d05760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610cf1565b506022015190565b6001600160a01b038216613a385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cf1565b6001600160a01b0382165f9081526007602052604090205481811015613aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cf1565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b2a57506127105b808211156137f85760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610cf1565b5f613b86826014614626565b83511015613bce5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610cf1565b500160200151600160601b900490565b5f613bea826008614626565b83511015613c315760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610cf1565b50016008015190565b6001600160a01b038216613c905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cf1565b8060095f828254613ca19190614626565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d05826020614626565b83511015613d4d5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610cf1565b50016020015190565b803561ffff81168114613d67575f80fd5b919050565b5f8083601f840112613d7c575f80fd5b5081356001600160401b03811115613d92575f80fd5b602083019150836020828501011115613da9575f80fd5b9250929050565b80356001600160401b0381168114613d67575f80fd5b5f805f805f8060808789031215613ddb575f80fd5b613de487613d56565b955060208701356001600160401b0380821115613dff575f80fd5b613e0b8a838b01613d6c565b9097509550859150613e1f60408a01613db0565b94506060890135915080821115613e34575f80fd5b50613e4189828a01613d6c565b979a9699509497509295939492505050565b5f60208284031215613e63575f80fd5b81356001600160e01b0319811681146117b5575f80fd5b5f5b83811015613e94578181015183820152602001613e7c565b50505f910152565b5f8151808452613eb3816020860160208601613e7a565b601f01601f19169290920160200192915050565b602081525f6117b56020830184613e9c565b5f60208284031215613ee9575f80fd5b6117b582613d56565b6001600160a01b03811681146111b1575f80fd5b5f8060408385031215613f17575f80fd5b8235613f2281613ef2565b946020939093013593505050565b5f8060408385031215613f41575f80fd5b613f2283613d56565b5f805f60608486031215613f5c575f80fd5b8335613f6781613ef2565b92506020840135613f7781613ef2565b929592945050506040919091013590565b5f60208284031215613f98575f80fd5b5035919050565b80358015158114613d67575f80fd5b5f60208284031215613fbe575f80fd5b6117b582613f9f565b5f805f805f8060a08789031215613fdc575f80fd5b613fe587613d56565b9550602087013594506040870135935061400160608801613f9f565b925060808701356001600160401b0381111561401b575f80fd5b613e4189828a01613d6c565b5f805f60408486031215614039575f80fd5b61404284613d56565b925060208401356001600160401b0381111561405c575f80fd5b61406886828701613d6c565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156140b1576140b1614075565b604052919050565b5f6001600160401b038211156140d1576140d1614075565b50601f01601f191660200190565b5f805f606084860312156140f1575f80fd5b6140fa84613d56565b925060208401356001600160401b03811115614114575f80fd5b8401601f81018613614124575f80fd5b8035614137614132826140b9565b614089565b81815287602083850101111561414b575f80fd5b816020840160208301375f6020838301015280945050505061416f60408501613db0565b90509250925092565b5f60608284031215614188575f80fd5b50919050565b5f805f805f60a086880312156141a2575f80fd5b85356141ad81613ef2565b94506141bb60208701613d56565b9350604086013592506060860135915060808601356001600160401b038111156141e3575f80fd5b6141ef88828901614178565b9150509295509295909350565b5f6020828403121561420c575f80fd5b81356117b581613ef2565b5f805f805f805f8060e0898b03121561422e575f80fd5b883561423981613ef2565b975061424760208a01613d56565b9650604089013595506060890135945060808901356001600160401b0380821115614270575f80fd5b61427c8c838d01613d6c565b909650945084915061429060a08c01613db0565b935060c08b01359150808211156142a5575f80fd5b506142b28b828c01614178565b9150509295985092959890939650565b5f80604083850312156142d3575f80fd5b6142dc83613d56565b91506142ea60208401613d56565b90509250929050565b5f805f805f805f805f60e08a8c03121561430b575f80fd5b6143148a613d56565b985060208a0135975060408a0135965060608a01356001600160401b038082111561433d575f80fd5b6143498d838e01613d6c565b909850965086915061435d60808d01613db0565b955061436b60a08d01613f9f565b945060c08c0135915080821115614380575f80fd5b5061438d8c828d01613d6c565b915080935050809150509295985092959850929598565b5f80604083850312156143b5575f80fd5b82356143c081613ef2565b91506142ea60208401613f9f565b5f805f805f608086880312156143e2575f80fd5b6143eb86613d56565b94506143f960208701613d56565b93506040860135925060608601356001600160401b0381111561441a575f80fd5b61442688828901613d6c565b969995985093965092949392505050565b5f8060408385031215614448575f80fd5b823561445381613ef2565b9150602083013561446381613ef2565b809150509250929050565b5f805f60608486031215614480575f80fd5b61448984613d56565b925061449760208501613d56565b9150604084013590509250925092565b5f80604083850312156144b8575f80fd5b50508035926020909101359150565b5f805f805f805f805f806101008b8d0312156144e1575f80fd5b6144ea8b613d56565b995060208b01356001600160401b0380821115614505575f80fd5b6145118e838f01613d6c565b909b50995089915061452560408e01613db0565b985060608d0135975060808d0135915061453e82613ef2565b90955060a08c0135945060c08c0135908082111561455a575f80fd5b506145678d828e01613d6c565b9150809450508092505060e08b013590509295989b9194979a5092959850565b5f805f806080858703121561459a575f80fd5b6145a385613d56565b93506145b160208601613d56565b925060408501356145c181613ef2565b9396929550929360600135925050565b600181811c908216806145e557607f821691505b60208210810361418857634e487b7160e01b5f52602260045260245ffd5b818382375f9101908152919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ed857610ed8614612565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f61208f604083018486614639565b5f808335601e19843603018112614693575f80fd5b8301803591506001600160401b038211156146ac575f80fd5b602001915036819003821315613da9575f80fd5b81810381811115610ed857610ed8614612565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156137f857805f5260205f20601f840160051c8101602085101561471e5750805b601f840160051c820191505b81811015610feb575f815560010161472a565b81516001600160401b0381111561475657614756614075565b61476a8161476484546145d1565b846146f9565b602080601f83116001811461479d575f84156147865750858301515b5f19600386901b1c1916600185901b1785556114c4565b5f85815260208120601f198616915b828110156147cb578886015182559484019460019091019084016147ac565b50858210156147e857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f61ffff808816835280871660208401525084604083015260806060830152614825608083018486614639565b979650505050505050565b61ffff86168152608060208201525f61484d608083018688614639565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201525f61488760c08301898b614639565b6001600160401b038816604084015286606084015285608084015282810360a08401526148b5818587614639565b9b9a5050505050505050505050565b6001600160401b038311156148db576148db614075565b6148ef836148e983546145d1565b836146f9565b5f601f841160018114614920575f85156149095750838201355b5f19600387901b1c1916600186901b178355610feb565b5f83815260208120601f198716915b8281101561494f578685013582556020948501946001909201910161492f565b508682101561496b575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561498d575f80fd5b81516001600160401b038111156149a2575f80fd5b8201601f810184136149b2575f80fd5b80516149c0614132826140b9565b8181528560208385010111156149d4575f80fd5b61208f826020830160208601613e7a565b61ffff85168152608060208201525f614a016080830186613e9c565b6001600160401b038516604084015282810360608401526148258185613e9c565b8082028115828204841417610ed857610ed8614612565b634e487b7160e01b5f52601260045260245ffd5b5f82614a5b57614a5b614a39565b500490565b5f60018201614a7157614a71614612565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614aa590830186613e9c565b84151560608401528281036080840152614abf8185613e9c565b98975050505050505050565b5f8060408385031215614adc575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614b11575f80fd5b81516117b581613ef2565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015614b6c5784516001600160a01b031683529383019391830191600101614b47565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8251614b9e818460208701613e7a565b9190910192915050565b61ffff8616815260a060208201525f614bc460a0830187613e9c565b6001600160401b03861660408401528281036060840152614be58186613e9c565b90508281036080840152614abf8185613e9c565b5f61010061ffff8b168352806020840152614c168184018b613e9c565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614c568186613e9c565b9150508260e08301529998505050505050505050565b606081525f614c7e6060830186613e9c565b6001600160401b039490941660208301525060400152919050565b5f82614ca757614ca7614a39565b500690565b61ffff8716815260c060208201525f614cc860c0830188613e9c565b8281036040840152614cda8188613e9c565b6001600160a01b0387811660608601528616608085015283810360a08501529050614d058185613e9c565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201525f6001600160401b0360c01b808760c01b166021840152856029840152808560c01b166049840152508251614d60816051850160208701613e7a565b9190910160510197965050505050505056fea2646970667358221220e53ab7693f14237317e29f8462de245d91c629598bfc3f8569822bd3a59786e764736f6c63430008160033

Deployed Bytecode Sourcemap

85939:6525:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43384:842;;;;;;;;;;-1:-1:-1;43384:842:0;;;;;:::i;:::-;;:::i;:::-;;65654:213;;;;;;;;;;-1:-1:-1;65654:213:0;;;;;:::i;:::-;;:::i;:::-;;;2029:14:1;;2022:22;2004:41;;1992:2;1977:18;65654:213:0;;;;;;;;72565:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47008:123::-;;;;;;;;;;-1:-1:-1;47008:123:0;;;;;:::i;:::-;;:::i;74925:201::-;;;;;;;;;;-1:-1:-1;74925:201:0;;;;;:::i;:::-;;:::i;48911:142::-;;;;;;;;;;-1:-1:-1;48911:142:0;;;;;:::i;:::-;;:::i;92042:199::-;;;;;;;;;;;;;:::i;47139:129::-;;;;;;;;;;-1:-1:-1;47139:129:0;;;;;:::i;:::-;;:::i;73694:108::-;;;;;;;;;;-1:-1:-1;73782:12:0;;73694:108;;;3860:25:1;;;3848:2;3833:18;73694:108:0;3714:177:1;75706:261:0;;;;;;;;;;-1:-1:-1;75706:261:0;;;;;:::i;:::-;;:::i;86413:24::-;;;;;;;;;;-1:-1:-1;86413:24:0;;;;;;;-1:-1:-1;;;;;86413:24:0;;;;;;-1:-1:-1;;;;;4521:32:1;;;4503:51;;4491:2;4476:18;86413:24:0;4357:203:1;90215:554:0;;;;;;;;;;-1:-1:-1;90215:554:0;;;;;:::i;:::-;;:::i;91939:95::-;;;;;;;;;;-1:-1:-1;91939:95:0;;;;;:::i;:::-;;:::i;73536:93::-;;;;;;;;;;-1:-1:-1;73619:2:0;73536:93;;;5272:4:1;5260:17;;;5242:36;;5230:2;5215:18;73536:93:0;5100:184:1;65875:344:0;;;;;;;;;;-1:-1:-1;65875:344:0;;;;;:::i;:::-;;:::i;:::-;;;;6155:25:1;;;6211:2;6196:18;;6189:34;;;;6128:18;65875:344:0;5981:248:1;76376:238:0;;;;;;;;;;-1:-1:-1;76376:238:0;;;;;:::i;:::-;;:::i;91726:205::-;;;;;;;;;;-1:-1:-1;91726:205:0;;;;;:::i;:::-;;:::i;49151:250::-;;;;;;;;;;-1:-1:-1;49151:250:0;;;;;:::i;:::-;;:::i;42926:53::-;;;;;;;;;;-1:-1:-1;42926:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;47276:178;;;;;;;;;;-1:-1:-1;47276:178:0;;;;;:::i;:::-;;:::i;52994:37::-;;;;;;;;;;;;53030:1;52994:37;;86444:38;;;;;;;;;;;;;;;53060:33;;;;;;;;;;;;53092:1;53060:33;;86050:26;;;;;;;;;;;;;;;;86378;;;;;;;;;;-1:-1:-1;86378:26:0;;;;;;;;;;;50006:85;;;;;;;;;;-1:-1:-1;50006:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91609:109;;;;;;;;;;-1:-1:-1;91609:109:0;;;;;:::i;:::-;;:::i;51329:389::-;;;;;;;;;;-1:-1:-1;51329:389:0;;;;;:::i;:::-;;:::i;64507:356::-;;;;;;:::i;:::-;;:::i;73865:127::-;;;;;;;;;;-1:-1:-1;73865:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;73966:18:0;73939:7;73966:18;;;:9;:18;;;;;;;73865:127;41497:103;;;;;;;;;;;;;:::i;42796:51::-;;;;;;;;;;-1:-1:-1;42796:51:0;;;;;:::i;:::-;;:::i;64871:586::-;;;;;;:::i;:::-;;:::i;53151:37::-;;;;;;;;;;;;;;;42854:65;;;;;;;;;;-1:-1:-1;42854:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;40856:87;;;;;;;;;;-1:-1:-1;40902:7:0;40929:6;-1:-1:-1;;;;;40929:6:0;40856:87;;84320:112;;;;;;;;;;;;;:::i;42986:23::-;;;;;;;;;;-1:-1:-1;42986:23:0;;;;-1:-1:-1;;;;;42986:23:0;;;72784:104;;;;;;;;;;;;;:::i;53197:83::-;;;;;;;;;;-1:-1:-1;53197:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48105:330;;;;;;;;;;-1:-1:-1;48105:330:0;;;;;:::i;:::-;;:::i;77117:436::-;;;;;;;;;;-1:-1:-1;77117:436:0;;;;;:::i;:::-;;:::i;66227:450::-;;;;;;;;;;-1:-1:-1;66227:450:0;;;;;:::i;:::-;;:::i;47816:281::-;;;;;;;;;;-1:-1:-1;47816:281:0;;;;;:::i;:::-;;:::i;90777:111::-;;;;;;;;;;-1:-1:-1;90777:111:0;;;;;:::i;:::-;;:::i;74198:193::-;;;;;;;;;;-1:-1:-1;74198:193:0;;;;;:::i;:::-;;:::i;92249:109::-;;;;;;;;;;-1:-1:-1;92249:109:0;;;;;:::i;:::-;;:::i;42743:46::-;;;;;;;;;;;;;;;92366:95;;;;;;;;;;-1:-1:-1;92366:95:0;;;;;:::i;:::-;;:::i;48443:136::-;;;;;;;;;;-1:-1:-1;48443:136:0;;;;;:::i;:::-;;:::i;86207:19::-;;;;;;;;;;;;;;;;91277:167;;;;;;;;;;-1:-1:-1;91277:167:0;;;;;:::i;:::-;;:::i;91452:149::-;;;;;;;;;;-1:-1:-1;91452:149:0;;;;;:::i;:::-;;:::i;42679:55::-;;;;;;;;;;;;42729:5;42679:55;;46753:247;;;;;;;;;;-1:-1:-1;46753:247:0;;;;;:::i;:::-;;:::i;86083:27::-;;;;;;;;;;;;;;;;51947:810;;;;;;:::i;:::-;;:::i;74454:151::-;;;;;;;;;;-1:-1:-1;74454:151:0;;;;;:::i;:::-;;:::i;48587:262::-;;;;;;;;;;-1:-1:-1;48587:262:0;;;;;:::i;:::-;;:::i;90896:373::-;;;;;;;;;;-1:-1:-1;90896:373:0;;;;;:::i;:::-;;:::i;86491:51::-;;;;;;;;;;-1:-1:-1;86491:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53100:42;;;;;;;;;;;;53141:1;53100:42;;54401:643;;;;;;;;;;-1:-1:-1;54401:643:0;;;;;:::i;:::-;;:::i;47601:207::-;;;;;;;;;;-1:-1:-1;47601:207:0;;;;;:::i;:::-;;:::i;41755:201::-;;;;;;;;;;-1:-1:-1;41755:201:0;;;;;:::i;:::-;;:::i;46437:254::-;;;;;;;;;;-1:-1:-1;46437:254:0;;;;;:::i;:::-;;:::i;84440:103::-;;;;;;;;;;-1:-1:-1;84530:4:0;84440:103;;43384:842;39487:10;43667;-1:-1:-1;;;;;43643:35:0;;43635:78;;;;-1:-1:-1;;;43635:78:0;;16143:2:1;43635:78:0;;;16125:21:1;16182:2;16162:18;;;16155:30;16221:32;16201:18;;;16194:60;16271:18;;43635:78:0;;;;;;;;;43755:32;;;43726:26;43755:32;;;:19;:32;;;;;43726:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43975:13;:20;43953:11;;:18;;:42;:70;;;;;44022:1;43999:13;:20;:24;43953:70;:124;;;;-1:-1:-1;44053:24:0;;;;;;44027:22;;;;44037:11;;;;44027:22;:::i;:::-;;;;;;;;:50;43953:124;43931:212;;;;-1:-1:-1;;;43931:212:0;;17163:2:1;43931:212:0;;;17145:21:1;17202:2;17182:18;;;17175:30;17241:34;17221:18;;;17214:62;-1:-1:-1;;;17292:18:1;;;17285:36;17338:19;;43931:212:0;16961:402:1;43931:212:0;44156:62;44175:11;44188;;44156:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44156:62:0;;;;;;;;;;;;;;;;;;;;;;44201:6;;-1:-1:-1;44156:62:0;-1:-1:-1;44209:8:0;;;;;;44156:62;;44209:8;;;;44156:62;;;;;;;;;-1:-1:-1;44156:18:0;;-1:-1:-1;;;44156:62:0:i;:::-;43558:668;43384:842;;;;;;:::o;65654:213::-;65756:4;-1:-1:-1;;;;;;65780:39:0;;-1:-1:-1;;;65780:39:0;;:79;;-1:-1:-1;;;;;;;;;;2727:40:0;;;65823:36;65773:86;65654:213;-1:-1:-1;;65654:213:0:o;72565:100::-;72619:13;72652:5;72645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72565:100;:::o;47008:123::-;40742:13;:11;:13::i;:::-;47088:35:::1;::::0;-1:-1:-1;;;47088:35:0;;17542:6:1;17530:19;;47088:35:0::1;::::0;::::1;17512:38:1::0;47088:10:0::1;-1:-1:-1::0;;;;;47088:25:0::1;::::0;::::1;::::0;17485:18:1;;47088:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;47008:123:::0;:::o;74925:201::-;75008:4;39487:10;75064:32;39487:10;75080:7;75089:6;75064:8;:32::i;:::-;-1:-1:-1;75114:4:0;;74925:201;-1:-1:-1;;;74925:201:0:o;48911:142::-;40742:13;:11;:13::i;:::-;49002:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;48911:142::o;92042:199::-;40742:13;:11;:13::i;:::-;92101:14:::1;::::0;;;::::1;;;92100:15;92092:46;;;::::0;-1:-1:-1;;;92092:46:0;;17763:2:1;92092:46:0::1;::::0;::::1;17745:21:1::0;17802:2;17782:18;;;17775:30;-1:-1:-1;;;17821:18:1;;;17814:48;17879:18;;92092:46:0::1;17561:342:1::0;92092:46:0::1;92149:14;:21:::0;;92194:12:::1;92181:10;:25:::0;-1:-1:-1;;92217:16:0;;;;;92042:199::o;47139:129::-;40742:13;:11;:13::i;:::-;47222:38:::1;::::0;-1:-1:-1;;;47222:38:0;;17542:6:1;17530:19;;47222:38:0::1;::::0;::::1;17512::1::0;47222:10:0::1;-1:-1:-1::0;;;;;47222:28:0::1;::::0;::::1;::::0;17485:18:1;;47222:38:0::1;17368:188:1::0;75706:261:0;75803:4;39487:10;75861:38;75877:4;39487:10;75892:6;75861:15;:38::i;:::-;75910:27;75920:4;75926:2;75930:6;75910:9;:27::i;:::-;-1:-1:-1;75955:4:0;;75706:261;-1:-1:-1;;;;75706:261:0:o;90215:554::-;90283:6;90269:10;;:20;90265:497;;90315:2;90306:6;:11;;;90332:7;:12;90215:554;:::o;90265:497::-;90384:6;90366:10;;90379:1;90366:14;;;;:::i;:::-;:24;90362:400;;90416:2;90407:6;:11;;;90433:7;:12;90215:554;:::o;90362:400::-;90485:6;90467:10;;90480:1;90467:14;;;;:::i;:::-;:24;90463:299;;90517:2;90508:6;:11;;;90534:7;:12;90215:554;:::o;90463:299::-;90587:6;90568:10;;90581:2;90568:15;;;;:::i;:::-;:25;90564:198;;90619:2;90610:6;:11;;;90636:7;:12;90215:554;:::o;90564:198::-;90689:6;90670:10;;90683:2;90670:15;;;;:::i;:::-;:25;90666:96;;90721:2;90712:6;:11;;;90738:7;:12;90666:96;90215:554;:::o;91939:95::-;40742:13;:11;:13::i;:::-;92004:12:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;92004:22:0;;::::1;::::0;;;::::1;::::0;;91939:95::o;65875:344::-;66089:14;66105:11;66136:75;66153:11;66166:10;66178:7;66187;66196:14;;66136:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66136:16:0;;-1:-1:-1;;;66136:75:0:i;:::-;66129:82;;;;65875:344;;;;;;;;;:::o;76376:238::-;76464:4;39487:10;76520:64;39487:10;76536:7;76573:10;76545:25;39487:10;76536:7;76545:9;:25::i;:::-;:38;;;;:::i;:::-;76520:8;:64::i;91726:205::-;40742:13;:11;:13::i;:::-;91853:1:::1;91838:12;:16;91830:47;;;::::0;-1:-1:-1;;;91830:47:0;;18372:2:1;91830:47:0::1;::::0;::::1;18354:21:1::0;18411:2;18391:18;;;18384:30;-1:-1:-1;;;18430:18:1;;;18423:48;18488:18;;91830:47:0::1;18170:342:1::0;91830:47:0::1;91888:20;:35:::0;91726:205::o;49151:250::-;49293:32;;;49247:4;49293:32;;;:19;:32;;;;;49264:61;;49247:4;;49293:32;49264:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49381:11;;49371:22;;;;;;;:::i;:::-;;;;;;;;49353:13;49343:24;;;;;;:50;49336:57;;;49151:250;;;;;:::o;47276:178::-;40742:13;:11;:13::i;:::-;47391:55:::1;::::0;-1:-1:-1;;;47391:55:0;;-1:-1:-1;;;;;47391:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;47421:11;;47434;;;;47391:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;91609:109:::0;40742:13;:11;:13::i;:::-;91686:11:::1;:24:::0;91609:109::o;51329:389::-;39487:10;51586:4;51562:29;51554:80;;;;-1:-1:-1;;;51554:80:0;;19321:2:1;51554:80:0;;;19303:21:1;19360:2;19340:18;;;19333:30;19399:34;19379:18;;;19372:62;-1:-1:-1;;;19450:18:1;;;19443:36;19496:19;;51554:80:0;19119:402:1;51554:80:0;51645:65;51667:11;51680;;51645:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51645:65:0;;;;;;;;;;;;;;;;;;;;;;51693:6;;-1:-1:-1;51645:65:0;-1:-1:-1;51701:8:0;;;;;;51645:65;;51701:8;;;;51645:65;;;;;;;;;-1:-1:-1;51645:21:0;;-1:-1:-1;;;51645:65:0:i;:::-;51329:389;;;;;;:::o;64507:356::-;64724:131;64730:5;64737:11;64750:10;64762:7;64771:25;;;;:11;:25;:::i;:::-;64798:29;;;;;;;;:::i;:::-;64829:25;;;;:11;:25;:::i;:::-;64724:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64724:5:0;;-1:-1:-1;;;64724:131:0:i;41497:103::-;40742:13;:11;:13::i;:::-;41562:30:::1;41589:1;41562:18;:30::i;:::-;41497:103::o:0;42796:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64871:586::-;65157:292;65184:5;65204:11;65230:10;65255:7;65277:8;;65157:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65300:14:0;;-1:-1:-1;65329:25:0;;-1:-1:-1;;65329:25:0;;;:11;:25;:::i;:::-;65369:29;;;;;;;;:::i;:::-;65413:25;;;;:11;:25;:::i;:::-;65157:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65157:12:0;;-1:-1:-1;;;65157:292:0:i;:::-;;64871:586;;;;;;;;:::o;84320:112::-;84387:4;84411:13;73782:12;;;73694:108;84411:13;84404:20;;84320:112;:::o;72784:104::-;72840:13;72873:7;72866:14;;;;;:::i;48105:330::-;48229:35;;;48209:17;48229:35;;;:19;:35;;;;;48209:55;;48184:12;;48209:17;48229:35;48209:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48283:4;:11;48298:1;48283:16;48275:58;;;;-1:-1:-1;;;48275:58:0;;20514:2:1;48275:58:0;;;20496:21:1;20553:2;20533:18;;;20526:30;20592:31;20572:18;;;20565:59;20641:18;;48275:58:0;20312:353:1;48275:58:0;48351:31;48362:1;48379:2;48365:4;:11;:16;;;;:::i;:::-;48351:4;;:31;:10;:31::i;:::-;48344:38;48105:330;-1:-1:-1;;;48105:330:0:o;77117:436::-;77210:4;39487:10;77210:4;77293:25;39487:10;77310:7;77293:9;:25::i;:::-;77266:52;;77357:15;77337:16;:35;;77329:85;;;;-1:-1:-1;;;77329:85:0;;21005:2:1;77329:85:0;;;20987:21:1;21044:2;21024:18;;;21017:30;21083:34;21063:18;;;21056:62;-1:-1:-1;;;21134:18:1;;;21127:35;21179:19;;77329:85:0;20803:401:1;77329:85:0;77450:60;77459:5;77466:7;77494:15;77475:16;:34;77450:8;:60::i;66227:450::-;66514:14;66530:11;66561:108;66585:11;66598:10;66610:7;66619:8;;66561:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66561:108:0;;;;;;;;;;;;;;;;;;;;;;66629:14;;-1:-1:-1;66645:7:0;;-1:-1:-1;66561:108:0;66654:14;;;;;;66561:108;;66654:14;;;;66561:108;;;;;;;;;-1:-1:-1;66561:23:0;;-1:-1:-1;;;66561:108:0:i;:::-;66554:115;;;;66227:450;;;;;;;;;;;;:::o;47816:281::-;40742:13;:11;:13::i;:::-;47988:14:::1;;48012:4;47971:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;47971:47:0;;::::1;::::0;;;;;;47933:35:::1;::::0;::::1;;::::0;;;:19:::1;47971:47;47933:35:::0;;;:85:::1;::::0;:35;:85:::1;:::i;:::-;;48034:55;48058:14;48074;;48034:55;;;;;;;;:::i;:::-;;;;;;;;47816:281:::0;;;:::o;90777:111::-;40742:13;:11;:13::i;:::-;90855:9:::1;:25:::0;;-1:-1:-1;;;;;90855:25:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;90855:25:0;;::::1;::::0;;;::::1;::::0;;90777:111::o;74198:193::-;74277:4;39487:10;74333:28;39487:10;74350:2;74354:6;74333:9;:28::i;92249:109::-;40742:13;:11;:13::i;:::-;92321::::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;92321:29:0;;::::1;::::0;;;::::1;::::0;;92249:109::o;92366:95::-;40742:13;:11;:13::i;:::-;92433:20:::1;92445:7;92433:11;:20::i;48443:136::-:0;40742:13;:11;:13::i;:::-;48513:8:::1;:20:::0;;-1:-1:-1;;;;;;48513:20:0::1;-1:-1:-1::0;;;;;48513:20:0;::::1;::::0;;::::1;::::0;;;48549:22:::1;::::0;4503:51:1;;;48549:22:0::1;::::0;4491:2:1;4476:18;48549:22:0::1;;;;;;;48443:136:::0;:::o;91277:167::-;40742:13;:11;:13::i;:::-;-1:-1:-1;;;;;91393:29:0;;;::::1;;::::0;;;:19:::1;:29;::::0;;;;:43;;-1:-1:-1;;91393:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;91277:167::o;91452:149::-;40742:13;:11;:13::i;:::-;91557:15:::1;:36:::0;91452:149::o;46753:247::-;40742:13;:11;:13::i;:::-;46930:62:::1;::::0;-1:-1:-1;;;46930:62:0;;-1:-1:-1;;;;;46930:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;46951:8;;46961;;46971:11;;46984:7;;;;46930:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;51947:810:::0;52201:27;;;52179:19;52201:27;;;:14;:27;;;;;;:40;;;;52229:11;;;;52201:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52201:48:0;;;;;;;;;;;;-1:-1:-1;52201:48:0;52260:73;;;;-1:-1:-1;;;52260:73:0;;24443:2:1;52260:73:0;;;24425:21:1;24482:2;24462:18;;;24455:30;24521:34;24501:18;;;24494:62;-1:-1:-1;;;24572:18:1;;;24565:33;24615:19;;52260:73:0;24241:399:1;52260:73:0;52375:11;52362:8;;52352:19;;;;;;;:::i;:::-;;;;;;;;:34;52344:80;;;;-1:-1:-1;;;52344:80:0;;24847:2:1;52344:80:0;;;24829:21:1;24886:2;24866:18;;;24859:30;24925:34;24905:18;;;24898:62;-1:-1:-1;;;24976:18:1;;;24969:31;25017:19;;52344:80:0;24645:397:1;52344:80:0;52472:27;;;52531:1;52472:27;;;:14;:27;;;;;;:40;;;;52500:11;;;;52472:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52472:48:0;;;;;;;;;;;;:61;;;;52602:65;;;;;;;;;;;;;;;;;;;52624:11;;52637;;52602:65;;;;;;52637:11;52602:65;;52637:11;52602:65;;;;;;;;;-1:-1:-1;;52602:65:0;;;;;;;;;;;;;;;;;;;;;;52650:6;;-1:-1:-1;52602:65:0;-1:-1:-1;52658:8:0;;;;;;52602:65;;52658:8;;;;52602:65;;;;;;;;;-1:-1:-1;52602:21:0;;-1:-1:-1;;;52602:65:0:i;:::-;52683:66;52703:11;52716;;52729:6;52737:11;52683:66;;;;;;;;;;:::i;:::-;;;;;;;;52123:634;51947:810;;;;;;:::o;74454:151::-;-1:-1:-1;;;;;74570:18:0;;;74543:7;74570:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;74454:151::o;48587:262::-;40742:13;:11;:13::i;:::-;48727:28:::1;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;48794:47;;25768:34:1;;;25818:18;;25811:43;;;;25870:18;;;25863:34;;;48794:47:0::1;::::0;25731:2:1;25716:18;48794:47:0::1;25545:358:1::0;90896:373:0;40742:13;:11;:13::i;:::-;91074:2:::1;91053:17;:23;;:51;;;;;91102:2;91080:18;:24;;91053:51;91031:126;;;::::0;-1:-1:-1;;;91031:126:0;;26110:2:1;91031:126:0::1;::::0;::::1;26092:21:1::0;26149:2;26129:18;;;26122:30;26188:27;26168:18;;;26161:55;26233:18;;91031:126:0::1;25908:349:1::0;91031:126:0::1;91168:6;:26:::0;;;;91205:7:::1;:28:::0;91244:9:::1;:17:::0;;-1:-1:-1;;91244:17:0::1;::::0;;90896:373::o;54401:643::-;39487:10;54713:4;54689:29;54681:73;;;;-1:-1:-1;;;54681:73:0;;26464:2:1;54681:73:0;;;26446:21:1;26503:2;26483:18;;;26476:30;26542:33;26522:18;;;26515:61;26593:18;;54681:73:0;26262:355:1;54681:73:0;54794:42;54816:4;54823:3;54828:7;54794:13;:42::i;:::-;54784:52;;54882:3;-1:-1:-1;;;;;54852:43:0;54869:11;54852:43;;;54887:7;54852:43;;;;3860:25:1;;3848:2;3833:18;;3714:177;54852:43:0;;;;;;;;54925:111;;-1:-1:-1;;;54925:111:0;;-1:-1:-1;;;;;54925:33:0;;;;;54964:11;;54925:111;;54977:11;;54990;;;;55003:6;;55011:5;;55018:7;;55027:8;;;;54925:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54401:643;;;;;;;;;;:::o;47601:207::-;40742:13;:11;:13::i;:::-;47702:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;47740:5:::0;;47702:35;:43:::1;:::i;:::-;;47761:39;47778:14;47794:5;;47761:39;;;;;;;;:::i;41755:201::-:0;40742:13;:11;:13::i;:::-;-1:-1:-1;;;;;41844:22:0;::::1;41836:73;;;::::0;-1:-1:-1;;;41836:73:0;;28781:2:1;41836:73:0::1;::::0;::::1;28763:21:1::0;28820:2;28800:18;;;28793:30;28859:34;28839:18;;;28832:62;-1:-1:-1;;;28910:18:1;;;28903:36;28956:19;;41836:73:0::1;28579:402:1::0;41836:73:0::1;41920:28;41939:8;41920:18;:28::i;46437:254::-:0;46615:68;;-1:-1:-1;;;46615:68:0;;29223:6:1;29256:15;;;46615:68:0;;;29238:34:1;29308:15;;29288:18;;;29281:43;46664:4:0;29340:18:1;;;29333:60;29409:18;;;29402:34;;;46583:12:0;;46615:10;-1:-1:-1;;;;;46615:20:0;;;;29185:19:1;;46615:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46615:68:0;;;;;;;;;;;;:::i;:::-;46608:75;46437:254;-1:-1:-1;;;;;46437:254:0:o;50375:563::-;50568:12;50582:19;50605:203;50653:9;50677:3;50718:34;;;50754:11;50767;50780:6;50788:8;50695:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50695:102:0;;;;;;;;;;;;;;-1:-1:-1;;;;;50695:102:0;-1:-1:-1;;;;;;50695:102:0;;;;;;;;;;50613:4;;50605:203;;:33;:203::i;:::-;50567:241;;;;50824:7;50819:112;;50848:71;50868:11;50881;50894:6;50902:8;50912:6;50848:19;:71::i;41021:132::-;40902:7;40929:6;-1:-1:-1;;;;;40929:6:0;39487:10;41085:23;41077:68;;;;-1:-1:-1;;;41077:68:0;;30863:2:1;41077:68:0;;;30845:21:1;;;30882:18;;;30875:30;30941:34;30921:18;;;30914:62;30993:18;;41077:68:0;30661:356:1;81110:346:0;-1:-1:-1;;;;;81212:19:0;;81204:68;;;;-1:-1:-1;;;81204:68:0;;31224:2:1;81204:68:0;;;31206:21:1;31263:2;31243:18;;;31236:30;31302:34;31282:18;;;31275:62;-1:-1:-1;;;31353:18:1;;;31346:34;31397:19;;81204:68:0;31022:400:1;81204:68:0;-1:-1:-1;;;;;81291:21:0;;81283:68;;;;-1:-1:-1;;;81283:68:0;;31629:2:1;81283:68:0;;;31611:21:1;31668:2;31648:18;;;31641:30;31707:34;31687:18;;;31680:62;-1:-1:-1;;;31758:18:1;;;31751:32;31800:19;;81283:68:0;31427:398:1;81283:68:0;-1:-1:-1;;;;;81364:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;81416:32;;3860:25:1;;;81416:32:0;;3833:18:1;81416:32:0;;;;;;;81110:346;;;:::o;81747:419::-;81848:24;81875:25;81885:5;81892:7;81875:9;:25::i;:::-;81848:52;;-1:-1:-1;;81915:16:0;:37;81911:248;;81997:6;81977:16;:26;;81969:68;;;;-1:-1:-1;;;81969:68:0;;32032:2:1;81969:68:0;;;32014:21:1;32071:2;32051:18;;;32044:30;32110:31;32090:18;;;32083:59;32159:18;;81969:68:0;31830:353:1;81969:68:0;82081:51;82090:5;82097:7;82125:6;82106:16;:25;82081:8;:51::i;:::-;81837:329;81747:419;;;:::o;87748:1778::-;87889:1;87880:6;:10;87872:61;;;;-1:-1:-1;;;87872:61:0;;32390:2:1;87872:61:0;;;32372:21:1;32429:2;32409:18;;;32402:30;32468:34;32448:18;;;32441:62;-1:-1:-1;;;32519:18:1;;;32512:36;32565:19;;87872:61:0;32188:402:1;87872:61:0;87951:14;;;;;;;87946:115;;40902:7;40929:6;-1:-1:-1;;;;;87990:15:0;;;40929:6;;87990:15;;:32;;-1:-1:-1;40902:7:0;40929:6;-1:-1:-1;;;;;88009:13:0;;;40929:6;;88009:13;87990:32;87982:67;;;;-1:-1:-1;;;87982:67:0;;32797:2:1;87982:67:0;;;32779:21:1;32836:2;32816:18;;;32809:30;-1:-1:-1;;;32855:18:1;;;32848:52;32917:18;;87982:67:0;32595:346:1;87982:67:0;88107:9;;88073:17;;88107:9;;88103:62;;;88133:20;88140:12;88133:6;:20::i;:::-;88189:13;-1:-1:-1;;;;;88181:21:0;:4;-1:-1:-1;;;;;88181:21:0;;:49;;;;-1:-1:-1;;;;;;88207:23:0;;;;;;:19;:23;;;;;;;;88206:24;88181:49;88177:395;;;88299:15;;88289:6;88273:13;88283:2;-1:-1:-1;;;;;73966:18:0;73939:7;73966:18;;;:9;:18;;;;;;;73865:127;88273:13;:22;;;;:::i;:::-;:41;;88247:123;;;;-1:-1:-1;;;88247:123:0;;33148:2:1;88247:123:0;;;33130:21:1;33187:2;33167:18;;;33160:30;-1:-1:-1;;;33206:18:1;;;33199:50;33266:18;;88247:123:0;32946:344:1;88247:123:0;88403:11;;88393:6;:21;;88385:50;;;;-1:-1:-1;;;88385:50:0;;33497:2:1;88385:50:0;;;33479:21:1;33536:2;33516:18;;;33509:30;-1:-1:-1;;;33555:18:1;;;33548:46;33611:18;;88385:50:0;33295:340:1;88385:50:0;88454:12;;;;;;;88450:88;;;88519:3;88509:6;;88500;:15;;;;:::i;:::-;88499:23;;;;:::i;:::-;88487:35;;88450:88;88554:4;:6;;;:4;:6;;;:::i;:::-;;;;;;88177:395;88594:13;-1:-1:-1;;;;;88588:19:0;:2;-1:-1:-1;;;;;88588:19:0;;:49;;;;-1:-1:-1;;;;;;88612:25:0;;;;;;:19;:25;;;;;;;;88611:26;88588:49;88584:235;;;88672:11;;88662:6;:21;;88654:50;;;;-1:-1:-1;;;88654:50:0;;33497:2:1;88654:50:0;;;33479:21:1;33536:2;33516:18;;;33509:30;-1:-1:-1;;;33555:18:1;;;33548:46;33611:18;;88654:50:0;33295:340:1;88654:50:0;88723:12;;;;;;;88719:89;;;88789:3;88778:7;;88769:6;:16;;;;:::i;:::-;88768:24;;;;:::i;:::-;88756:36;;88719:89;88880:4;88831:28;73966:18;;;:9;:18;;;;;;88950:20;;88926:44;;;;;;;89001:49;;-1:-1:-1;89038:12:0;;;;;;;89037:13;89001:49;:87;;;;;89075:13;-1:-1:-1;;;;;89067:21:0;:4;-1:-1:-1;;;;;89067:21:0;;;89001:87;:130;;;;-1:-1:-1;;;;;;89106:25:0;;;;;;:19;:25;;;;;;;;89105:26;89001:130;:169;;;;;89155:15;;89148:4;;:22;89001:169;88983:259;;;89197:33;89209:20;;89197:11;:33::i;:::-;89258:13;;89254:265;;89288:18;89309;89318:9;89309:6;:18;:::i;:::-;89288:39;;89342:47;89358:4;89372;89379:9;89342:15;:47::i;:::-;89404:37;89420:4;89426:2;89430:10;89404:15;:37::i;:::-;89273:180;89254:265;;;89474:33;89490:4;89496:2;89500:6;89474:15;:33::i;55238:471::-;55444:14;55460:11;55528:20;55551:47;55570:10;55582:15;55589:7;55582:6;:15::i;:::-;61927:48;;;53092:1;61927:48;;;40647:49:1;40712:11;;;40705:27;;;;40788:3;40766:16;;;;-1:-1:-1;;;;;;40762:51:1;40748:12;;;40741:73;61927:48:0;;;;;;;;;40830:12:1;;;;61927:48:0;;;61798:185;55551:47;55616:85;;-1:-1:-1;;;55616:85:0;;55528:70;;-1:-1:-1;;;;;;55616:10:0;:23;;;;:85;;55640:11;;55661:4;;55528:70;;55677:7;;55686:14;;55616:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55609:92;;;;;55238:471;;;;;;;;:::o;56315:558::-;56510:16;56529:19;:8;56510:16;56529;:19::i;:::-;56510:38;-1:-1:-1;56565:21:0;;;56561:305;;56603:52;56612:11;56625;56638:6;56646:8;56603;:52::i;:::-;56561:305;;;-1:-1:-1;;56677:30:0;;;;56673:193;;56724:59;56740:11;56753;56766:6;56774:8;56724:15;:59::i;56673:193::-;56816:38;;-1:-1:-1;;;56816:38:0;;35309:2:1;56816:38:0;;;35291:21:1;35348:2;35328:18;;;35321:30;35387;35367:18;;;35360:58;35435:18;;56816:38:0;35107:352:1;56881:840:0;57150:11;57174:66;57189:11;57150;57211:14;57150:11;57174:14;:66::i;:::-;57266:20;57278:7;57266:11;:20::i;:::-;-1:-1:-1;57253:33:0;-1:-1:-1;57306:50:0;57317:5;57324:11;57337:10;57253:33;57306:10;:50::i;:::-;57297:59;;57424:1;57415:6;:10;57407:48;;;;-1:-1:-1;;;57407:48:0;;35666:2:1;57407:48:0;;;35648:21:1;35705:2;35685:18;;;35678:30;-1:-1:-1;;;35724:18:1;;;35717:55;35789:18;;57407:48:0;35464:349:1;57407:48:0;57468:22;57493:46;57512:10;57524:14;57531:6;57524;:14::i;57493:46::-;57468:71;;57550:94;57558:11;57571:9;57582:14;57598:18;57618:14;57634:9;57550:7;:94::i;:::-;57694:10;57687:5;-1:-1:-1;;;;;57662:51:0;57674:11;57662:51;;;57706:6;57662:51;;;;3860:25:1;;3848:2;3833:18;;3714:177;57662:51:0;;;;;;;;57163:558;56881:840;;;;;;;;;:::o;42116:191::-;42190:16;42209:6;;-1:-1:-1;;;;;42226:17:0;;;-1:-1:-1;;;;;;42226:17:0;;;;;;42259:40;;42209:6;;;;;;;42259:40;;42190:16;42259:40;42179:128;42116:191;:::o;58194:995::-;58534:11;58558:77;58573:11;53141:1;58604:14;-1:-1:-1;;;;;58558:77:0;;:14;:77::i;:::-;58661:20;58673:7;58661:11;:20::i;:::-;-1:-1:-1;58648:33:0;-1:-1:-1;58701:50:0;58712:5;58719:11;58732:10;58648:33;58701:10;:50::i;:::-;58692:59;;58779:1;58770:6;:10;58762:48;;;;-1:-1:-1;;;58762:48:0;;35666:2:1;58762:48:0;;;35648:21:1;35705:2;35685:18;;;35678:30;-1:-1:-1;;;35724:18:1;;;35717:55;35789:18;;58762:48:0;35464:349:1;58762:48:0;58891:22;58916:91;58942:10;58954;58966:14;58973:6;58966;:14::i;:::-;58982:8;58992:14;58916:25;:91::i;:::-;58891:116;;59018:94;59026:11;59039:9;59050:14;59066:18;59086:14;59102:9;59018:7;:94::i;:::-;59162:10;59155:5;-1:-1:-1;;;;;59130:51:0;59142:11;59130:51;;;59174:6;59130:51;;;;3860:25:1;;3848:2;3833:18;;3714:177;59130:51:0;;;;;;;;58547:642;58194:995;;;;;;;;;;;:::o;20521:2833::-;20641:12;20690:7;20674:12;20690:7;20684:2;20674:12;:::i;:::-;:23;;20666:50;;;;-1:-1:-1;;;20666:50:0;;36020:2:1;20666:50:0;;;36002:21:1;36059:2;36039:18;;;36032:30;-1:-1:-1;;;36078:18:1;;;36071:44;36132:18;;20666:50:0;35818:338:1;20666:50:0;20752:16;20761:7;20752:6;:16;:::i;:::-;20735:6;:13;:33;;20727:63;;;;-1:-1:-1;;;20727:63:0;;36363:2:1;20727:63:0;;;36345:21:1;36402:2;36382:18;;;36375:30;-1:-1:-1;;;36421:18:1;;;36414:47;36478:18;;20727:63:0;36161:341:1;20727:63:0;20803:22;20869:15;;20898:2005;;;;23047:4;23041:11;23028:24;;23236:1;23225:9;23218:20;23286:4;23275:9;23271:20;23265:4;23258:34;20862:2445;;20898:2005;21083:4;21077:11;21064:24;;21752:2;21743:7;21739:16;22140:9;22133:17;22127:4;22123:28;22111:9;22100;22096:25;22092:60;22189:7;22185:2;22181:16;22446:6;22432:9;22425:17;22419:4;22415:28;22403:9;22395:6;22391:22;22387:57;22383:70;22217:434;22480:3;22476:2;22473:11;22217:434;;;22622:9;;22611:21;;22522:4;22514:13;;;;22555;22217:434;;;-1:-1:-1;;22671:26:0;;;22883:2;22866:11;-1:-1:-1;;22862:25:0;22856:4;22849:39;-1:-1:-1;20862:2445:0;-1:-1:-1;23337:9:0;20521:2833;-1:-1:-1;;;;20521:2833:0:o;55717:590::-;55994:14;56010:11;56081:20;56104:92;56130:10;56142;56154:15;56161:7;56154:6;:15::i;56104:92::-;56214:85;;-1:-1:-1;;;56214:85:0;;56081:115;;-1:-1:-1;;;;;;56214:10:0;:23;;;;:85;;56238:11;;56259:4;;56081:115;;56275:7;;56284:14;;56214:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56207:92;;;;;55717:590;;;;;;;;;;:::o;89534:673::-;86585:12;:19;;-1:-1:-1;;86585:19:0;;;;;89702:16:::1;::::0;;89716:1:::1;89702:16:::0;;;;;::::1;::::0;;-1:-1:-1;;89702:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;89702:16:0::1;89678:40;;89747:4;89729;89734:1;89729:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;89729:23:0::1;;;-1:-1:-1::0;;;;;89729:23:0::1;;;::::0;::::1;89773:15;-1:-1:-1::0;;;;;89773:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89763:4;89768:1;89763:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;89763:32:0::1;;;-1:-1:-1::0;;;;;89763:32:0::1;;;::::0;::::1;89808:122;89839:4;89867:15;89898:21;89808:8;:122::i;:::-;90149:9;::::0;89969:230:::1;::::0;-1:-1:-1;;;89969:230:0;;-1:-1:-1;;;;;89969:15:0::1;:66:::0;::::1;::::0;::::1;::::0;:230:::1;::::0;90050:21;;90086:1:::1;::::0;90130:4;;90149:9;;;::::1;::::0;;::::1;::::0;90173:15:::1;::::0;89969:230:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;86627:12:0;:20;;-1:-1:-1;;86627:20:0;;;-1:-1:-1;;;;89534:673:0:o;85288:425::-;85422:4;39487:10;85572:4;-1:-1:-1;;;;;85555:22:0;;;;;;:42;;;85590:7;-1:-1:-1;;;;;85581:16:0;:5;-1:-1:-1;;;;;85581:16:0;;;85555:42;85551:88;;;85599:40;85615:5;85622:7;85631;85599:15;:40::i;:::-;85650:30;85660:5;85667:3;85672:7;85650:9;:30::i;:::-;-1:-1:-1;85698:7:0;;85288:425;-1:-1:-1;;;85288:425:0:o;6570:1309::-;6729:4;6735:12;6797;6820:13;6844:24;6881:8;6871:19;;-1:-1:-1;;;;;6871:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6871:19:0;;6844:46;;7400:1;7370;7332:9;7326:16;7293:4;7282:9;7278:20;7243:1;7204:7;7174:4;7151:275;7139:287;;7495:16;7484:27;;7540:8;7531:7;7528:21;7525:78;;;7580:8;7569:19;;7525:78;7690:7;7677:11;7670:28;7812:7;7809:1;7802:4;7789:11;7785:22;7770:50;7849:8;;;;-1:-1:-1;6570:1309:0;-1:-1:-1;;;;;;6570:1309:0:o;50946:375::-;51222:8;51212:19;;;;;;51161:14;:27;51176:11;51161:27;;;;;;;;;;;;;;;51189:11;51161:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51161:48:0;;;;;;;;;:70;;;;51247:66;;;;51261:11;;51274;;51202:6;;51295:8;;51305:7;;51247:66;:::i;:::-;;;;;;;;50946:375;;;;;:::o;78023:806::-;-1:-1:-1;;;;;78120:18:0;;78112:68;;;;-1:-1:-1;;;78112:68:0;;39098:2:1;78112:68:0;;;39080:21:1;39137:2;39117:18;;;39110:30;39176:34;39156:18;;;39149:62;-1:-1:-1;;;39227:18:1;;;39220:35;39272:19;;78112:68:0;38896:401:1;78112:68:0;-1:-1:-1;;;;;78199:16:0;;78191:64;;;;-1:-1:-1;;;78191:64:0;;39504:2:1;78191:64:0;;;39486:21:1;39543:2;39523:18;;;39516:30;39582:34;39562:18;;;39555:62;-1:-1:-1;;;39633:18:1;;;39626:33;39676:19;;78191:64:0;39302:399:1;78191:64:0;-1:-1:-1;;;;;78341:15:0;;78319:19;78341:15;;;:9;:15;;;;;;78375:21;;;;78367:72;;;;-1:-1:-1;;;78367:72:0;;39908:2:1;78367:72:0;;;39890:21:1;39947:2;39927:18;;;39920:30;39986:34;39966:18;;;39959:62;-1:-1:-1;;;40037:18:1;;;40030:36;40083:19;;78367:72:0;39706:402:1;78367:72:0;-1:-1:-1;;;;;78475:15:0;;;;;;;:9;:15;;;;;;78493:20;;;78475:38;;78693:13;;;;;;;;;;:23;;;;;;78745:26;;;;;;78507:6;3860:25:1;;3848:2;3833:18;;3714:177;78745:26:0;;;;;;;;78784:37;82766:91;61233:238;61294:6;;61329:22;85807:9;61329:7;:22;:::i;:::-;61313:38;-1:-1:-1;;;;;;61370:28:0;;;61362:67;;;;-1:-1:-1;;;61362:67:0;;40315:2:1;61362:67:0;;;40297:21:1;40354:2;40334:18;;;40327:30;40393:28;40373:18;;;40366:56;40439:18;;61362:67:0;40113:350:1;23730:307:0;23804:5;23847:10;:6;23856:1;23847:10;:::i;:::-;23830:6;:13;:27;;23822:59;;;;-1:-1:-1;;;23822:59:0;;41055:2:1;23822:59:0;;;41037:21:1;41094:2;41074:18;;;41067:30;-1:-1:-1;;;41113:18:1;;;41106:49;41172:18;;23822:59:0;40853:343:1;23822:59:0;-1:-1:-1;23961:29:0;23977:3;23961:29;23955:36;;23730:307::o;57729:457::-;57884:10;57896:15;57915:28;57934:8;57915:18;:28::i;:::-;57883:60;;-1:-1:-1;57883:60:0;-1:-1:-1;;;;;;57958:16:0;;57954:69;;58004:6;57991:20;;57954:69;58035:11;58049:16;58056:8;58049:6;:16::i;:::-;58035:30;;58085:34;58095:11;58108:2;58112:6;58085:9;:34::i;:::-;58076:43;;58167:2;-1:-1:-1;;;;;58137:41:0;58154:11;58137:41;;;58171:6;58137:41;;;;3860:25:1;;3848:2;3833:18;;3714:177;58137:41:0;;;;;;;;57872:314;;;57729:457;;;;:::o;59197:1902::-;59378:12;59392:10;59404:15;59421:27;59450:17;59471:35;59497:8;59471:25;:35::i;:::-;59377:129;;;;;;;;;;59519:13;59535:15;:28;59551:11;59535:28;;;;;;;;;;;;;;;59564:11;59535:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59535:49:0;;;;;;;;;;;;;;-1:-1:-1;59609:16:0;59616:8;59609:6;:16::i;:::-;59595:30;;59753:8;59748:167;;59787:45;59797:11;59818:4;59825:6;59787:9;:45::i;:::-;59847:28;;;;;;;:15;:28;;;;;;;:41;;59778:54;;-1:-1:-1;59899:4:0;;59847:41;;59876:11;;59847:41;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59847:49:0;;;;;;;;;;:56;;-1:-1:-1;;59847:56:0;;;;;;;;;;59748:167;-1:-1:-1;;;;;61193:20:0;;;59927:97;;59969:22;;-1:-1:-1;;;;;4521:32:1;;4503:51;;59969:22:0;;4491:2:1;4476:18;59969:22:0;;;;;;;60006:7;;;;;;;;;59927:97;60098:11;60146;60183:6;60223:8;60258:4;60287:2;60315:6;60363:14;60078:17;60448:8;:33;;60471:10;-1:-1:-1;;;;;60448:33:0;;;;60459:9;60448:33;60437:44;;60493:12;60507:19;60530:230;60578:9;60602:3;60643:31;;;60676:10;60688;60700:5;60707;60714:3;60719:7;60728:15;60745:3;60620:129;;;;;;;;;;;;;;;:::i;60530:230::-;60492:268;;;;60777:7;60773:319;;;60816:18;;;;;;60854:59;;;;;;;;;;60889:10;;60901:5;;60816:18;;60854:59;:::i;:::-;;;;;;;;60786:139;60773:319;;;61013:67;61033:10;61045;61057:5;61064:7;61073:6;61013:19;:67::i;:::-;59366:1733;;;;;;;;;;;;;;;;;;59197:1902;;;;:::o;45180:463::-;45359:21;45383:28;45396:14;45383:12;:28::i;:::-;45441;;;;45422:16;45441:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;45359:52;;-1:-1:-1;45495:15:0;45487:54;;;;-1:-1:-1;;;45487:54:0;;42687:2:1;45487:54:0;;;42669:21:1;42726:2;42706:18;;;42699:30;42765:28;42745:18;;;42738:56;42811:18;;45487:54:0;42485:350:1;45487:54:0;45580:23;45594:9;45580:11;:23;:::i;:::-;45560:16;:43;;45552:83;;;;-1:-1:-1;;;45552:83:0;;43042:2:1;45552:83:0;;;43024:21:1;43081:2;43061:18;;;43054:30;43120:29;43100:18;;;43093:57;43167:18;;45552:83:0;42840:351:1;61608:182:0;61674:16;;61721:22;85807:9;61721:7;:22;:::i;:::-;61714:29;-1:-1:-1;61768:14:0;61714:29;61768:7;:14;:::i;:::-;61754:28;;61608:182;;;:::o;84737:329::-;84881:4;39487:10;-1:-1:-1;;;;;84943:16:0;;;;84939:62;;84961:40;84977:5;84984:7;84993;84961:15;:40::i;:::-;85012:21;85018:5;85025:7;85012:5;:21::i;:::-;-1:-1:-1;85051:7:0;;84737:329;-1:-1:-1;;;;84737:329:0:o;44558:614::-;44842:32;;;44813:26;44842:32;;;:19;:32;;;;;44813:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44893:13;:20;44917:1;44893:25;44885:86;;;;-1:-1:-1;;;44885:86:0;;43515:2:1;44885:86:0;;;43497:21:1;43554:2;43534:18;;;43527:30;43593:34;43573:18;;;43566:62;-1:-1:-1;;;43644:18:1;;;43637:46;43700:19;;44885:86:0;43313:412:1;44885:86:0;44982:47;45000:11;45013:8;:15;44982:17;:47::i;:::-;45040:124;;-1:-1:-1;;;45040:124:0;;-1:-1:-1;;;;;45040:10:0;:15;;;;45063:10;;45040:124;;45075:11;;45088:13;;45103:8;;45113:14;;45129:18;;45149:14;;45040:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44802:370;44558:614;;;;;;:::o;62342:366::-;62559:12;53141:1;62626:10;62638:9;-1:-1:-1;;;;;63493:23:0;;62675:14;62691:8;62591:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62584:116;;62342:366;;;;;;;:::o;82766:91::-;;;;:::o;61991:343::-;62073:10;;;62121:19;:8;62073:10;62121:16;:19::i;:::-;:30;;;:55;;;;;62155:8;:15;62174:2;62155:21;62121:55;62113:92;;;;-1:-1:-1;;;62113:92:0;;45509:2:1;62113:92:0;;;45491:21:1;45548:2;45528:18;;;45521:30;-1:-1:-1;;;45567:18:1;;;45560:54;45631:18;;62113:92:0;45307:348:1;62113:92:0;62223:22;:8;62242:2;62223:18;:22::i;:::-;62218:27;-1:-1:-1;62305:21:0;:8;62323:2;62305:17;:21::i;:::-;62294:32;;61991:343;;;:::o;61479:121::-;61544:4;61568:24;85807:9;-1:-1:-1;;;;;61568:24:0;;;:::i;85074:206::-;85204:4;85221:26;85227:10;85239:7;85221:5;:26::i;:::-;-1:-1:-1;85265:7:0;85074:206;-1:-1:-1;;85074:206:0:o;62716:658::-;62855:12;;;62937:20;62855:12;53141:1;63028:19;:8;62855:12;63028:16;:19::i;:::-;:39;;;63020:76;;;;-1:-1:-1;;;63020:76:0;;45509:2:1;63020:76:0;;;45491:21:1;45548:2;45528:18;;;45521:30;-1:-1:-1;;;45567:18:1;;;45560:54;45631:18;;63020:76:0;45307:348:1;63020:76:0;63114:22;:8;63133:2;63114:18;:22::i;:::-;63109:27;-1:-1:-1;63196:21:0;:8;63214:2;63196:17;:21::i;:::-;63185:32;-1:-1:-1;63235:22:0;:8;63254:2;63235:18;:22::i;:::-;63228:29;-1:-1:-1;63284:21:0;:8;63302:2;63284:17;:21::i;:::-;63268:37;;63326:40;63341:2;63363;63345:8;:15;:20;;;;:::i;:::-;63326:8;;:40;:14;:40::i;:::-;63316:50;;62716:658;;;;;;;:::o;45651:271::-;45733:13;45792:2;45767:14;:21;:27;;45759:68;;;;-1:-1:-1;;;45759:68:0;;45862:2:1;45759:68:0;;;45844:21:1;45901:2;45881:18;;;45874:30;45940;45920:18;;;45913:58;45988:18;;45759:68:0;45660:352:1;45759:68:0;-1:-1:-1;45900:2:0;45880:23;45874:30;;45651:271::o;79997:675::-;-1:-1:-1;;;;;80081:21:0;;80073:67;;;;-1:-1:-1;;;80073:67:0;;46219:2:1;80073:67:0;;;46201:21:1;46258:2;46238:18;;;46231:30;46297:34;46277:18;;;46270:62;-1:-1:-1;;;46348:18:1;;;46341:31;46389:19;;80073:67:0;46017:397:1;80073:67:0;-1:-1:-1;;;;;80240:18:0;;80215:22;80240:18;;;:9;:18;;;;;;80277:24;;;;80269:71;;;;-1:-1:-1;;;80269:71:0;;46621:2:1;80269:71:0;;;46603:21:1;46660:2;46640:18;;;46633:30;46699:34;46679:18;;;46672:62;-1:-1:-1;;;46750:18:1;;;46743:32;46792:19;;80269:71:0;46419:398:1;80269:71:0;-1:-1:-1;;;;;80376:18:0;;;;;;:9;:18;;;;;;;;80397:23;;;80376:44;;80515:12;:22;;;;;;;80566:37;3860:25:1;;;80376:18:0;;;80566:37;;3833:18:1;80566:37:0;;;;;;;82766:91;;;:::o;45930:402::-;46053:35;;;46029:21;46053:35;;;:22;:35;;;;;;;46103:21;;;46099:138;;-1:-1:-1;42729:5:0;46099:138;46271:16;46255:12;:32;;46247:77;;;;-1:-1:-1;;;46247:77:0;;47024:2:1;46247:77:0;;;47006:21:1;;;47043:18;;;47036:30;47102:34;47082:18;;;47075:62;47154:18;;46247:77:0;46822:356:1;23362:360:0;23438:7;23483:11;:6;23492:2;23483:11;:::i;:::-;23466:6;:13;:28;;23458:62;;;;-1:-1:-1;;;23458:62:0;;47385:2:1;23458:62:0;;;47367:21:1;47424:2;47404:18;;;47397:30;-1:-1:-1;;;47443:18:1;;;47436:51;47504:18;;23458:62:0;47183:345:1;23458:62:0;-1:-1:-1;23612:30:0;23628:4;23612:30;23606:37;-1:-1:-1;;;23602:71:0;;;23362:360::o;24683:311::-;24758:6;24802:10;:6;24811:1;24802:10;:::i;:::-;24785:6;:13;:27;;24777:60;;;;-1:-1:-1;;;24777:60:0;;47735:2:1;24777:60:0;;;47717:21:1;47774:2;47754:18;;;47747:30;-1:-1:-1;;;47793:18:1;;;47786:50;47853:18;;24777:60:0;47533:344:1;24777:60:0;-1:-1:-1;24918:29:0;24934:3;24918:29;24912:36;;24683:311::o;79116:548::-;-1:-1:-1;;;;;79200:21:0;;79192:65;;;;-1:-1:-1;;;79192:65:0;;48084:2:1;79192:65:0;;;48066:21:1;48123:2;48103:18;;;48096:30;48162:33;48142:18;;;48135:61;48213:18;;79192:65:0;47882:355:1;79192:65:0;79348:6;79332:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;79503:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;79558:37;3860:25:1;;;79558:37:0;;3833:18:1;79558:37:0;;;;;;;79116:548;;:::o;25966:326::-;26042:7;26087:11;:6;26096:2;26087:11;:::i;:::-;26070:6;:13;:28;;26062:62;;;;-1:-1:-1;;;26062:62:0;;48444:2:1;26062:62:0;;;48426:21:1;48483:2;48463:18;;;48456:30;-1:-1:-1;;;48502:18:1;;;48495:51;48563:18;;26062:62:0;48242:345:1;26062:62:0;-1:-1:-1;26212:30:0;26228:4;26212:30;26206:37;;25966:326::o;14:159:1:-;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:347::-;229:8;239:6;293:3;286:4;278:6;274:17;270:27;260:55;;311:1;308;301:12;260:55;-1:-1:-1;334:20:1;;-1:-1:-1;;;;;366:30:1;;363:50;;;409:1;406;399:12;363:50;446:4;438:6;434:17;422:29;;498:3;491:4;482:6;474;470:19;466:30;463:39;460:59;;;515:1;512;505:12;460:59;178:347;;;;;:::o;530:171::-;597:20;;-1:-1:-1;;;;;646:30:1;;636:41;;626:69;;691:1;688;681:12;706:862;812:6;820;828;836;844;852;905:3;893:9;884:7;880:23;876:33;873:53;;;922:1;919;912:12;873:53;945:28;963:9;945:28;:::i;:::-;935:38;;1024:2;1013:9;1009:18;996:32;-1:-1:-1;;;;;1088:2:1;1080:6;1077:14;1074:34;;;1104:1;1101;1094:12;1074:34;1143:58;1193:7;1184:6;1173:9;1169:22;1143:58;:::i;:::-;1220:8;;-1:-1:-1;1117:84:1;-1:-1:-1;1117:84:1;;-1:-1:-1;1274:37:1;1307:2;1292:18;;1274:37;:::i;:::-;1264:47;;1364:2;1353:9;1349:18;1336:32;1320:48;;1393:2;1383:8;1380:16;1377:36;;;1409:1;1406;1399:12;1377:36;;1448:60;1500:7;1489:8;1478:9;1474:24;1448:60;:::i;:::-;706:862;;;;-1:-1:-1;706:862:1;;-1:-1:-1;706:862:1;;1527:8;;706:862;-1:-1:-1;;;706:862:1:o;1573:286::-;1631:6;1684:2;1672:9;1663:7;1659:23;1655:32;1652:52;;;1700:1;1697;1690:12;1652:52;1726:23;;-1:-1:-1;;;;;;1778:32:1;;1768:43;;1758:71;;1825:1;1822;1815:12;2056:250;2141:1;2151:113;2165:6;2162:1;2159:13;2151:113;;;2241:11;;;2235:18;2222:11;;;2215:39;2187:2;2180:10;2151:113;;;-1:-1:-1;;2298:1:1;2280:16;;2273:27;2056:250::o;2311:271::-;2353:3;2391:5;2385:12;2418:6;2413:3;2406:19;2434:76;2503:6;2496:4;2491:3;2487:14;2480:4;2473:5;2469:16;2434:76;:::i;:::-;2564:2;2543:15;-1:-1:-1;;2539:29:1;2530:39;;;;2571:4;2526:50;;2311:271;-1:-1:-1;;2311:271:1:o;2587:220::-;2736:2;2725:9;2718:21;2699:4;2756:45;2797:2;2786:9;2782:18;2774:6;2756:45;:::i;2812:184::-;2870:6;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2962:28;2980:9;2962:28;:::i;3001:131::-;-1:-1:-1;;;;;3076:31:1;;3066:42;;3056:70;;3122:1;3119;3112:12;3137:315;3205:6;3213;3266:2;3254:9;3245:7;3241:23;3237:32;3234:52;;;3282:1;3279;3272:12;3234:52;3321:9;3308:23;3340:31;3365:5;3340:31;:::i;:::-;3390:5;3442:2;3427:18;;;;3414:32;;-1:-1:-1;;;3137:315:1:o;3457:252::-;3524:6;3532;3585:2;3573:9;3564:7;3560:23;3556:32;3553:52;;;3601:1;3598;3591:12;3553:52;3624:28;3642:9;3624:28;:::i;3896:456::-;3973:6;3981;3989;4042:2;4030:9;4021:7;4017:23;4013:32;4010:52;;;4058:1;4055;4048:12;4010:52;4097:9;4084:23;4116:31;4141:5;4116:31;:::i;:::-;4166:5;-1:-1:-1;4223:2:1;4208:18;;4195:32;4236:33;4195:32;4236:33;:::i;:::-;3896:456;;4288:7;;-1:-1:-1;;;4342:2:1;4327:18;;;;4314:32;;3896:456::o;4565:180::-;4624:6;4677:2;4665:9;4656:7;4652:23;4648:32;4645:52;;;4693:1;4690;4683:12;4645:52;-1:-1:-1;4716:23:1;;4565:180;-1:-1:-1;4565:180:1:o;4750:160::-;4815:20;;4871:13;;4864:21;4854:32;;4844:60;;4900:1;4897;4890:12;4915:180;4971:6;5024:2;5012:9;5003:7;4999:23;4995:32;4992:52;;;5040:1;5037;5030:12;4992:52;5063:26;5079:9;5063:26;:::i;5289:687::-;5391:6;5399;5407;5415;5423;5431;5484:3;5472:9;5463:7;5459:23;5455:33;5452:53;;;5501:1;5498;5491:12;5452:53;5524:28;5542:9;5524:28;:::i;:::-;5514:38;;5599:2;5588:9;5584:18;5571:32;5561:42;;5650:2;5639:9;5635:18;5622:32;5612:42;;5673:35;5704:2;5693:9;5689:18;5673:35;:::i;:::-;5663:45;;5759:3;5748:9;5744:19;5731:33;-1:-1:-1;;;;;5779:6:1;5776:30;5773:50;;;5819:1;5816;5809:12;5773:50;5858:58;5908:7;5899:6;5888:9;5884:22;5858:58;:::i;6234:481::-;6312:6;6320;6328;6381:2;6369:9;6360:7;6356:23;6352:32;6349:52;;;6397:1;6394;6387:12;6349:52;6420:28;6438:9;6420:28;:::i;:::-;6410:38;;6499:2;6488:9;6484:18;6471:32;-1:-1:-1;;;;;6518:6:1;6515:30;6512:50;;;6558:1;6555;6548:12;6512:50;6597:58;6647:7;6638:6;6627:9;6623:22;6597:58;:::i;:::-;6234:481;;6674:8;;-1:-1:-1;6571:84:1;;-1:-1:-1;;;;6234:481:1:o;6720:127::-;6781:10;6776:3;6772:20;6769:1;6762:31;6812:4;6809:1;6802:15;6836:4;6833:1;6826:15;6852:275;6923:2;6917:9;6988:2;6969:13;;-1:-1:-1;;6965:27:1;6953:40;;-1:-1:-1;;;;;7008:34:1;;7044:22;;;7005:62;7002:88;;;7070:18;;:::i;:::-;7106:2;7099:22;6852:275;;-1:-1:-1;6852:275:1:o;7132:186::-;7180:4;-1:-1:-1;;;;;7205:6:1;7202:30;7199:56;;;7235:18;;:::i;:::-;-1:-1:-1;7301:2:1;7280:15;-1:-1:-1;;7276:29:1;7307:4;7272:40;;7132:186::o;7323:815::-;7407:6;7415;7423;7476:2;7464:9;7455:7;7451:23;7447:32;7444:52;;;7492:1;7489;7482:12;7444:52;7515:28;7533:9;7515:28;:::i;:::-;7505:38;;7594:2;7583:9;7579:18;7566:32;-1:-1:-1;;;;;7613:6:1;7610:30;7607:50;;;7653:1;7650;7643:12;7607:50;7676:22;;7729:4;7721:13;;7717:27;-1:-1:-1;7707:55:1;;7758:1;7755;7748:12;7707:55;7794:2;7781:16;7819:48;7835:31;7863:2;7835:31;:::i;:::-;7819:48;:::i;:::-;7890:2;7883:5;7876:17;7930:7;7925:2;7920;7916;7912:11;7908:20;7905:33;7902:53;;;7951:1;7948;7941:12;7902:53;8006:2;8001;7997;7993:11;7988:2;7981:5;7977:14;7964:45;8050:1;8045:2;8040;8033:5;8029:14;8025:23;8018:34;8071:5;8061:15;;;;;8095:37;8128:2;8117:9;8113:18;8095:37;:::i;:::-;8085:47;;7323:815;;;;;:::o;8325:160::-;8390:5;8435:2;8426:6;8421:3;8417:16;8413:25;8410:45;;;8451:1;8448;8441:12;8410:45;-1:-1:-1;8473:6:1;8325:160;-1:-1:-1;8325:160:1:o;8490:709::-;8614:6;8622;8630;8638;8646;8699:3;8687:9;8678:7;8674:23;8670:33;8667:53;;;8716:1;8713;8706:12;8667:53;8755:9;8742:23;8774:31;8799:5;8774:31;:::i;:::-;8824:5;-1:-1:-1;8848:37:1;8881:2;8866:18;;8848:37;:::i;:::-;8838:47;;8932:2;8921:9;8917:18;8904:32;8894:42;;8983:2;8972:9;8968:18;8955:32;8945:42;;9038:3;9027:9;9023:19;9010:33;-1:-1:-1;;;;;9058:6:1;9055:30;9052:50;;;9098:1;9095;9088:12;9052:50;9121:72;9185:7;9176:6;9165:9;9161:22;9121:72;:::i;:::-;9111:82;;;8490:709;;;;;;;;:::o;9204:247::-;9263:6;9316:2;9304:9;9295:7;9291:23;9287:32;9284:52;;;9332:1;9329;9322:12;9284:52;9371:9;9358:23;9390:31;9415:5;9390:31;:::i;9679:1091::-;9831:6;9839;9847;9855;9863;9871;9879;9887;9940:3;9928:9;9919:7;9915:23;9911:33;9908:53;;;9957:1;9954;9947:12;9908:53;9996:9;9983:23;10015:31;10040:5;10015:31;:::i;:::-;10065:5;-1:-1:-1;10089:37:1;10122:2;10107:18;;10089:37;:::i;:::-;10079:47;;10173:2;10162:9;10158:18;10145:32;10135:42;;10224:2;10213:9;10209:18;10196:32;10186:42;;10279:3;10268:9;10264:19;10251:33;-1:-1:-1;;;;;10344:2:1;10336:6;10333:14;10330:34;;;10360:1;10357;10350:12;10330:34;10399:58;10449:7;10440:6;10429:9;10425:22;10399:58;:::i;:::-;10476:8;;-1:-1:-1;10373:84:1;-1:-1:-1;10373:84:1;;-1:-1:-1;10530:38:1;10563:3;10548:19;;10530:38;:::i;:::-;10520:48;;10621:3;10610:9;10606:19;10593:33;10577:49;;10651:2;10641:8;10638:16;10635:36;;;10667:1;10664;10657:12;10635:36;;10690:74;10756:7;10745:8;10734:9;10730:24;10690:74;:::i;:::-;10680:84;;;9679:1091;;;;;;;;;;;:::o;10775:256::-;10841:6;10849;10902:2;10890:9;10881:7;10877:23;10873:32;10870:52;;;10918:1;10915;10908:12;10870:52;10941:28;10959:9;10941:28;:::i;:::-;10931:38;;10988:37;11021:2;11010:9;11006:18;10988:37;:::i;:::-;10978:47;;10775:256;;;;;:::o;11036:1069::-;11166:6;11174;11182;11190;11198;11206;11214;11222;11230;11283:3;11271:9;11262:7;11258:23;11254:33;11251:53;;;11300:1;11297;11290:12;11251:53;11323:28;11341:9;11323:28;:::i;:::-;11313:38;;11398:2;11387:9;11383:18;11370:32;11360:42;;11449:2;11438:9;11434:18;11421:32;11411:42;;11504:2;11493:9;11489:18;11476:32;-1:-1:-1;;;;;11568:2:1;11560:6;11557:14;11554:34;;;11584:1;11581;11574:12;11554:34;11623:58;11673:7;11664:6;11653:9;11649:22;11623:58;:::i;:::-;11700:8;;-1:-1:-1;11597:84:1;-1:-1:-1;11597:84:1;;-1:-1:-1;11754:38:1;11787:3;11772:19;;11754:38;:::i;:::-;11744:48;;11811:36;11842:3;11831:9;11827:19;11811:36;:::i;:::-;11801:46;;11900:3;11889:9;11885:19;11872:33;11856:49;;11930:2;11920:8;11917:16;11914:36;;;11946:1;11943;11936:12;11914:36;;11985:60;12037:7;12026:8;12015:9;12011:24;11985:60;:::i;:::-;11959:86;;12064:8;12054:18;;;12091:8;12081:18;;;11036:1069;;;;;;;;;;;:::o;12344:315::-;12409:6;12417;12470:2;12458:9;12449:7;12445:23;12441:32;12438:52;;;12486:1;12483;12476:12;12438:52;12525:9;12512:23;12544:31;12569:5;12544:31;:::i;:::-;12594:5;-1:-1:-1;12618:35:1;12649:2;12634:18;;12618:35;:::i;12664:622::-;12759:6;12767;12775;12783;12791;12844:3;12832:9;12823:7;12819:23;12815:33;12812:53;;;12861:1;12858;12851:12;12812:53;12884:28;12902:9;12884:28;:::i;:::-;12874:38;;12931:37;12964:2;12953:9;12949:18;12931:37;:::i;:::-;12921:47;;13015:2;13004:9;13000:18;12987:32;12977:42;;13070:2;13059:9;13055:18;13042:32;-1:-1:-1;;;;;13089:6:1;13086:30;13083:50;;;13129:1;13126;13119:12;13083:50;13168:58;13218:7;13209:6;13198:9;13194:22;13168:58;:::i;:::-;12664:622;;;;-1:-1:-1;12664:622:1;;-1:-1:-1;13245:8:1;;13142:84;12664:622;-1:-1:-1;;;12664:622:1:o;13291:388::-;13359:6;13367;13420:2;13408:9;13399:7;13395:23;13391:32;13388:52;;;13436:1;13433;13426:12;13388:52;13475:9;13462:23;13494:31;13519:5;13494:31;:::i;:::-;13544:5;-1:-1:-1;13601:2:1;13586:18;;13573:32;13614:33;13573:32;13614:33;:::i;:::-;13666:7;13656:17;;;13291:388;;;;;:::o;13684:324::-;13759:6;13767;13775;13828:2;13816:9;13807:7;13803:23;13799:32;13796:52;;;13844:1;13841;13834:12;13796:52;13867:28;13885:9;13867:28;:::i;:::-;13857:38;;13914:37;13947:2;13936:9;13932:18;13914:37;:::i;:::-;13904:47;;13998:2;13987:9;13983:18;13970:32;13960:42;;13684:324;;;;;:::o;14013:248::-;14081:6;14089;14142:2;14130:9;14121:7;14117:23;14113:32;14110:52;;;14158:1;14155;14148:12;14110:52;-1:-1:-1;;14181:23:1;;;14251:2;14236:18;;;14223:32;;-1:-1:-1;14013:248:1:o;14266:1205::-;14408:6;14416;14424;14432;14440;14448;14456;14464;14472;14480;14533:3;14521:9;14512:7;14508:23;14504:33;14501:53;;;14550:1;14547;14540:12;14501:53;14573:28;14591:9;14573:28;:::i;:::-;14563:38;;14652:2;14641:9;14637:18;14624:32;-1:-1:-1;;;;;14716:2:1;14708:6;14705:14;14702:34;;;14732:1;14729;14722:12;14702:34;14771:58;14821:7;14812:6;14801:9;14797:22;14771:58;:::i;:::-;14848:8;;-1:-1:-1;14745:84:1;-1:-1:-1;14745:84:1;;-1:-1:-1;14902:37:1;14935:2;14920:18;;14902:37;:::i;:::-;14892:47;;14986:2;14975:9;14971:18;14958:32;14948:42;;15040:3;15029:9;15025:19;15012:33;14999:46;;15054:31;15079:5;15054:31;:::i;:::-;15104:5;;-1:-1:-1;15156:3:1;15141:19;;15128:33;;-1:-1:-1;15214:3:1;15199:19;;15186:33;;15231:16;;;15228:36;;;15260:1;15257;15250:12;15228:36;;15299:60;15351:7;15340:8;15329:9;15325:24;15299:60;:::i;:::-;15273:86;;15378:8;15368:18;;;15405:8;15395:18;;;15460:3;15449:9;15445:19;15432:33;15422:43;;14266:1205;;;;;;;;;;;;;:::o;15476:460::-;15560:6;15568;15576;15584;15637:3;15625:9;15616:7;15612:23;15608:33;15605:53;;;15654:1;15651;15644:12;15605:53;15677:28;15695:9;15677:28;:::i;:::-;15667:38;;15724:37;15757:2;15746:9;15742:18;15724:37;:::i;:::-;15714:47;;15811:2;15800:9;15796:18;15783:32;15824:31;15849:5;15824:31;:::i;:::-;15476:460;;;;-1:-1:-1;15874:5:1;;15926:2;15911:18;15898:32;;-1:-1:-1;;15476:460:1:o;16300:380::-;16379:1;16375:12;;;;16422;;;16443:61;;16497:4;16489:6;16485:17;16475:27;;16443:61;16550:2;16542:6;16539:14;16519:18;16516:38;16513:161;;16596:10;16591:3;16587:20;16584:1;16577:31;16631:4;16628:1;16621:15;16659:4;16656:1;16649:15;16685:271;16868:6;16860;16855:3;16842:33;16824:3;16894:16;;16919:13;;;16894:16;16685:271;-1:-1:-1;16685:271:1:o;17908:127::-;17969:10;17964:3;17960:20;17957:1;17950:31;18000:4;17997:1;17990:15;18024:4;18021:1;18014:15;18040:125;18105:9;;;18126:10;;;18123:36;;;18139:18;;:::i;18517:266::-;18605:6;18600:3;18593:19;18657:6;18650:5;18643:4;18638:3;18634:14;18621:43;-1:-1:-1;18709:1:1;18684:16;;;18702:4;18680:27;;;18673:38;;;;18765:2;18744:15;;;-1:-1:-1;;18740:29:1;18731:39;;;18727:50;;18517:266::o;18788:326::-;18983:6;18975;18971:19;18960:9;18953:38;19027:2;19022;19011:9;19007:18;19000:30;18934:4;19047:61;19104:2;19093:9;19089:18;19081:6;19073;19047:61;:::i;19786:521::-;19863:4;19869:6;19929:11;19916:25;20023:2;20019:7;20008:8;19992:14;19988:29;19984:43;19964:18;19960:68;19950:96;;20042:1;20039;20032:12;19950:96;20069:33;;20121:20;;;-1:-1:-1;;;;;;20153:30:1;;20150:50;;;20196:1;20193;20186:12;20150:50;20229:4;20217:17;;-1:-1:-1;20260:14:1;20256:27;;;20246:38;;20243:58;;;20297:1;20294;20287:12;20670:128;20737:9;;;20758:11;;;20755:37;;;20772:18;;:::i;21209:360::-;21420:6;21412;21407:3;21394:33;21490:2;21486:15;;;;-1:-1:-1;;21482:53:1;21446:16;;21471:65;;;21560:2;21552:11;;21209:360;-1:-1:-1;21209:360:1:o;21699:517::-;21800:2;21795:3;21792:11;21789:421;;;21836:5;21833:1;21826:16;21880:4;21877:1;21867:18;21950:2;21938:10;21934:19;21931:1;21927:27;21921:4;21917:38;21986:4;21974:10;21971:20;21968:47;;;-1:-1:-1;22009:4:1;21968:47;22064:2;22059:3;22055:12;22052:1;22048:20;22042:4;22038:31;22028:41;;22119:81;22137:2;22130:5;22127:13;22119:81;;;22196:1;22182:16;;22163:1;22152:13;22119:81;;22392:1341;22516:3;22510:10;-1:-1:-1;;;;;22535:6:1;22532:30;22529:56;;;22565:18;;:::i;:::-;22594:96;22683:6;22643:38;22675:4;22669:11;22643:38;:::i;:::-;22637:4;22594:96;:::i;:::-;22745:4;;22802:2;22791:14;;22819:1;22814:662;;;;23520:1;23537:6;23534:89;;;-1:-1:-1;23589:19:1;;;23583:26;23534:89;-1:-1:-1;;22349:1:1;22345:11;;;22341:24;22337:29;22327:40;22373:1;22369:11;;;22324:57;23636:81;;22784:943;;22814:662;21646:1;21639:14;;;21683:4;21670:18;;-1:-1:-1;;22850:20:1;;;22967:236;22981:7;22978:1;22975:14;22967:236;;;23070:19;;;23064:26;23049:42;;23162:27;;;;23130:1;23118:14;;;;22997:19;;22967:236;;;22971:3;23231:6;23222:7;23219:19;23216:201;;;23292:19;;;23286:26;-1:-1:-1;;23375:1:1;23371:14;;;23387:3;23367:24;23363:37;23359:42;23344:58;23329:74;;23216:201;-1:-1:-1;;;;;23463:1:1;23447:14;;;23443:22;23430:36;;-1:-1:-1;22392:1341:1:o;23738:498::-;23938:4;23967:6;24012:2;24004:6;24000:15;23989:9;23982:34;24064:2;24056:6;24052:15;24047:2;24036:9;24032:18;24025:43;;24104:6;24099:2;24088:9;24084:18;24077:34;24147:3;24142:2;24131:9;24127:18;24120:31;24168:62;24225:3;24214:9;24210:19;24202:6;24194;24168:62;:::i;:::-;24160:70;23738:498;-1:-1:-1;;;;;;;23738:498:1:o;25047:493::-;25296:6;25288;25284:19;25273:9;25266:38;25340:3;25335:2;25324:9;25320:18;25313:31;25247:4;25361:62;25418:3;25407:9;25403:19;25395:6;25387;25361:62;:::i;:::-;-1:-1:-1;;;;;25459:31:1;;;;25454:2;25439:18;;25432:59;-1:-1:-1;25522:2:1;25507:18;25500:34;25353:70;25047:493;-1:-1:-1;;;25047:493:1:o;26622:753::-;26955:6;26947;26943:19;26932:9;26925:38;26999:3;26994:2;26983:9;26979:18;26972:31;26906:4;27026:62;27083:3;27072:9;27068:19;27060:6;27052;27026:62;:::i;:::-;-1:-1:-1;;;;;27128:6:1;27124:31;27119:2;27108:9;27104:18;27097:59;27192:6;27187:2;27176:9;27172:18;27165:34;27236:6;27230:3;27219:9;27215:19;27208:35;27292:9;27284:6;27280:22;27274:3;27263:9;27259:19;27252:51;27320:49;27362:6;27354;27346;27320:49;:::i;:::-;27312:57;26622:753;-1:-1:-1;;;;;;;;;;;26622:753:1:o;27380:1194::-;-1:-1:-1;;;;;27497:3:1;27494:27;27491:53;;;27524:18;;:::i;:::-;27553:93;27642:3;27602:38;27634:4;27628:11;27602:38;:::i;:::-;27596:4;27553:93;:::i;:::-;27672:1;27697:2;27692:3;27689:11;27714:1;27709:607;;;;28360:1;28377:3;28374:93;;;-1:-1:-1;28433:19:1;;;28420:33;28374:93;-1:-1:-1;;22349:1:1;22345:11;;;22341:24;22337:29;22327:40;22373:1;22369:11;;;22324:57;28480:78;;27682:886;;27709:607;21646:1;21639:14;;;21683:4;21670:18;;-1:-1:-1;;27745:17:1;;;27859:229;27873:7;27870:1;27867:14;27859:229;;;27962:19;;;27949:33;27934:49;;28069:4;28054:20;;;;28022:1;28010:14;;;;27889:12;27859:229;;;27863:3;28116;28107:7;28104:16;28101:159;;;28240:1;28236:6;28230:3;28224;28221:1;28217:11;28213:21;28209:34;28205:39;28192:9;28187:3;28183:19;28170:33;28166:79;28158:6;28151:95;28101:159;;;28303:1;28297:3;28294:1;28290:11;28286:19;28280:4;28273:33;27682:886;;27380:1194;;;:::o;29447:647::-;29526:6;29579:2;29567:9;29558:7;29554:23;29550:32;29547:52;;;29595:1;29592;29585:12;29547:52;29628:9;29622:16;-1:-1:-1;;;;;29653:6:1;29650:30;29647:50;;;29693:1;29690;29683:12;29647:50;29716:22;;29769:4;29761:13;;29757:27;-1:-1:-1;29747:55:1;;29798:1;29795;29788:12;29747:55;29827:2;29821:9;29852:48;29868:31;29896:2;29868:31;:::i;29852:48::-;29923:2;29916:5;29909:17;29963:7;29958:2;29953;29949;29945:11;29941:20;29938:33;29935:53;;;29984:1;29981;29974:12;29935:53;29997:67;30061:2;30056;30049:5;30045:14;30040:2;30036;30032:11;29997:67;:::i;30099:557::-;30356:6;30348;30344:19;30333:9;30326:38;30400:3;30395:2;30384:9;30380:18;30373:31;30307:4;30427:46;30468:3;30457:9;30453:19;30445:6;30427:46;:::i;:::-;-1:-1:-1;;;;;30513:6:1;30509:31;30504:2;30493:9;30489:18;30482:59;30589:9;30581:6;30577:22;30572:2;30561:9;30557:18;30550:50;30617:33;30643:6;30635;30617:33;:::i;33640:168::-;33713:9;;;33744;;33761:15;;;33755:22;;33741:37;33731:71;;33782:18;;:::i;33813:127::-;33874:10;33869:3;33865:20;33862:1;33855:31;33905:4;33902:1;33895:15;33929:4;33926:1;33919:15;33945:120;33985:1;34011;34001:35;;34016:18;;:::i;:::-;-1:-1:-1;34050:9:1;;33945:120::o;34070:135::-;34109:3;34130:17;;;34127:43;;34150:18;;:::i;:::-;-1:-1:-1;34197:1:1;34186:13;;34070:135::o;34210:642::-;34491:6;34479:19;;34461:38;;-1:-1:-1;;;;;34535:32:1;;34530:2;34515:18;;34508:60;34555:3;34599:2;34584:18;;34577:31;;;-1:-1:-1;;34631:46:1;;34657:19;;34649:6;34631:46;:::i;:::-;34727:6;34720:14;34713:22;34708:2;34697:9;34693:18;34686:50;34785:9;34777:6;34773:22;34767:3;34756:9;34752:19;34745:51;34813:33;34839:6;34831;34813:33;:::i;:::-;34805:41;34210:642;-1:-1:-1;;;;;;;;34210:642:1:o;34857:245::-;34936:6;34944;34997:2;34985:9;34976:7;34972:23;34968:32;34965:52;;;35013:1;35010;35003:12;34965:52;-1:-1:-1;;35036:16:1;;35092:2;35077:18;;;35071:25;35036:16;;35071:25;;-1:-1:-1;34857:245:1:o;36507:127::-;36568:10;36563:3;36559:20;36556:1;36549:31;36599:4;36596:1;36589:15;36623:4;36620:1;36613:15;36639:251;36709:6;36762:2;36750:9;36741:7;36737:23;36733:32;36730:52;;;36778:1;36775;36768:12;36730:52;36810:9;36804:16;36829:31;36854:5;36829:31;:::i;36895:980::-;37157:4;37205:3;37194:9;37190:19;37236:6;37225:9;37218:25;37262:2;37300:6;37295:2;37284:9;37280:18;37273:34;37343:3;37338:2;37327:9;37323:18;37316:31;37367:6;37402;37396:13;37433:6;37425;37418:22;37471:3;37460:9;37456:19;37449:26;;37510:2;37502:6;37498:15;37484:29;;37531:1;37541:195;37555:6;37552:1;37549:13;37541:195;;;37620:13;;-1:-1:-1;;;;;37616:39:1;37604:52;;37711:15;;;;37676:12;;;;37652:1;37570:9;37541:195;;;-1:-1:-1;;;;;;;37792:32:1;;;;37787:2;37772:18;;37765:60;-1:-1:-1;;;37856:3:1;37841:19;37834:35;37753:3;36895:980;-1:-1:-1;;;36895:980:1:o;37880:287::-;38009:3;38047:6;38041:13;38063:66;38122:6;38117:3;38110:4;38102:6;38098:17;38063:66;:::i;:::-;38145:16;;;;;37880:287;-1:-1:-1;;37880:287:1:o;38172:719::-;38475:6;38467;38463:19;38452:9;38445:38;38519:3;38514:2;38503:9;38499:18;38492:31;38426:4;38546:46;38587:3;38576:9;38572:19;38564:6;38546:46;:::i;:::-;-1:-1:-1;;;;;38632:6:1;38628:31;38623:2;38612:9;38608:18;38601:59;38708:9;38700:6;38696:22;38691:2;38680:9;38676:18;38669:50;38742:33;38768:6;38760;38742:33;:::i;:::-;38728:47;;38824:9;38816:6;38812:22;38806:3;38795:9;38791:19;38784:51;38852:33;38878:6;38870;38852:33;:::i;41201:891::-;41521:4;41550:3;41592:6;41584;41580:19;41569:9;41562:38;41636:2;41631;41620:9;41616:18;41609:30;41662:45;41703:2;41692:9;41688:18;41680:6;41662:45;:::i;:::-;-1:-1:-1;;;;;41743:31:1;;41738:2;41723:18;;41716:59;41806:2;41791:18;;41784:34;;;-1:-1:-1;;;;;41855:32:1;;41849:3;41834:19;;41827:61;41875:3;41904:19;;41897:35;;;41969:22;;;41963:3;41948:19;;41941:51;41648:59;-1:-1:-1;42009:33:1;41648:59;42027:6;42009:33;:::i;:::-;42001:41;;;42079:6;42073:3;42062:9;42058:19;42051:35;41201:891;;;;;;;;;;;:::o;42097:383::-;42298:2;42287:9;42280:21;42261:4;42318:45;42359:2;42348:9;42344:18;42336:6;42318:45;:::i;:::-;-1:-1:-1;;;;;42399:31:1;;;;42394:2;42379:18;;42372:59;-1:-1:-1;42462:2:1;42447:18;42440:34;42310:53;42097:383;-1:-1:-1;42097:383:1:o;43196:112::-;43228:1;43254;43244:35;;43259:18;;:::i;:::-;-1:-1:-1;43293:9:1;;43196:112::o;43730:840::-;44079:6;44071;44067:19;44056:9;44049:38;44123:3;44118:2;44107:9;44103:18;44096:31;44030:4;44150:46;44191:3;44180:9;44176:19;44168:6;44150:46;:::i;:::-;44244:9;44236:6;44232:22;44227:2;44216:9;44212:18;44205:50;44278:33;44304:6;44296;44278:33;:::i;:::-;-1:-1:-1;;;;;44385:15:1;;;44380:2;44365:18;;44358:43;44438:15;;44432:3;44417:19;;44410:44;44491:22;;;44338:3;44470:19;;44463:51;44264:47;-1:-1:-1;44531:33:1;44264:47;44549:6;44531:33;:::i;:::-;44523:41;43730:840;-1:-1:-1;;;;;;;;;43730:840:1:o;44575:727::-;44897:3;44892;44888:13;44879:6;44874:3;44870:16;44866:36;44861:3;44854:49;44932:6;44928:1;44923:3;44919:11;44912:27;44836:3;-1:-1:-1;;;;;44962:3:1;44958:28;45038:2;45029:6;45024:3;45020:16;45016:25;45011:2;45006:3;45002:12;44995:47;45072:6;45067:2;45062:3;45058:12;45051:28;45131:2;45122:6;45117:3;45113:16;45109:25;45104:2;45099:3;45095:12;45088:47;;45164:6;45158:13;45180:75;45248:6;45243:2;45238:3;45234:12;45227:4;45219:6;45215:17;45180:75;:::i;:::-;45275:16;;;;45293:2;45271:25;;44575:727;-1:-1:-1;;;;;;;44575:727:1:o

Swarm Source

ipfs://e53ab7693f14237317e29f8462de245d91c629598bfc3f8569822bd3a59786e7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.