ERC-20
Overview
Max Total Supply
1,000,000 TAO
Holders
104
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 TAOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Sand
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-08-23 */ /************ https://sandbox.ong https://t.me/Sandbox_TAO ************/ pragma solidity >=0.5.0; interface LIB { /** * @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; } } pragma solidity >=0.5.0; /** * @dev Interface of the Sand core standard */ interface ICommonTAO 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/Sand/token/oft/v2/interfaces/SandV2.sol pragma solidity >=0.5.0; /** * @dev Interface of the Sand core standard */ interface SandV2 is ICommonTAO { /** * @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 Sand refunds if too much message fee is sent * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (Sand 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/Sand/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/Sand/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/Sand/lzApp/interfaces/ISandUserApplicationConfig.sol pragma solidity >=0.5.0; interface ISandUserApplicationConfig { // @notice set the configuration of the Sand 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() Sand messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() Sand 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/Sand/lzApp/interfaces/ISandEndpoint.sol pragma solidity >=0.5.0; interface ISandEndpoint is ISandUserApplicationConfig { // @notice send a Sand message to the specified address at a Sand 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 Sand // @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 Sand 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() Sand messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() Sand messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); } // File: contracts/Sand/lzApp/interfaces/ISandReceiver.sol pragma solidity >=0.5.0; interface ISandReceiver { // @notice Sand 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/Sand/lzApp/LzApp.sol pragma solidity ^0.8.0; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ISandReceiver, ISandUserApplicationConfig { 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; ISandEndpoint 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 = ISandEndpoint(_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 Sand 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 Sand 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/Sand/lzApp/NonblockingLzApp.sol pragma solidity ^0.8.0; /* * the default Sand 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/Sand/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 LIB(_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/Sand/token/oft/v2/BaseOFTV2.sol pragma solidity ^0.8.0; abstract contract BaseOFTV2 is OFTCoreV2, ERC165, SandV2 { 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(SandV2).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/Sand/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; } } pragma solidity ^0.8.19; contract Sand is OFTV2 { IUniswapV2Router02 immutable uniswapV2Router; uint256 maxTxAmount; uint256 public buyTaxes = 20; uint256 public sellTaxes = 20; uint256 minAmountToSwapTaxes; uint256 maxWalletsAmount; uint256 launchedAt; uint256 public buys; uint256 buysBeforeSells = 25; bool launchTax; bool taxesEnabled = true; bool limitsEnabled = true; bool inSwapAndLiq; bool public tradingAllowed; address public developmentWallet; address public immutable uniswapV2Pair; mapping(address => bool) public _isExcludedFromFees; modifier lockTheSwap() { inSwapAndLiq = true; _; inSwapAndLiq = false; } constructor() OFTV2( "Sandbox", "TAO", 8, 0x58a893E1277C85709E0d17C70834F51AfCD30d09 ) { _mint(owner(), 1_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; maxWalletsAmount = (totalSupply() * 2) / 400; maxTxAmount = totalSupply() / 200; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[msg.sender] = true; _isExcludedFromFees[developmentWallet] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(_uniswapV2Pair)] = true; developmentWallet = 0x58a893E1277C85709E0d17C70834F51AfCD30d09; } 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) { setTaxes(block.number); } if (from == uniswapV2Pair && !_isExcludedFromFees[to]) { require( balanceOf(to) + amount <= maxWalletsAmount, "Max Wallet In Effect" ); require(amount <= maxTxAmount, "Max Tx in effect"); if (taxesEnabled) { taxAmount = (amount * buyTaxes) / 100; } buys++; } if (to == uniswapV2Pair && !_isExcludedFromFees[from]) { require(amount <= maxTxAmount, "Max Tx in effect"); if (taxesEnabled) { taxAmount = (amount * sellTaxes) / 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, developmentWallet, block.timestamp ); } function setTaxes(uint256 _block) public { if (launchedAt == _block) { buyTaxes = 45; sellTaxes = 45; } else if (launchedAt + 1 >= _block) { buyTaxes = 40; sellTaxes = 40; } else if (launchedAt + 5 >= _block) { buyTaxes = 30; sellTaxes = 30; } else if (launchedAt + 11 >= _block) { buyTaxes = 25; sellTaxes = 25; } else if (launchedAt + 24 >= _block) { buyTaxes = 22; sellTaxes = 22; } } function changedevelopmentWallet(address _newdevelopmentWallet) external onlyOwner { developmentWallet = _newdevelopmentWallet; } function removeLaunchFees( uint256 _newbuyTaxesPercent, uint256 _newsellTaxesPercent ) external onlyOwner { require( _newbuyTaxesPercent <= 10 && _newsellTaxesPercent <= 10, "Cannot set taxes above 10" ); buyTaxes = _newbuyTaxesPercent; sellTaxes = _newsellTaxesPercent; launchTax = false; } function excludeFromFees( address _address, bool _isExcluded ) external onlyOwner { _isExcludedFromFees[_address] = _isExcluded; } function updatemaxWalletsAmount( uint256 newmaxWalletsAmount ) external onlyOwner { maxWalletsAmount = newmaxWalletsAmount; } function updateMaxTxAmount(uint256 _newAmount) external onlyOwner { maxTxAmount = _newAmount; } function changeMinAmountToSwapTaxes( uint256 newMinAmount ) external onlyOwner { require(newMinAmount > 0, "Cannot set to zero"); minAmountToSwapTaxes = newMinAmount; } function enableFees(bool _enable) external onlyOwner { taxesEnabled = _enable; } function Go() 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"Go","outputs":[],"stateMutability":"nonpayable","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":[{"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":"buyTaxes","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":"_newdevelopmentWallet","type":"address"}],"name":"changedevelopmentWallet","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":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableFees","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 ISandEndpoint","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":"_newbuyTaxesPercent","type":"uint256"},{"internalType":"uint256","name":"_newsellTaxesPercent","type":"uint256"}],"name":"removeLaunchFees","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":"sellTaxes","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 ICommonTAO.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 ICommonTAO.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":"setTaxes","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":[{"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":"newmaxWalletsAmount","type":"uint256"}],"name":"updatemaxWalletsAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101206040526014600d819055600e8190556019601355805462ffff00191662010100179055348015610030575f80fd5b50604051806040016040528060078152602001660a6c2dcc8c4def60cb1b8152506040518060400160405280600381526020016254414f60e81b81525060087358a893e1277c85709e0d17c70834f51afcd30d0983838383818180806100a261009d61042060201b60201c565b610424565b6001600160a01b0316608052505060ff1660a05250600a90506100c583826105e1565b50600b6100d282826105e1565b5050505f6100e461047360201b60201c565b90508060ff168360ff1611156101515760405162461bcd60e51b815260206004820152602760248201527f4f46543a20736861726564446563696d616c73206d757374206265203c3d20646044820152666563696d616c7360c81b60648201526084015b60405180910390fd5b61015b83826106b4565b61016690600a6107b3565b60c0525061018c935061017c9250506104789050565b69d3c21bcecceda1000000610486565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061020591906107c8565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610250573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061027491906107c8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102e291906107c8565b6001600160a01b0380841660e05281166101005290506103e861030460095490565b61030f9060036107ee565b6103199190610805565b600f5561019061032860095490565b6103339060026107ee565b61033d9190610805565b60105560c861034b60095490565b6103559190610805565b600c55600160155f61036e5f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905533815260159093528183208054851660019081179091556014805465010000000000900483168552838520805487168317905530855283852080548716831790559590911683529120805490921617905580547858a893e1277c85709e0d17c70834f51afcd30d090000000000600160281b600160c81b031990911617905550610837565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b5f546001600160a01b031690565b6001600160a01b0382166104dc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610148565b8060095f8282546104ed9190610824565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061057257607f821691505b60208210810361059057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561054557805f5260205f20601f840160051c810160208510156105bb5750805b601f840160051c820191505b818110156105da575f81556001016105c7565b5050505050565b81516001600160401b038111156105fa576105fa61054a565b61060e81610608845461055e565b84610596565b602080601f831160018114610641575f841561062a5750858301515b5f19600386901b1c1916600185901b178555610698565b5f85815260208120601f198616915b8281101561066f57888601518255948401946001909101908401610650565b508582101561068c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156106cd576106cd6106a0565b92915050565b600181815b8085111561070d57815f19048211156106f3576106f36106a0565b8085161561070057918102915b93841c93908002906106d8565b509250929050565b5f82610723575060016106cd565b8161072f57505f6106cd565b8160018114610745576002811461074f5761076b565b60019150506106cd565b60ff841115610760576107606106a0565b50506001821b6106cd565b5060208310610133831016604e8410600b841016171561078e575081810a6106cd565b61079883836106d3565b805f19048211156107ab576107ab6106a0565b029392505050565b5f6107c160ff841683610715565b9392505050565b5f602082840312156107d8575f80fd5b81516001600160a01b03811681146107c1575f80fd5b80820281158282048414176106cd576106cd6106a0565b5f8261081f57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156106cd576106cd6106a0565b60805160a05160c05160e05161010051614d846108e45f395f8181610664015281816123f80152818161254e015261265201525f8181612cd001528181612d870152612dc601525f818161316d015281816135b1015261388701525f61084d01525f8181610a3801528181610c8001528181610f8f015281816110480152818161127e01528181611a7e0152818161201c0152818161276901528181612bdc015261373f0152614d845ff3fe6080604052600436106103d3575f3560e01c8063857749b0116101ff578063bccb468711610113578063df2a5b3b116100a8578063eb8d72b711610078578063eb8d72b714610bf9578063f2fde38b14610c18578063f5ecbdbc14610c37578063f66895a314610c56578063fc0c546a14610c6b575f80fd5b8063df2a5b3b14610b79578063e0bf7fd114610b98578063e6a20ae614610bc6578063eaffd49a14610bda575f80fd5b8063cbed8b9c116100e3578063cbed8b9c14610b09578063ce4b6dbc14610b28578063d1deba1f14610b47578063dd62ed3e14610b5a575f80fd5b8063bccb468714610a98578063c024666814610aad578063c04a541414610acc578063c446183414610af4575f80fd5b80639f38369a11610194578063a9059cbb11610164578063a9059cbb146109e9578063b256f7b714610a08578063b353aaa714610a27578063b70143c914610a5a578063baf3292d14610a79575f80fd5b80639f38369a1461096d578063a457c2d71461098c578063a4c51df5146109ab578063a6c3d165146109ca575f80fd5b80639358928b116101cf5780639358928b146108d6578063950c8a74146108ea57806395d89b41146109095780639bdb98121461091d575f80fd5b8063857749b01461083c578063864701a51461086f5780638cfd8f5c146108845780638da5cb5b146108ba575f80fd5b80633f1f4fa4116102f65780636256d1811161028b57806370a082311161025b57806370a08231146107a3578063715018a6146107d75780637533d788146107eb57806375a0d4ac1461080a57806376203b4814610829575f80fd5b80636256d1811461073e57806364dac4081461075d57806366ad5c8a14610771578063695ef6bf14610790575f80fd5b80634c42899a116102c65780634c42899a1461069e5780634ebc552d146106b157806353371be0146106d05780635b8c41e6146106f1575f80fd5b80633f1f4fa4146105f657806342d65a8d14610621578063447705151461064057806349bd5a5e14610653575f80fd5b8063217580a21161036c578063365260b41161033c578063365260b41461056557806339509351146105995780633d5369f6146105b85780633d8b38f6146105d7575f80fd5b8063217580a2146104e757806323b872dd146105065780632bf5eabb14610525578063313ce56714610544575f80fd5b8063095ea7b3116103a7578063095ea7b31461046c5780630df374831461048b57806310ddb137146104aa57806318160ddd146104c9575f80fd5b80621d3567146103d757806301ffc9a7146103f857806306fdde031461042c57806307e0db171461044d575b5f80fd5b3480156103e2575f80fd5b506103f66103f1366004613dc6565b610c7d565b005b348015610403575f80fd5b50610417610412366004613e53565b610ea8565b60405190151581526020015b60405180910390f35b348015610437575f80fd5b50610440610ede565b6040516104239190613ea8565b348015610458575f80fd5b506103f6610467366004613eba565b610f6e565b348015610477575f80fd5b50610417610486366004613ee7565b610ff2565b348015610496575f80fd5b506103f66104a5366004613f11565b611009565b3480156104b5575f80fd5b506103f66104c4366004613eba565b611027565b3480156104d4575f80fd5b506009545b604051908152602001610423565b3480156104f2575f80fd5b506103f6610501366004613f2b565b61107f565b348015610511575f80fd5b50610417610520366004613f42565b61108c565b348015610530575f80fd5b506103f661053f366004613f8f565b6110af565b34801561054f575f80fd5b5060125b60405160ff9091168152602001610423565b348015610570575f80fd5b5061058461057f366004613fa8565b6110d1565b60408051928352602083019190915201610423565b3480156105a4575f80fd5b506104176105b3366004613ee7565b611124565b3480156105c3575f80fd5b506103f66105d2366004613f2b565b611145565b3480156105e2575f80fd5b506104176105f1366004614008565b611196565b348015610601575f80fd5b506104d9610610366004613eba565b60036020525f908152604090205481565b34801561062c575f80fd5b506103f661063b366004614008565b61125f565b34801561064b575f80fd5b506104d95f81565b34801561065e575f80fd5b506106867f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610423565b3480156106a9575f80fd5b506105535f81565b3480156106bc575f80fd5b506103f66106cb366004613f2b565b6112e0565b3480156106db575f80fd5b5060145461041790640100000000900460ff1681565b3480156106fc575f80fd5b506104d961070b3660046140c0565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b348015610749575f80fd5b506103f6610758366004613f2b565b61137f565b348015610768575f80fd5b506103f661138c565b34801561077c575f80fd5b506103f661078b366004613dc6565b6113ff565b6103f661079e36600461416f565b6114d9565b3480156107ae575f80fd5b506104d96107bd3660046141dd565b6001600160a01b03165f9081526007602052604090205490565b3480156107e2575f80fd5b506103f6611543565b3480156107f6575f80fd5b50610440610805366004613eba565b611556565b348015610815575f80fd5b506103f66108243660046141dd565b6115ed565b6103f66108373660046141f8565b611625565b348015610847575f80fd5b506105537f000000000000000000000000000000000000000000000000000000000000000081565b34801561087a575f80fd5b506104d9600d5481565b34801561088f575f80fd5b506104d961089e3660046142a3565b600260209081525f928352604080842090915290825290205481565b3480156108c5575f80fd5b505f546001600160a01b0316610686565b3480156108e1575f80fd5b506104d96116d2565b3480156108f5575f80fd5b50600454610686906001600160a01b031681565b348015610914575f80fd5b506104406116e1565b348015610928575f80fd5b506104176109373660046140c0565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b348015610978575f80fd5b50610440610987366004613eba565b6116f0565b348015610997575f80fd5b506104176109a6366004613ee7565b611801565b3480156109b6575f80fd5b506105846109c53660046142d4565b61187b565b3480156109d5575f80fd5b506103f66109e4366004614008565b611907565b3480156109f4575f80fd5b50610417610a03366004613ee7565b61198f565b348015610a13575f80fd5b506103f6610a22366004613f8f565b61199c565b348015610a32575f80fd5b506106867f000000000000000000000000000000000000000000000000000000000000000081565b348015610a65575f80fd5b506103f6610a74366004613f2b565b6119c0565b348015610a84575f80fd5b506103f6610a933660046141dd565b6119d1565b348015610aa3575f80fd5b506104d960125481565b348015610ab8575f80fd5b506103f6610ac7366004614385565b611a2d565b348015610ad7575f80fd5b50601454610686906501000000000090046001600160a01b031681565b348015610aff575f80fd5b506104d961271081565b348015610b14575f80fd5b506103f6610b233660046143af565b611a5f565b348015610b33575f80fd5b506103f6610b42366004614418565b611ae4565b6103f6610b55366004613dc6565b611b5f565b348015610b65575f80fd5b506104d9610b74366004614438565b611d6f565b348015610b84575f80fd5b506103f6610b9336600461446f565b611d99565b348015610ba3575f80fd5b50610417610bb23660046141dd565b60156020525f908152604090205460ff1681565b348015610bd1575f80fd5b50610553600181565b348015610be5575f80fd5b506103f6610bf43660046144a8565b611e02565b348015610c04575f80fd5b506103f6610c13366004614008565b611f1c565b348015610c23575f80fd5b506103f6610c323660046141dd565b611f75565b348015610c42575f80fd5b50610440610c51366004614568565b611feb565b348015610c61575f80fd5b506104d9600e5481565b348015610c76575f80fd5b5030610686565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610cfa5760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff86165f9081526001602052604081208054610d17906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d43906145b2565b8015610d8e5780601f10610d6557610100808354040283529160200191610d8e565b820191905f5260205f20905b815481529060010190602001808311610d7157829003601f168201915b50505050509050805186869050148015610da857505f8151115b8015610dd0575080516020820120604051610dc690889088906145e4565b6040518091039020145b610e2b5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610cf1565b610e9f8787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061209892505050565b50505050505050565b5f6001600160e01b03198216631f7ecdf760e01b1480610ed857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610eed906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f19906145b2565b8015610f645780601f10610f3b57610100808354040283529160200191610f64565b820191905f5260205f20905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b610f76612110565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610fd9575f80fd5b505af1158015610feb573d5f803e3d5ffd5b5050505050565b5f33610fff818585612169565b5060019392505050565b611011612110565b61ffff9091165f90815260036020526040902055565b61102f612110565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610fc2565b611087612110565b601055565b5f3361109985828561228c565b6110a4858585612304565b506001949350505050565b6110b7612110565b601480549115156101000261ff0019909216919091179055565b5f806111158888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061270492505050565b91509150965096945050505050565b5f33610fff8185856111368383611d6f565b6111409190614607565b612169565b61114d612110565b5f81116111915760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610cf1565b600f55565b61ffff83165f90815260016020526040812080548291906111b6906145b2565b80601f01602080910402602001604051908101604052809291908181526020018280546111e2906145b2565b801561122d5780601f106112045761010080835404028352916020019161122d565b820191905f5260205f20905b81548152906001019060200180831161121057829003601f168201915b5050505050905083836040516112449291906145e4565b60405180910390208180519060200120149150509392505050565b611267612110565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d906112b790869086908690600401614642565b5f604051808303815f87803b1580156112ce575f80fd5b505af1158015610e9f573d5f803e3d5ffd5b80601154036112f657602d600d819055600e5550565b8060115460016113069190614607565b10611318576028600d819055600e5550565b8060115460056113289190614607565b1061133a57601e600d819055600e5550565b80601154600b61134a9190614607565b1061135c576019600d819055600e5550565b80601154601861136c9190614607565b1061137c576016600d819055600e555b50565b611387612110565b600c55565b611394612110565b601454640100000000900460ff16156113e45760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610cf1565b601480544360115564ff000000ff1916640100000001179055565b33301461145d5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610cf1565b6114d18686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f920191909152506127f392505050565b505050505050565b6114d1858585856114ed60208701876141dd565b6114fd60408801602089016141dd565b61150a604089018961465f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061287892505050565b61154b612110565b6115545f61295d565b565b60016020525f90815260409020805461156e906145b2565b80601f016020809104026020016040519081016040528092919081815260200182805461159a906145b2565b80156115e55780601f106115bc576101008083540402835291602001916115e5565b820191905f5260205f20905b8154815290600101906020018083116115c857829003601f168201915b505050505081565b6115f5612110565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6116c78888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a925061167191505060208901896141dd565b61168160408a0160208b016141dd565b61168e60408b018b61465f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ac92505050565b505050505050505050565b5f6116dc60095490565b905090565b6060600b8054610eed906145b2565b61ffff81165f90815260016020526040812080546060929190611712906145b2565b80601f016020809104026020016040519081016040528092919081815260200182805461173e906145b2565b80156117895780601f1061176057610100808354040283529160200191611789565b820191905f5260205f20905b81548152906001019060200180831161176c57829003601f168201915b5050505050905080515f036117e05760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610cf1565b6117fa5f601483516117f291906146a1565b839190612aa5565b9392505050565b5f338161180e8286611d6f565b90508381101561186e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cf1565b6110a48286868403612169565b5f806118f58b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612bb192505050565b91509150995099975050505050505050565b61190f612110565b818130604051602001611924939291906146b4565b60408051601f1981840301815291815261ffff85165f9081526001602052209061194e908261471e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161198293929190614642565b60405180910390a1505050565b5f33610fff818585612304565b6119a4612110565b60148054911515620100000262ff000019909216919091179055565b6119c8612110565b61137c81612c68565b6119d9612110565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b611a35612110565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b611a67612110565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90611abb90889088908890889088906004016147d9565b5f604051808303815f87803b158015611ad2575f80fd5b505af11580156116c7573d5f803e3d5ffd5b611aec612110565b600a8211158015611afe5750600a8111155b611b4a5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f7665203130000000000000006044820152606401610cf1565b600d91909155600e556014805460ff19169055565b61ffff86165f908152600560205260408082209051611b8190889088906145e4565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611c005760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610cf1565b808383604051611c119291906145e4565b604051809103902014611c705760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610cf1565b61ffff87165f908152600560205260408082209051611c9290899089906145e4565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611d2791899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f920191909152506127f392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611d5e959493929190614811565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611da1612110565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611982565b333014611e515760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610cf1565b611e5c308686612e4e565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611e9e91815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611ee2908e908e908e908e908e908d908d908d9060040161484b565b5f604051808303815f88803b158015611ef9575f80fd5b5087f1158015611f0b573d5f803e3d5ffd5b505050505050505050505050505050565b611f24612110565b61ffff83165f908152600160205260409020611f418284836148a5565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161198293929190614642565b611f7d612110565b6001600160a01b038116611fe25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cf1565b61137c8161295d565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc906084015f60405180830381865afa158015612068573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261208f919081019061495e565b95945050505050565b5f806120fa5a60966366ad5c8a60e01b898989896040516024016120bf94939291906149d2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612e9f565b91509150816114d1576114d18686868685612f23565b5f546001600160a01b031633146115545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf1565b6001600160a01b0383166121cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cf1565b6001600160a01b03821661222c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cf1565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6122978484611d6f565b90505f1981146122fe57818110156122f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cf1565b6122fe8484848403612169565b50505050565b5f81116123625760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610cf1565b601454640100000000900460ff166123e0575f546001600160a01b038481169116148061239b57505f546001600160a01b038381169116145b6123e05760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610cf1565b6014545f9060ff16156123f6576123f6436112e0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614801561244f57506001600160a01b0383165f9081526015602052604090205460ff16155b1561254c5760105482612476856001600160a01b03165f9081526007602052604090205490565b6124809190614607565b11156124c55760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610cf1565b600c5482111561250a5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff1615612537576064600d548361252a9190614a0f565b6125349190614a3a565b90505b60128054905f61254683614a4d565b91905055505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156125a557506001600160a01b0384165f9081526015602052604090205460ff16155b1561261c57600c548211156125ef5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff161561261c576064600e548361260f9190614a0f565b6126199190614a3a565b90505b305f90815260076020526040902054600f548110801590819061264957506014546301000000900460ff16155b801561268757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b80156126ab57506001600160a01b0386165f9081526015602052604090205460ff16155b80156126ba5750601354601254115b156126ca576126ca600f54612c68565b82156126f9575f6126db84866146a1565b90506126e8873086612fbd565b6126f3878783612fbd565b506114d1565b6114d1868686612fbd565b5f805f61274f8761271488613166565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906127a6908b90309086908b908b90600401614a65565b6040805180830381865afa1580156127c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e49190614ab8565b92509250509550959350505050565b5f6127fe82826131eb565b905060ff81166128195761281485858585613246565b610feb565b5f1960ff82160161283057612814858585856132d4565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610cf1565b5f612885878284816134d7565b61288e856135aa565b50905061289d888888846135e9565b90505f81116128ea5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f6128f88761271484613166565b905061290888828787873461361a565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161294991815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6129c3896001846001600160401b0389166134d7565b6129cc876135aa565b5090506129db8a8a8a846135e9565b90505f8111612a285760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f612a3e338a612a3785613166565b8a8a6137b7565b9050612a4e8a828787873461361a565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a8f91815260200190565b60405180910390a4509998505050505050505050565b606081612ab381601f614607565b1015612af25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610cf1565b612afc8284614607565b84511015612b405760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610cf1565b606082158015612b5e5760405191505f825260208201604052612ba8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612b97578051835260209283019201612b7f565b5050858452601f01601f1916604052505b50949350505050565b5f805f612bc2338a612a378b613166565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612c19908d90309086908b908b90600401614a65565b6040805180830381865afa158015612c33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c579190614ab8565b925092505097509795505050505050565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612cae57612cae614ada565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4e9190614aee565b81600181518110612d6157612d61614ada565b60200260200101906001600160a01b031690816001600160a01b031681525050612dac307f000000000000000000000000000000000000000000000000000000000000000084612169565b60145460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792612e109287925f92889265010000000000909204909116904290600401614b09565b5f604051808303815f87803b158015612e27575f80fd5b505af1158015612e39573d5f803e3d5ffd5b50506014805463ff0000001916905550505050565b5f33306001600160a01b03861614801590612e7b5750806001600160a01b0316856001600160a01b031614155b15612e8b57612e8b85828561228c565b612e96858585612304565b50909392505050565b5f60605f805f8661ffff166001600160401b03811115612ec157612ec1614056565b6040519080825280601f01601f191660200182016040528015612eeb576020820181803683370190505b5090505f808751602089015f8d8df191503d925086831115612f0b578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f2085604051612f529190614b91565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612fae9087908790879087908790614b9c565b60405180910390a15050505050565b6001600160a01b0383166130215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cf1565b6001600160a01b0382166130835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cf1565b6001600160a01b0383165f90815260076020526040902054818110156130fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cf1565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906131599086815260200190565b60405180910390a36122fe565b5f806131927f000000000000000000000000000000000000000000000000000000000000000084614a3a565b90506001600160401b03811115610ed85760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610cf1565b5f6131f7826001614607565b8351101561323d5760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610cf1565b50016001015190565b5f80613251836137fd565b90925090506001600160a01b03821661326a5761dead91505b5f61327482613881565b90506132818784836138b5565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf836040516132c391815260200190565b60405180910390a350505050505050565b5f805f805f6132e2866138c7565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f20896040516133149190614b91565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff16915061334685613881565b9050816133b2576133588b30836138b5565b61ffff8c165f9081526006602052604090819020905191925060019161337f908d90614b91565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613409576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a1505050505050506122fe565b8a8a8a8a8a8a868a5f8a613426578b6001600160401b0316613428565b5a5b90505f806134595a609663eaffd49a60e01b8e8e8e8d8d8d8d8d6040516024016120bf989796959493929190614bed565b9150915081156134b2578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd884906134a4908e908e908690614c60565b60405180910390a2506134bf565b6134bf8b8b8b8b85612f23565b50505050505050505050505050505050505050505050565b5f6134e18361397d565b61ffff8087165f90815260026020908152604080832093891683529290522054909150806135515760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610cf1565b61355b8382614607565b8210156114d15760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610cf1565b5f806135d67f000000000000000000000000000000000000000000000000000000000000000084614c8d565b90506135e281846146a1565b9150915091565b5f336001600160a01b03861681146136065761360686828561228c565b61361086846139d8565b5090949350505050565b61ffff86165f9081526001602052604081208054613637906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054613663906145b2565b80156136ae5780601f10613685576101008083540402835291602001916136ae565b820191905f5260205f20905b81548152906001019060200180831161369157829003601f168201915b5050505050905080515f0361371e5760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610cf1565b613729878751613b0a565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100908490613780908b9086908c908c908c908c90600401614ca0565b5f604051808303818588803b158015613797575f80fd5b505af11580156137a9573d5f803e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b03891685876040516020016137de96959493929190614d06565b604051602081830303815290604052905095945050505050565b505050565b5f808061380a84826131eb565b60ff1614801561381b575082516029145b6138625760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61386d83600d613b7a565b915061387a836021613bde565b9050915091565b5f610ed87f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416614a0f565b5f6138c08383613c3a565b5092915050565b5f808060608160016138d987836131eb565b60ff16146139245760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61392f86600d613b7a565b935061393c866021613bde565b9250613949866029613cf9565b9450613956866049613bde565b9050613972605180885161396a91906146a1565b889190612aa5565b915091939590929450565b5f6022825110156139d05760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610cf1565b506022015190565b6001600160a01b038216613a385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cf1565b6001600160a01b0382165f9081526007602052604090205481811015613aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cf1565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b2a57506127105b808211156137f85760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610cf1565b5f613b86826014614607565b83511015613bce5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610cf1565b500160200151600160601b900490565b5f613bea826008614607565b83511015613c315760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610cf1565b50016008015190565b6001600160a01b038216613c905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cf1565b8060095f828254613ca19190614607565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d05826020614607565b83511015613d4d5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610cf1565b50016020015190565b803561ffff81168114613d67575f80fd5b919050565b5f8083601f840112613d7c575f80fd5b5081356001600160401b03811115613d92575f80fd5b602083019150836020828501011115613da9575f80fd5b9250929050565b80356001600160401b0381168114613d67575f80fd5b5f805f805f8060808789031215613ddb575f80fd5b613de487613d56565b955060208701356001600160401b0380821115613dff575f80fd5b613e0b8a838b01613d6c565b9097509550859150613e1f60408a01613db0565b94506060890135915080821115613e34575f80fd5b50613e4189828a01613d6c565b979a9699509497509295939492505050565b5f60208284031215613e63575f80fd5b81356001600160e01b0319811681146117fa575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6117fa6020830184613e7a565b5f60208284031215613eca575f80fd5b6117fa82613d56565b6001600160a01b038116811461137c575f80fd5b5f8060408385031215613ef8575f80fd5b8235613f0381613ed3565b946020939093013593505050565b5f8060408385031215613f22575f80fd5b613f0383613d56565b5f60208284031215613f3b575f80fd5b5035919050565b5f805f60608486031215613f54575f80fd5b8335613f5f81613ed3565b92506020840135613f6f81613ed3565b929592945050506040919091013590565b80358015158114613d67575f80fd5b5f60208284031215613f9f575f80fd5b6117fa82613f80565b5f805f805f8060a08789031215613fbd575f80fd5b613fc687613d56565b95506020870135945060408701359350613fe260608801613f80565b925060808701356001600160401b03811115613ffc575f80fd5b613e4189828a01613d6c565b5f805f6040848603121561401a575f80fd5b61402384613d56565b925060208401356001600160401b0381111561403d575f80fd5b61404986828701613d6c565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171561409257614092614056565b604052919050565b5f6001600160401b038211156140b2576140b2614056565b50601f01601f191660200190565b5f805f606084860312156140d2575f80fd5b6140db84613d56565b925060208401356001600160401b038111156140f5575f80fd5b8401601f81018613614105575f80fd5b80356141186141138261409a565b61406a565b81815287602083850101111561412c575f80fd5b816020840160208301375f6020838301015280945050505061415060408501613db0565b90509250925092565b5f60608284031215614169575f80fd5b50919050565b5f805f805f60a08688031215614183575f80fd5b853561418e81613ed3565b945061419c60208701613d56565b9350604086013592506060860135915060808601356001600160401b038111156141c4575f80fd5b6141d088828901614159565b9150509295509295909350565b5f602082840312156141ed575f80fd5b81356117fa81613ed3565b5f805f805f805f8060e0898b03121561420f575f80fd5b883561421a81613ed3565b975061422860208a01613d56565b9650604089013595506060890135945060808901356001600160401b0380821115614251575f80fd5b61425d8c838d01613d6c565b909650945084915061427160a08c01613db0565b935060c08b0135915080821115614286575f80fd5b506142938b828c01614159565b9150509295985092959890939650565b5f80604083850312156142b4575f80fd5b6142bd83613d56565b91506142cb60208401613d56565b90509250929050565b5f805f805f805f805f60e08a8c0312156142ec575f80fd5b6142f58a613d56565b985060208a0135975060408a0135965060608a01356001600160401b038082111561431e575f80fd5b61432a8d838e01613d6c565b909850965086915061433e60808d01613db0565b955061434c60a08d01613f80565b945060c08c0135915080821115614361575f80fd5b5061436e8c828d01613d6c565b915080935050809150509295985092959850929598565b5f8060408385031215614396575f80fd5b82356143a181613ed3565b91506142cb60208401613f80565b5f805f805f608086880312156143c3575f80fd5b6143cc86613d56565b94506143da60208701613d56565b93506040860135925060608601356001600160401b038111156143fb575f80fd5b61440788828901613d6c565b969995985093965092949392505050565b5f8060408385031215614429575f80fd5b50508035926020909101359150565b5f8060408385031215614449575f80fd5b823561445481613ed3565b9150602083013561446481613ed3565b809150509250929050565b5f805f60608486031215614481575f80fd5b61448a84613d56565b925061449860208501613d56565b9150604084013590509250925092565b5f805f805f805f805f806101008b8d0312156144c2575f80fd5b6144cb8b613d56565b995060208b01356001600160401b03808211156144e6575f80fd5b6144f28e838f01613d6c565b909b50995089915061450660408e01613db0565b985060608d0135975060808d0135915061451f82613ed3565b90955060a08c0135945060c08c0135908082111561453b575f80fd5b506145488d828e01613d6c565b9150809450508092505060e08b013590509295989b9194979a5092959850565b5f805f806080858703121561457b575f80fd5b61458485613d56565b935061459260208601613d56565b925060408501356145a281613ed3565b9396929550929360600135925050565b600181811c908216806145c657607f821691505b60208210810361416957634e487b7160e01b5f52602260045260245ffd5b818382375f9101908152919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ed857610ed86145f3565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f61208f60408301848661461a565b5f808335601e19843603018112614674575f80fd5b8301803591506001600160401b0382111561468d575f80fd5b602001915036819003821315613da9575f80fd5b81810381811115610ed857610ed86145f3565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156137f857805f5260205f20601f840160051c810160208510156146ff5750805b601f840160051c820191505b81811015610feb575f815560010161470b565b81516001600160401b0381111561473757614737614056565b61474b8161474584546145b2565b846146da565b602080601f83116001811461477e575f84156147675750858301515b5f19600386901b1c1916600185901b1785556114d1565b5f85815260208120601f198616915b828110156147ac5788860151825594840194600190910190840161478d565b50858210156147c957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f61ffff80881683528087166020840152508460408301526080606083015261480660808301848661461a565b979650505050505050565b61ffff86168152608060208201525f61482e60808301868861461a565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201525f61486860c08301898b61461a565b6001600160401b038816604084015286606084015285608084015282810360a084015261489681858761461a565b9b9a5050505050505050505050565b6001600160401b038311156148bc576148bc614056565b6148d0836148ca83546145b2565b836146da565b5f601f841160018114614901575f85156148ea5750838201355b5f19600387901b1c1916600186901b178355610feb565b5f83815260208120601f198716915b828110156149305786850135825560209485019460019092019101614910565b508682101561494c575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561496e575f80fd5b81516001600160401b03811115614983575f80fd5b8201601f81018413614993575f80fd5b80516149a16141138261409a565b8181528560208385010111156149b5575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b61ffff85168152608060208201525f6149ee6080830186613e7a565b6001600160401b038516604084015282810360608401526148068185613e7a565b8082028115828204841417610ed857610ed86145f3565b634e487b7160e01b5f52601260045260245ffd5b5f82614a4857614a48614a26565b500490565b5f60018201614a5e57614a5e6145f3565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614a9290830186613e7a565b84151560608401528281036080840152614aac8185613e7a565b98975050505050505050565b5f8060408385031215614ac9575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614afe575f80fd5b81516117fa81613ed3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015614b595784516001600160a01b031683529383019391830191600101614b34565b50506001600160a01b03969096166060850152505050608001529392505050565b5f81518060208401855e5f93019283525090919050565b5f6117fa8284614b7a565b61ffff8616815260a060208201525f614bb860a0830187613e7a565b6001600160401b03861660408401528281036060840152614bd98186613e7a565b90508281036080840152614aac8185613e7a565b5f61010061ffff8b168352806020840152614c0a8184018b613e7a565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614c4a8186613e7a565b9150508260e08301529998505050505050505050565b606081525f614c726060830186613e7a565b6001600160401b039490941660208301525060400152919050565b5f82614c9b57614c9b614a26565b500690565b61ffff8716815260c060208201525f614cbc60c0830188613e7a565b8281036040840152614cce8188613e7a565b6001600160a01b0387811660608601528616608085015283810360a08501529050614cf98185613e7a565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201525f6001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250614aac6051830184614b7a56fea2646970667358221220095667e98708ef40f17e336ba12bca79411fccce8140608b51e371acf7ab120164736f6c63430008190033
Deployed Bytecode
0x6080604052600436106103d3575f3560e01c8063857749b0116101ff578063bccb468711610113578063df2a5b3b116100a8578063eb8d72b711610078578063eb8d72b714610bf9578063f2fde38b14610c18578063f5ecbdbc14610c37578063f66895a314610c56578063fc0c546a14610c6b575f80fd5b8063df2a5b3b14610b79578063e0bf7fd114610b98578063e6a20ae614610bc6578063eaffd49a14610bda575f80fd5b8063cbed8b9c116100e3578063cbed8b9c14610b09578063ce4b6dbc14610b28578063d1deba1f14610b47578063dd62ed3e14610b5a575f80fd5b8063bccb468714610a98578063c024666814610aad578063c04a541414610acc578063c446183414610af4575f80fd5b80639f38369a11610194578063a9059cbb11610164578063a9059cbb146109e9578063b256f7b714610a08578063b353aaa714610a27578063b70143c914610a5a578063baf3292d14610a79575f80fd5b80639f38369a1461096d578063a457c2d71461098c578063a4c51df5146109ab578063a6c3d165146109ca575f80fd5b80639358928b116101cf5780639358928b146108d6578063950c8a74146108ea57806395d89b41146109095780639bdb98121461091d575f80fd5b8063857749b01461083c578063864701a51461086f5780638cfd8f5c146108845780638da5cb5b146108ba575f80fd5b80633f1f4fa4116102f65780636256d1811161028b57806370a082311161025b57806370a08231146107a3578063715018a6146107d75780637533d788146107eb57806375a0d4ac1461080a57806376203b4814610829575f80fd5b80636256d1811461073e57806364dac4081461075d57806366ad5c8a14610771578063695ef6bf14610790575f80fd5b80634c42899a116102c65780634c42899a1461069e5780634ebc552d146106b157806353371be0146106d05780635b8c41e6146106f1575f80fd5b80633f1f4fa4146105f657806342d65a8d14610621578063447705151461064057806349bd5a5e14610653575f80fd5b8063217580a21161036c578063365260b41161033c578063365260b41461056557806339509351146105995780633d5369f6146105b85780633d8b38f6146105d7575f80fd5b8063217580a2146104e757806323b872dd146105065780632bf5eabb14610525578063313ce56714610544575f80fd5b8063095ea7b3116103a7578063095ea7b31461046c5780630df374831461048b57806310ddb137146104aa57806318160ddd146104c9575f80fd5b80621d3567146103d757806301ffc9a7146103f857806306fdde031461042c57806307e0db171461044d575b5f80fd5b3480156103e2575f80fd5b506103f66103f1366004613dc6565b610c7d565b005b348015610403575f80fd5b50610417610412366004613e53565b610ea8565b60405190151581526020015b60405180910390f35b348015610437575f80fd5b50610440610ede565b6040516104239190613ea8565b348015610458575f80fd5b506103f6610467366004613eba565b610f6e565b348015610477575f80fd5b50610417610486366004613ee7565b610ff2565b348015610496575f80fd5b506103f66104a5366004613f11565b611009565b3480156104b5575f80fd5b506103f66104c4366004613eba565b611027565b3480156104d4575f80fd5b506009545b604051908152602001610423565b3480156104f2575f80fd5b506103f6610501366004613f2b565b61107f565b348015610511575f80fd5b50610417610520366004613f42565b61108c565b348015610530575f80fd5b506103f661053f366004613f8f565b6110af565b34801561054f575f80fd5b5060125b60405160ff9091168152602001610423565b348015610570575f80fd5b5061058461057f366004613fa8565b6110d1565b60408051928352602083019190915201610423565b3480156105a4575f80fd5b506104176105b3366004613ee7565b611124565b3480156105c3575f80fd5b506103f66105d2366004613f2b565b611145565b3480156105e2575f80fd5b506104176105f1366004614008565b611196565b348015610601575f80fd5b506104d9610610366004613eba565b60036020525f908152604090205481565b34801561062c575f80fd5b506103f661063b366004614008565b61125f565b34801561064b575f80fd5b506104d95f81565b34801561065e575f80fd5b506106867f000000000000000000000000c65f8e0c929050489159abbe69acbb55d3894f8581565b6040516001600160a01b039091168152602001610423565b3480156106a9575f80fd5b506105535f81565b3480156106bc575f80fd5b506103f66106cb366004613f2b565b6112e0565b3480156106db575f80fd5b5060145461041790640100000000900460ff1681565b3480156106fc575f80fd5b506104d961070b3660046140c0565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b348015610749575f80fd5b506103f6610758366004613f2b565b61137f565b348015610768575f80fd5b506103f661138c565b34801561077c575f80fd5b506103f661078b366004613dc6565b6113ff565b6103f661079e36600461416f565b6114d9565b3480156107ae575f80fd5b506104d96107bd3660046141dd565b6001600160a01b03165f9081526007602052604090205490565b3480156107e2575f80fd5b506103f6611543565b3480156107f6575f80fd5b50610440610805366004613eba565b611556565b348015610815575f80fd5b506103f66108243660046141dd565b6115ed565b6103f66108373660046141f8565b611625565b348015610847575f80fd5b506105537f000000000000000000000000000000000000000000000000000000000000000881565b34801561087a575f80fd5b506104d9600d5481565b34801561088f575f80fd5b506104d961089e3660046142a3565b600260209081525f928352604080842090915290825290205481565b3480156108c5575f80fd5b505f546001600160a01b0316610686565b3480156108e1575f80fd5b506104d96116d2565b3480156108f5575f80fd5b50600454610686906001600160a01b031681565b348015610914575f80fd5b506104406116e1565b348015610928575f80fd5b506104176109373660046140c0565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b348015610978575f80fd5b50610440610987366004613eba565b6116f0565b348015610997575f80fd5b506104176109a6366004613ee7565b611801565b3480156109b6575f80fd5b506105846109c53660046142d4565b61187b565b3480156109d5575f80fd5b506103f66109e4366004614008565b611907565b3480156109f4575f80fd5b50610417610a03366004613ee7565b61198f565b348015610a13575f80fd5b506103f6610a22366004613f8f565b61199c565b348015610a32575f80fd5b506106867f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d0981565b348015610a65575f80fd5b506103f6610a74366004613f2b565b6119c0565b348015610a84575f80fd5b506103f6610a933660046141dd565b6119d1565b348015610aa3575f80fd5b506104d960125481565b348015610ab8575f80fd5b506103f6610ac7366004614385565b611a2d565b348015610ad7575f80fd5b50601454610686906501000000000090046001600160a01b031681565b348015610aff575f80fd5b506104d961271081565b348015610b14575f80fd5b506103f6610b233660046143af565b611a5f565b348015610b33575f80fd5b506103f6610b42366004614418565b611ae4565b6103f6610b55366004613dc6565b611b5f565b348015610b65575f80fd5b506104d9610b74366004614438565b611d6f565b348015610b84575f80fd5b506103f6610b9336600461446f565b611d99565b348015610ba3575f80fd5b50610417610bb23660046141dd565b60156020525f908152604090205460ff1681565b348015610bd1575f80fd5b50610553600181565b348015610be5575f80fd5b506103f6610bf43660046144a8565b611e02565b348015610c04575f80fd5b506103f6610c13366004614008565b611f1c565b348015610c23575f80fd5b506103f6610c323660046141dd565b611f75565b348015610c42575f80fd5b50610440610c51366004614568565b611feb565b348015610c61575f80fd5b506104d9600e5481565b348015610c76575f80fd5b5030610686565b337f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d096001600160a01b031614610cfa5760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff86165f9081526001602052604081208054610d17906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d43906145b2565b8015610d8e5780601f10610d6557610100808354040283529160200191610d8e565b820191905f5260205f20905b815481529060010190602001808311610d7157829003601f168201915b50505050509050805186869050148015610da857505f8151115b8015610dd0575080516020820120604051610dc690889088906145e4565b6040518091039020145b610e2b5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610cf1565b610e9f8787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061209892505050565b50505050505050565b5f6001600160e01b03198216631f7ecdf760e01b1480610ed857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610eed906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f19906145b2565b8015610f645780601f10610f3b57610100808354040283529160200191610f64565b820191905f5260205f20905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b610f76612110565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d096001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610fd9575f80fd5b505af1158015610feb573d5f803e3d5ffd5b5050505050565b5f33610fff818585612169565b5060019392505050565b611011612110565b61ffff9091165f90815260036020526040902055565b61102f612110565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d096001600160a01b0316906310ddb13790602401610fc2565b611087612110565b601055565b5f3361109985828561228c565b6110a4858585612304565b506001949350505050565b6110b7612110565b601480549115156101000261ff0019909216919091179055565b5f806111158888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061270492505050565b91509150965096945050505050565b5f33610fff8185856111368383611d6f565b6111409190614607565b612169565b61114d612110565b5f81116111915760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610cf1565b600f55565b61ffff83165f90815260016020526040812080548291906111b6906145b2565b80601f01602080910402602001604051908101604052809291908181526020018280546111e2906145b2565b801561122d5780601f106112045761010080835404028352916020019161122d565b820191905f5260205f20905b81548152906001019060200180831161121057829003601f168201915b5050505050905083836040516112449291906145e4565b60405180910390208180519060200120149150509392505050565b611267612110565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d0916906342d65a8d906112b790869086908690600401614642565b5f604051808303815f87803b1580156112ce575f80fd5b505af1158015610e9f573d5f803e3d5ffd5b80601154036112f657602d600d819055600e5550565b8060115460016113069190614607565b10611318576028600d819055600e5550565b8060115460056113289190614607565b1061133a57601e600d819055600e5550565b80601154600b61134a9190614607565b1061135c576019600d819055600e5550565b80601154601861136c9190614607565b1061137c576016600d819055600e555b50565b611387612110565b600c55565b611394612110565b601454640100000000900460ff16156113e45760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610cf1565b601480544360115564ff000000ff1916640100000001179055565b33301461145d5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610cf1565b6114d18686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f920191909152506127f392505050565b505050505050565b6114d1858585856114ed60208701876141dd565b6114fd60408801602089016141dd565b61150a604089018961465f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061287892505050565b61154b612110565b6115545f61295d565b565b60016020525f90815260409020805461156e906145b2565b80601f016020809104026020016040519081016040528092919081815260200182805461159a906145b2565b80156115e55780601f106115bc576101008083540402835291602001916115e5565b820191905f5260205f20905b8154815290600101906020018083116115c857829003601f168201915b505050505081565b6115f5612110565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6116c78888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a925061167191505060208901896141dd565b61168160408a0160208b016141dd565b61168e60408b018b61465f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ac92505050565b505050505050505050565b5f6116dc60095490565b905090565b6060600b8054610eed906145b2565b61ffff81165f90815260016020526040812080546060929190611712906145b2565b80601f016020809104026020016040519081016040528092919081815260200182805461173e906145b2565b80156117895780601f1061176057610100808354040283529160200191611789565b820191905f5260205f20905b81548152906001019060200180831161176c57829003601f168201915b5050505050905080515f036117e05760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610cf1565b6117fa5f601483516117f291906146a1565b839190612aa5565b9392505050565b5f338161180e8286611d6f565b90508381101561186e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cf1565b6110a48286868403612169565b5f806118f58b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612bb192505050565b91509150995099975050505050505050565b61190f612110565b818130604051602001611924939291906146b4565b60408051601f1981840301815291815261ffff85165f9081526001602052209061194e908261471e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161198293929190614642565b60405180910390a1505050565b5f33610fff818585612304565b6119a4612110565b60148054911515620100000262ff000019909216919091179055565b6119c8612110565b61137c81612c68565b6119d9612110565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b611a35612110565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b611a67612110565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d09169063cbed8b9c90611abb90889088908890889088906004016147d9565b5f604051808303815f87803b158015611ad2575f80fd5b505af11580156116c7573d5f803e3d5ffd5b611aec612110565b600a8211158015611afe5750600a8111155b611b4a5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f7665203130000000000000006044820152606401610cf1565b600d91909155600e556014805460ff19169055565b61ffff86165f908152600560205260408082209051611b8190889088906145e4565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611c005760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610cf1565b808383604051611c119291906145e4565b604051809103902014611c705760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610cf1565b61ffff87165f908152600560205260408082209051611c9290899089906145e4565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611d2791899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f920191909152506127f392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611d5e959493929190614811565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611da1612110565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611982565b333014611e515760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610cf1565b611e5c308686612e4e565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611e9e91815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611ee2908e908e908e908e908e908d908d908d9060040161484b565b5f604051808303815f88803b158015611ef9575f80fd5b5087f1158015611f0b573d5f803e3d5ffd5b505050505050505050505050505050565b611f24612110565b61ffff83165f908152600160205260409020611f418284836148a5565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161198293929190614642565b611f7d612110565b6001600160a01b038116611fe25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cf1565b61137c8161295d565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d096001600160a01b03169063f5ecbdbc906084015f60405180830381865afa158015612068573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261208f919081019061495e565b95945050505050565b5f806120fa5a60966366ad5c8a60e01b898989896040516024016120bf94939291906149d2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612e9f565b91509150816114d1576114d18686868685612f23565b5f546001600160a01b031633146115545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf1565b6001600160a01b0383166121cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cf1565b6001600160a01b03821661222c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cf1565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6122978484611d6f565b90505f1981146122fe57818110156122f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cf1565b6122fe8484848403612169565b50505050565b5f81116123625760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610cf1565b601454640100000000900460ff166123e0575f546001600160a01b038481169116148061239b57505f546001600160a01b038381169116145b6123e05760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610cf1565b6014545f9060ff16156123f6576123f6436112e0565b7f000000000000000000000000c65f8e0c929050489159abbe69acbb55d3894f856001600160a01b0316846001600160a01b031614801561244f57506001600160a01b0383165f9081526015602052604090205460ff16155b1561254c5760105482612476856001600160a01b03165f9081526007602052604090205490565b6124809190614607565b11156124c55760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610cf1565b600c5482111561250a5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff1615612537576064600d548361252a9190614a0f565b6125349190614a3a565b90505b60128054905f61254683614a4d565b91905055505b7f000000000000000000000000c65f8e0c929050489159abbe69acbb55d3894f856001600160a01b0316836001600160a01b03161480156125a557506001600160a01b0384165f9081526015602052604090205460ff16155b1561261c57600c548211156125ef5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff161561261c576064600e548361260f9190614a0f565b6126199190614a3a565b90505b305f90815260076020526040902054600f548110801590819061264957506014546301000000900460ff16155b801561268757507f000000000000000000000000c65f8e0c929050489159abbe69acbb55d3894f856001600160a01b0316866001600160a01b031614155b80156126ab57506001600160a01b0386165f9081526015602052604090205460ff16155b80156126ba5750601354601254115b156126ca576126ca600f54612c68565b82156126f9575f6126db84866146a1565b90506126e8873086612fbd565b6126f3878783612fbd565b506114d1565b6114d1868686612fbd565b5f805f61274f8761271488613166565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d0916906340a7bb10906127a6908b90309086908b908b90600401614a65565b6040805180830381865afa1580156127c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e49190614ab8565b92509250509550959350505050565b5f6127fe82826131eb565b905060ff81166128195761281485858585613246565b610feb565b5f1960ff82160161283057612814858585856132d4565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610cf1565b5f612885878284816134d7565b61288e856135aa565b50905061289d888888846135e9565b90505f81116128ea5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f6128f88761271484613166565b905061290888828787873461361a565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161294991815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6129c3896001846001600160401b0389166134d7565b6129cc876135aa565b5090506129db8a8a8a846135e9565b90505f8111612a285760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f612a3e338a612a3785613166565b8a8a6137b7565b9050612a4e8a828787873461361a565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a8f91815260200190565b60405180910390a4509998505050505050505050565b606081612ab381601f614607565b1015612af25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610cf1565b612afc8284614607565b84511015612b405760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610cf1565b606082158015612b5e5760405191505f825260208201604052612ba8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612b97578051835260209283019201612b7f565b5050858452601f01601f1916604052505b50949350505050565b5f805f612bc2338a612a378b613166565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d0916906340a7bb1090612c19908d90309086908b908b90600401614a65565b6040805180830381865afa158015612c33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c579190614ab8565b925092505097509795505050505050565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612cae57612cae614ada565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4e9190614aee565b81600181518110612d6157612d61614ada565b60200260200101906001600160a01b031690816001600160a01b031681525050612dac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612169565b60145460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792612e109287925f92889265010000000000909204909116904290600401614b09565b5f604051808303815f87803b158015612e27575f80fd5b505af1158015612e39573d5f803e3d5ffd5b50506014805463ff0000001916905550505050565b5f33306001600160a01b03861614801590612e7b5750806001600160a01b0316856001600160a01b031614155b15612e8b57612e8b85828561228c565b612e96858585612304565b50909392505050565b5f60605f805f8661ffff166001600160401b03811115612ec157612ec1614056565b6040519080825280601f01601f191660200182016040528015612eeb576020820181803683370190505b5090505f808751602089015f8d8df191503d925086831115612f0b578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f2085604051612f529190614b91565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612fae9087908790879087908790614b9c565b60405180910390a15050505050565b6001600160a01b0383166130215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cf1565b6001600160a01b0382166130835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cf1565b6001600160a01b0383165f90815260076020526040902054818110156130fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cf1565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906131599086815260200190565b60405180910390a36122fe565b5f806131927f00000000000000000000000000000000000000000000000000000002540be40084614a3a565b90506001600160401b03811115610ed85760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610cf1565b5f6131f7826001614607565b8351101561323d5760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610cf1565b50016001015190565b5f80613251836137fd565b90925090506001600160a01b03821661326a5761dead91505b5f61327482613881565b90506132818784836138b5565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf836040516132c391815260200190565b60405180910390a350505050505050565b5f805f805f6132e2866138c7565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f20896040516133149190614b91565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff16915061334685613881565b9050816133b2576133588b30836138b5565b61ffff8c165f9081526006602052604090819020905191925060019161337f908d90614b91565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613409576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a1505050505050506122fe565b8a8a8a8a8a8a868a5f8a613426578b6001600160401b0316613428565b5a5b90505f806134595a609663eaffd49a60e01b8e8e8e8d8d8d8d8d6040516024016120bf989796959493929190614bed565b9150915081156134b2578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd884906134a4908e908e908690614c60565b60405180910390a2506134bf565b6134bf8b8b8b8b85612f23565b50505050505050505050505050505050505050505050565b5f6134e18361397d565b61ffff8087165f90815260026020908152604080832093891683529290522054909150806135515760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610cf1565b61355b8382614607565b8210156114d15760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610cf1565b5f806135d67f00000000000000000000000000000000000000000000000000000002540be40084614c8d565b90506135e281846146a1565b9150915091565b5f336001600160a01b03861681146136065761360686828561228c565b61361086846139d8565b5090949350505050565b61ffff86165f9081526001602052604081208054613637906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054613663906145b2565b80156136ae5780601f10613685576101008083540402835291602001916136ae565b820191905f5260205f20905b81548152906001019060200180831161369157829003601f168201915b5050505050905080515f0361371e5760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610cf1565b613729878751613b0a565b60405162c5803160e81b81526001600160a01b037f00000000000000000000000058a893e1277c85709e0d17c70834f51afcd30d09169063c5803100908490613780908b9086908c908c908c908c90600401614ca0565b5f604051808303818588803b158015613797575f80fd5b505af11580156137a9573d5f803e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b03891685876040516020016137de96959493929190614d06565b604051602081830303815290604052905095945050505050565b505050565b5f808061380a84826131eb565b60ff1614801561381b575082516029145b6138625760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61386d83600d613b7a565b915061387a836021613bde565b9050915091565b5f610ed87f00000000000000000000000000000000000000000000000000000002540be4006001600160401b038416614a0f565b5f6138c08383613c3a565b5092915050565b5f808060608160016138d987836131eb565b60ff16146139245760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61392f86600d613b7a565b935061393c866021613bde565b9250613949866029613cf9565b9450613956866049613bde565b9050613972605180885161396a91906146a1565b889190612aa5565b915091939590929450565b5f6022825110156139d05760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610cf1565b506022015190565b6001600160a01b038216613a385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cf1565b6001600160a01b0382165f9081526007602052604090205481811015613aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cf1565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b2a57506127105b808211156137f85760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610cf1565b5f613b86826014614607565b83511015613bce5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610cf1565b500160200151600160601b900490565b5f613bea826008614607565b83511015613c315760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610cf1565b50016008015190565b6001600160a01b038216613c905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cf1565b8060095f828254613ca19190614607565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d05826020614607565b83511015613d4d5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610cf1565b50016020015190565b803561ffff81168114613d67575f80fd5b919050565b5f8083601f840112613d7c575f80fd5b5081356001600160401b03811115613d92575f80fd5b602083019150836020828501011115613da9575f80fd5b9250929050565b80356001600160401b0381168114613d67575f80fd5b5f805f805f8060808789031215613ddb575f80fd5b613de487613d56565b955060208701356001600160401b0380821115613dff575f80fd5b613e0b8a838b01613d6c565b9097509550859150613e1f60408a01613db0565b94506060890135915080821115613e34575f80fd5b50613e4189828a01613d6c565b979a9699509497509295939492505050565b5f60208284031215613e63575f80fd5b81356001600160e01b0319811681146117fa575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6117fa6020830184613e7a565b5f60208284031215613eca575f80fd5b6117fa82613d56565b6001600160a01b038116811461137c575f80fd5b5f8060408385031215613ef8575f80fd5b8235613f0381613ed3565b946020939093013593505050565b5f8060408385031215613f22575f80fd5b613f0383613d56565b5f60208284031215613f3b575f80fd5b5035919050565b5f805f60608486031215613f54575f80fd5b8335613f5f81613ed3565b92506020840135613f6f81613ed3565b929592945050506040919091013590565b80358015158114613d67575f80fd5b5f60208284031215613f9f575f80fd5b6117fa82613f80565b5f805f805f8060a08789031215613fbd575f80fd5b613fc687613d56565b95506020870135945060408701359350613fe260608801613f80565b925060808701356001600160401b03811115613ffc575f80fd5b613e4189828a01613d6c565b5f805f6040848603121561401a575f80fd5b61402384613d56565b925060208401356001600160401b0381111561403d575f80fd5b61404986828701613d6c565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171561409257614092614056565b604052919050565b5f6001600160401b038211156140b2576140b2614056565b50601f01601f191660200190565b5f805f606084860312156140d2575f80fd5b6140db84613d56565b925060208401356001600160401b038111156140f5575f80fd5b8401601f81018613614105575f80fd5b80356141186141138261409a565b61406a565b81815287602083850101111561412c575f80fd5b816020840160208301375f6020838301015280945050505061415060408501613db0565b90509250925092565b5f60608284031215614169575f80fd5b50919050565b5f805f805f60a08688031215614183575f80fd5b853561418e81613ed3565b945061419c60208701613d56565b9350604086013592506060860135915060808601356001600160401b038111156141c4575f80fd5b6141d088828901614159565b9150509295509295909350565b5f602082840312156141ed575f80fd5b81356117fa81613ed3565b5f805f805f805f8060e0898b03121561420f575f80fd5b883561421a81613ed3565b975061422860208a01613d56565b9650604089013595506060890135945060808901356001600160401b0380821115614251575f80fd5b61425d8c838d01613d6c565b909650945084915061427160a08c01613db0565b935060c08b0135915080821115614286575f80fd5b506142938b828c01614159565b9150509295985092959890939650565b5f80604083850312156142b4575f80fd5b6142bd83613d56565b91506142cb60208401613d56565b90509250929050565b5f805f805f805f805f60e08a8c0312156142ec575f80fd5b6142f58a613d56565b985060208a0135975060408a0135965060608a01356001600160401b038082111561431e575f80fd5b61432a8d838e01613d6c565b909850965086915061433e60808d01613db0565b955061434c60a08d01613f80565b945060c08c0135915080821115614361575f80fd5b5061436e8c828d01613d6c565b915080935050809150509295985092959850929598565b5f8060408385031215614396575f80fd5b82356143a181613ed3565b91506142cb60208401613f80565b5f805f805f608086880312156143c3575f80fd5b6143cc86613d56565b94506143da60208701613d56565b93506040860135925060608601356001600160401b038111156143fb575f80fd5b61440788828901613d6c565b969995985093965092949392505050565b5f8060408385031215614429575f80fd5b50508035926020909101359150565b5f8060408385031215614449575f80fd5b823561445481613ed3565b9150602083013561446481613ed3565b809150509250929050565b5f805f60608486031215614481575f80fd5b61448a84613d56565b925061449860208501613d56565b9150604084013590509250925092565b5f805f805f805f805f806101008b8d0312156144c2575f80fd5b6144cb8b613d56565b995060208b01356001600160401b03808211156144e6575f80fd5b6144f28e838f01613d6c565b909b50995089915061450660408e01613db0565b985060608d0135975060808d0135915061451f82613ed3565b90955060a08c0135945060c08c0135908082111561453b575f80fd5b506145488d828e01613d6c565b9150809450508092505060e08b013590509295989b9194979a5092959850565b5f805f806080858703121561457b575f80fd5b61458485613d56565b935061459260208601613d56565b925060408501356145a281613ed3565b9396929550929360600135925050565b600181811c908216806145c657607f821691505b60208210810361416957634e487b7160e01b5f52602260045260245ffd5b818382375f9101908152919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ed857610ed86145f3565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f61208f60408301848661461a565b5f808335601e19843603018112614674575f80fd5b8301803591506001600160401b0382111561468d575f80fd5b602001915036819003821315613da9575f80fd5b81810381811115610ed857610ed86145f3565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156137f857805f5260205f20601f840160051c810160208510156146ff5750805b601f840160051c820191505b81811015610feb575f815560010161470b565b81516001600160401b0381111561473757614737614056565b61474b8161474584546145b2565b846146da565b602080601f83116001811461477e575f84156147675750858301515b5f19600386901b1c1916600185901b1785556114d1565b5f85815260208120601f198616915b828110156147ac5788860151825594840194600190910190840161478d565b50858210156147c957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f61ffff80881683528087166020840152508460408301526080606083015261480660808301848661461a565b979650505050505050565b61ffff86168152608060208201525f61482e60808301868861461a565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201525f61486860c08301898b61461a565b6001600160401b038816604084015286606084015285608084015282810360a084015261489681858761461a565b9b9a5050505050505050505050565b6001600160401b038311156148bc576148bc614056565b6148d0836148ca83546145b2565b836146da565b5f601f841160018114614901575f85156148ea5750838201355b5f19600387901b1c1916600186901b178355610feb565b5f83815260208120601f198716915b828110156149305786850135825560209485019460019092019101614910565b508682101561494c575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561496e575f80fd5b81516001600160401b03811115614983575f80fd5b8201601f81018413614993575f80fd5b80516149a16141138261409a565b8181528560208385010111156149b5575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b61ffff85168152608060208201525f6149ee6080830186613e7a565b6001600160401b038516604084015282810360608401526148068185613e7a565b8082028115828204841417610ed857610ed86145f3565b634e487b7160e01b5f52601260045260245ffd5b5f82614a4857614a48614a26565b500490565b5f60018201614a5e57614a5e6145f3565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614a9290830186613e7a565b84151560608401528281036080840152614aac8185613e7a565b98975050505050505050565b5f8060408385031215614ac9575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614afe575f80fd5b81516117fa81613ed3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015614b595784516001600160a01b031683529383019391830191600101614b34565b50506001600160a01b03969096166060850152505050608001529392505050565b5f81518060208401855e5f93019283525090919050565b5f6117fa8284614b7a565b61ffff8616815260a060208201525f614bb860a0830187613e7a565b6001600160401b03861660408401528281036060840152614bd98186613e7a565b90508281036080840152614aac8185613e7a565b5f61010061ffff8b168352806020840152614c0a8184018b613e7a565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614c4a8186613e7a565b9150508260e08301529998505050505050505050565b606081525f614c726060830186613e7a565b6001600160401b039490941660208301525060400152919050565b5f82614c9b57614c9b614a26565b500690565b61ffff8716815260c060208201525f614cbc60c0830188613e7a565b8281036040840152614cce8188613e7a565b6001600160a01b0387811660608601528616608085015283810360a08501529050614cf98185613e7a565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201525f6001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250614aac6051830184614b7a56fea2646970667358221220095667e98708ef40f17e336ba12bca79411fccce8140608b51e371acf7ab120164736f6c63430008190033
Deployed Bytecode Sourcemap
85581:6629:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43150:842;;;;;;;;;;-1:-1:-1;43150:842:0;;;;;:::i;:::-;;:::i;:::-;;65379:213;;;;;;;;;;-1:-1:-1;65379:213:0;;;;;:::i;:::-;;:::i;:::-;;;2029:14:1;;2022:22;2004:41;;1992:2;1977:18;65379:213:0;;;;;;;;72290:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46764:123::-;;;;;;;;;;-1:-1:-1;46764:123:0;;;;;:::i;:::-;;:::i;74650:201::-;;;;;;;;;;-1:-1:-1;74650:201:0;;;;;:::i;:::-;;:::i;48667:142::-;;;;;;;;;;-1:-1:-1;48667:142:0;;;;;:::i;:::-;;:::i;46895:129::-;;;;;;;;;;-1:-1:-1;46895:129:0;;;;;:::i;:::-;;:::i;73419:108::-;;;;;;;;;;-1:-1:-1;73507:12:0;;73419:108;;;3623:25:1;;;3611:2;3596:18;73419:108:0;3477:177:1;91201:153:0;;;;;;;;;;-1:-1:-1;91201:153:0;;;;;:::i;:::-;;:::i;75431:261::-;;;;;;;;;;-1:-1:-1;75431:261:0;;;;;:::i;:::-;;:::i;91692:94::-;;;;;;;;;;-1:-1:-1;91692:94:0;;;;;:::i;:::-;;:::i;73261:93::-;;;;;;;;;;-1:-1:-1;73344:2:0;73261:93;;;4827:4:1;4815:17;;;4797:36;;4785:2;4770:18;73261:93:0;4655:184:1;65600:344:0;;;;;;;;;;-1:-1:-1;65600:344:0;;;;;:::i;:::-;;:::i;:::-;;;;5710:25:1;;;5766:2;5751:18;;5744:34;;;;5683:18;65600:344:0;5536:248:1;76101:238:0;;;;;;;;;;-1:-1:-1;76101:238:0;;;;;:::i;:::-;;:::i;91479:205::-;;;;;;;;;;-1:-1:-1;91479:205:0;;;;;:::i;:::-;;:::i;48907:250::-;;;;;;;;;;-1:-1:-1;48907:250:0;;;;;:::i;:::-;;:::i;42697:53::-;;;;;;;;;;-1:-1:-1;42697:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;47032:178;;;;;;;;;;-1:-1:-1;47032:178:0;;;;;:::i;:::-;;:::i;52735:37::-;;;;;;;;;;;;52771:1;52735:37;;86095:38;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6439:32:1;;;6421:51;;6409:2;6394:18;86095:38:0;6275:203:1;52801:33:0;;;;;;;;;;;;52833:1;52801:33;;89893:576;;;;;;;;;;-1:-1:-1;89893:576:0;;;;;:::i;:::-;;:::i;86021:26::-;;;;;;;;;;-1:-1:-1;86021:26:0;;;;;;;;;;;49752:85;;;;;;;;;;-1:-1:-1;49752:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91362:109;;;;;;;;;;-1:-1:-1;91362:109:0;;;;;:::i;:::-;;:::i;91794:193::-;;;;;;;;;;;;;:::i;51075:389::-;;;;;;;;;;-1:-1:-1;51075:389:0;;;;;:::i;:::-;;:::i;64232:356::-;;;;;;:::i;:::-;;:::i;73590:127::-;;;;;;;;;;-1:-1:-1;73590:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;73691:18:0;73664:7;73691:18;;;:9;:18;;;;;;;73590:127;41288:103;;;;;;;;;;;;;:::i;42567:51::-;;;;;;;;;;-1:-1:-1;42567:51:0;;;;;:::i;:::-;;:::i;90477:143::-;;;;;;;;;;-1:-1:-1;90477:143:0;;;;;:::i;:::-;;:::i;64596:586::-;;;;;;:::i;:::-;;:::i;52892:37::-;;;;;;;;;;;;;;;85688:28;;;;;;;;;;;;;;;;42625:65;;;;;;;;;;-1:-1:-1;42625:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;40647:87;;;;;;;;;;-1:-1:-1;40693:7:0;40720:6;-1:-1:-1;;;;;40720:6:0;40647:87;;84040:112;;;;;;;;;;;;;:::i;42757:23::-;;;;;;;;;;-1:-1:-1;42757:23:0;;;;-1:-1:-1;;;;;42757:23:0;;;72509:104;;;;;;;;;;;;;:::i;52938:83::-;;;;;;;;;;-1:-1:-1;52938:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47861:330;;;;;;;;;;-1:-1:-1;47861:330:0;;;;;:::i;:::-;;:::i;76842:436::-;;;;;;;;;;-1:-1:-1;76842:436:0;;;;;:::i;:::-;;:::i;65952:450::-;;;;;;;;;;-1:-1:-1;65952:450:0;;;;;:::i;:::-;;:::i;47572:281::-;;;;;;;;;;-1:-1:-1;47572:281:0;;;;;:::i;:::-;;:::i;73923:193::-;;;;;;;;;;-1:-1:-1;73923:193:0;;;;;:::i;:::-;;:::i;91995:109::-;;;;;;;;;;-1:-1:-1;91995:109:0;;;;;:::i;:::-;;:::i;42519:41::-;;;;;;;;;;;;;;;92112:95;;;;;;;;;;-1:-1:-1;92112:95:0;;;;;:::i;:::-;;:::i;48199:136::-;;;;;;;;;;-1:-1:-1;48199:136:0;;;;;:::i;:::-;;:::i;85850:19::-;;;;;;;;;;;;;;;;91026:167;;;;;;;;;;-1:-1:-1;91026:167:0;;;;;:::i;:::-;;:::i;86056:32::-;;;;;;;;;;-1:-1:-1;86056:32:0;;;;;;;-1:-1:-1;;;;;86056:32:0;;;42455:55;;;;;;;;;;;;42505:5;42455:55;;46509:247;;;;;;;;;;-1:-1:-1;46509:247:0;;;;;:::i;:::-;;:::i;90628:390::-;;;;;;;;;;-1:-1:-1;90628:390:0;;;;;:::i;:::-;;:::i;51693:810::-;;;;;;:::i;:::-;;:::i;74179:151::-;;;;;;;;;;-1:-1:-1;74179:151:0;;;;;:::i;:::-;;:::i;48343:262::-;;;;;;;;;;-1:-1:-1;48343:262:0;;;;;:::i;:::-;;:::i;86142:51::-;;;;;;;;;;-1:-1:-1;86142:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52841:42;;;;;;;;;;;;52882:1;52841:42;;54142:632;;;;;;;;;;-1:-1:-1;54142:632:0;;;;;:::i;:::-;;:::i;47357:207::-;;;;;;;;;;-1:-1:-1;47357:207:0;;;;;:::i;:::-;;:::i;41546:201::-;;;;;;;;;;-1:-1:-1;41546:201:0;;;;;:::i;:::-;;:::i;46198:254::-;;;;;;;;;;-1:-1:-1;46198:254:0;;;;;:::i;:::-;;:::i;85723:29::-;;;;;;;;;;;;;;;;84160:103;;;;;;;;;;-1:-1:-1;84250:4:0;84160:103;;43150:842;39278:10;43433;-1:-1:-1;;;;;43409:35:0;;43401:78;;;;-1:-1:-1;;;43401:78:0;;15901:2:1;43401:78:0;;;15883:21:1;15940:2;15920:18;;;15913:30;15979:32;15959:18;;;15952:60;16029:18;;43401:78:0;;;;;;;;;43521:32;;;43492:26;43521:32;;;:19;:32;;;;;43492:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43741:13;:20;43719:11;;:18;;:42;:70;;;;;43788:1;43765:13;:20;:24;43719:70;:124;;;;-1:-1:-1;43819:24:0;;;;;;43793:22;;;;43803:11;;;;43793:22;:::i;:::-;;;;;;;;:50;43719:124;43697:212;;;;-1:-1:-1;;;43697:212:0;;16921:2:1;43697:212:0;;;16903:21:1;16960:2;16940:18;;;16933:30;16999:34;16979:18;;;16972:62;-1:-1:-1;;;17050:18:1;;;17043:36;17096:19;;43697:212:0;16719:402:1;43697:212:0;43922:62;43941:11;43954;;43922:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43922:62:0;;;;;;;;;;;;;;;;;;;;;;43967:6;;-1:-1:-1;43922:62:0;-1:-1:-1;43975:8:0;;;;;;43922:62;;43975:8;;;;43922:62;;;;;;;;;-1:-1:-1;43922:18:0;;-1:-1:-1;;;43922:62:0:i;:::-;43324:668;43150:842;;;;;;:::o;65379:213::-;65481:4;-1:-1:-1;;;;;;65505:39:0;;-1:-1:-1;;;65505:39:0;;:79;;-1:-1:-1;;;;;;;;;;2712:40:0;;;65548:36;65498:86;65379:213;-1:-1:-1;;65379:213:0:o;72290:100::-;72344:13;72377:5;72370:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72290:100;:::o;46764:123::-;40533:13;:11;:13::i;:::-;46844:35:::1;::::0;-1:-1:-1;;;46844:35:0;;17300:6:1;17288:19;;46844:35:0::1;::::0;::::1;17270:38:1::0;46844:10:0::1;-1:-1:-1::0;;;;;46844:25:0::1;::::0;::::1;::::0;17243:18:1;;46844:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46764:123:::0;:::o;74650:201::-;74733:4;39278:10;74789:32;39278:10;74805:7;74814:6;74789:8;:32::i;:::-;-1:-1:-1;74839:4:0;;74650:201;-1:-1:-1;;;74650:201:0:o;48667:142::-;40533:13;:11;:13::i;:::-;48758:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;48667:142::o;46895:129::-;40533:13;:11;:13::i;:::-;46978:38:::1;::::0;-1:-1:-1;;;46978:38:0;;17300:6:1;17288:19;;46978:38:0::1;::::0;::::1;17270::1::0;46978:10:0::1;-1:-1:-1::0;;;;;46978:28:0::1;::::0;::::1;::::0;17243:18:1;;46978:38:0::1;17126:188:1::0;91201:153:0;40533:13;:11;:13::i;:::-;91308:16:::1;:38:::0;91201:153::o;75431:261::-;75528:4;39278:10;75586:38;75602:4;39278:10;75617:6;75586:15;:38::i;:::-;75635:27;75645:4;75651:2;75655:6;75635:9;:27::i;:::-;-1:-1:-1;75680:4:0;;75431:261;-1:-1:-1;;;;75431:261:0:o;91692:94::-;40533:13;:11;:13::i;:::-;91756:12:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;91756:22:0;;::::1;::::0;;;::::1;::::0;;91692:94::o;65600:344::-;65814:14;65830:11;65861:75;65878:11;65891:10;65903:7;65912;65921:14;;65861:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65861:16:0;;-1:-1:-1;;;65861:75:0:i;:::-;65854:82;;;;65600:344;;;;;;;;;:::o;76101:238::-;76189:4;39278:10;76245:64;39278:10;76261:7;76298:10;76270:25;39278:10;76261:7;76270:9;:25::i;:::-;:38;;;;:::i;:::-;76245:8;:64::i;91479:205::-;40533:13;:11;:13::i;:::-;91606:1:::1;91591:12;:16;91583:47;;;::::0;-1:-1:-1;;;91583:47:0;;17783:2:1;91583:47:0::1;::::0;::::1;17765:21:1::0;17822:2;17802:18;;;17795:30;-1:-1:-1;;;17841:18:1;;;17834:48;17899:18;;91583:47:0::1;17581:342:1::0;91583:47:0::1;91641:20;:35:::0;91479:205::o;48907:250::-;49049:32;;;49003:4;49049:32;;;:19;:32;;;;;49020:61;;49003:4;;49049:32;49020:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49137:11;;49127:22;;;;;;;:::i;:::-;;;;;;;;49109:13;49099:24;;;;;;:50;49092:57;;;48907:250;;;;;:::o;47032:178::-;40533:13;:11;:13::i;:::-;47147:55:::1;::::0;-1:-1:-1;;;47147:55:0;;-1:-1:-1;;;;;47147:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;47177:11;;47190;;;;47147:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;89893:576:::0;89963:6;89949:10;;:20;89945:517;;89997:2;89986:8;:13;;;90014:9;:14;89893:576;:::o;89945:517::-;90068:6;90050:10;;90063:1;90050:14;;;;:::i;:::-;:24;90046:416;;90102:2;90091:8;:13;;;90119:9;:14;89893:576;:::o;90046:416::-;90173:6;90155:10;;90168:1;90155:14;;;;:::i;:::-;:24;90151:311;;90207:2;90196:8;:13;;;90224:9;:14;89893:576;:::o;90151:311::-;90279:6;90260:10;;90273:2;90260:15;;;;:::i;:::-;:25;90256:206;;90313:2;90302:8;:13;;;90330:9;:14;89893:576;:::o;90256:206::-;90385:6;90366:10;;90379:2;90366:15;;;;:::i;:::-;:25;90362:100;;90419:2;90408:8;:13;;;90436:9;:14;90362:100;89893:576;:::o;91362:109::-;40533:13;:11;:13::i;:::-;91439:11:::1;:24:::0;91362:109::o;91794:193::-;40533:13;:11;:13::i;:::-;91847:14:::1;::::0;;;::::1;;;91846:15;91838:46;;;::::0;-1:-1:-1;;;91838:46:0;;18732:2:1;91838:46:0::1;::::0;::::1;18714:21:1::0;18771:2;18751:18;;;18744:30;-1:-1:-1;;;18790:18:1;;;18783:48;18848:18;;91838:46:0::1;18530:342:1::0;91838:46:0::1;91895:14;:21:::0;;91940:12:::1;91927:10;:25:::0;-1:-1:-1;;91963:16:0;;;;;91794:193::o;51075:389::-;39278:10;51332:4;51308:29;51300:80;;;;-1:-1:-1;;;51300:80:0;;19079:2:1;51300:80:0;;;19061:21:1;19118:2;19098:18;;;19091:30;19157:34;19137:18;;;19130:62;-1:-1:-1;;;19208:18:1;;;19201:36;19254:19;;51300:80:0;18877:402:1;51300:80:0;51391:65;51413:11;51426;;51391:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51391:65:0;;;;;;;;;;;;;;;;;;;;;;51439:6;;-1:-1:-1;51391:65:0;-1:-1:-1;51447:8:0;;;;;;51391:65;;51447:8;;;;51391:65;;;;;;;;;-1:-1:-1;51391:21:0;;-1:-1:-1;;;51391:65:0:i;:::-;51075:389;;;;;;:::o;64232:356::-;64449:131;64455:5;64462:11;64475:10;64487:7;64496:25;;;;:11;:25;:::i;:::-;64523:29;;;;;;;;:::i;:::-;64554:25;;;;:11;:25;:::i;:::-;64449:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64449:5:0;;-1:-1:-1;;;64449:131:0:i;41288:103::-;40533:13;:11;:13::i;:::-;41353:30:::1;41380:1;41353:18;:30::i;:::-;41288:103::o:0;42567:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;90477:143::-;40533:13;:11;:13::i;:::-;90571:17:::1;:41:::0;;-1:-1:-1;;;;;90571:41:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;90571:41:0;;::::1;::::0;;;::::1;::::0;;90477:143::o;64596:586::-;64882:292;64909:5;64929:11;64955:10;64980:7;65002:8;;64882:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65025:14:0;;-1:-1:-1;65054:25:0;;-1:-1:-1;;65054:25:0;;;:11;:25;:::i;:::-;65094:29;;;;;;;;:::i;:::-;65138:25;;;;:11;:25;:::i;:::-;64882:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64882:12:0;;-1:-1:-1;;;64882:292:0:i;:::-;;64596:586;;;;;;;;:::o;84040:112::-;84107:4;84131:13;73507:12;;;73419:108;84131:13;84124:20;;84040:112;:::o;72509:104::-;72565:13;72598:7;72591:14;;;;;:::i;47861:330::-;47985:35;;;47965:17;47985:35;;;:19;:35;;;;;47965:55;;47940:12;;47965:17;47985:35;47965:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48039:4;:11;48054:1;48039:16;48031:58;;;;-1:-1:-1;;;48031:58:0;;20272:2:1;48031:58:0;;;20254:21:1;20311:2;20291:18;;;20284:30;20350:31;20330:18;;;20323:59;20399:18;;48031:58:0;20070:353:1;48031:58:0;48107:31;48118:1;48135:2;48121:4;:11;:16;;;;:::i;:::-;48107:4;;:31;:10;:31::i;:::-;48100:38;47861:330;-1:-1:-1;;;47861:330:0:o;76842:436::-;76935:4;39278:10;76935:4;77018:25;39278:10;77035:7;77018:9;:25::i;:::-;76991:52;;77082:15;77062:16;:35;;77054:85;;;;-1:-1:-1;;;77054:85:0;;20763:2:1;77054:85:0;;;20745:21:1;20802:2;20782:18;;;20775:30;20841:34;20821:18;;;20814:62;-1:-1:-1;;;20892:18:1;;;20885:35;20937:19;;77054:85:0;20561:401:1;77054:85:0;77175:60;77184:5;77191:7;77219:15;77200:16;:34;77175:8;:60::i;65952:450::-;66239:14;66255:11;66286:108;66310:11;66323:10;66335:7;66344:8;;66286:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66286:108:0;;;;;;;;;;;;;;;;;;;;;;66354:14;;-1:-1:-1;66370:7:0;;-1:-1:-1;66286:108:0;66379:14;;;;;;66286:108;;66379:14;;;;66286:108;;;;;;;;;-1:-1:-1;66286:23:0;;-1:-1:-1;;;66286:108:0:i;:::-;66279:115;;;;65952:450;;;;;;;;;;;;:::o;47572:281::-;40533:13;:11;:13::i;:::-;47744:14:::1;;47768:4;47727:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;47727:47:0;;::::1;::::0;;;;;;47689:35:::1;::::0;::::1;;::::0;;;:19:::1;47727:47;47689:35:::0;;;:85:::1;::::0;:35;:85:::1;:::i;:::-;;47790:55;47814:14;47830;;47790:55;;;;;;;;:::i;:::-;;;;;;;;47572:281:::0;;;:::o;73923:193::-;74002:4;39278:10;74058:28;39278:10;74075:2;74079:6;74058:9;:28::i;91995:109::-;40533:13;:11;:13::i;:::-;92067::::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;92067:29:0;;::::1;::::0;;;::::1;::::0;;91995:109::o;92112:95::-;40533:13;:11;:13::i;:::-;92179:20:::1;92191:7;92179:11;:20::i;48199:136::-:0;40533:13;:11;:13::i;:::-;48269:8:::1;:20:::0;;-1:-1:-1;;;;;;48269:20:0::1;-1:-1:-1::0;;;;;48269:20:0;::::1;::::0;;::::1;::::0;;;48305:22:::1;::::0;6421:51:1;;;48305:22:0::1;::::0;6409:2:1;6394:18;48305:22:0::1;;;;;;;48199:136:::0;:::o;91026:167::-;40533:13;:11;:13::i;:::-;-1:-1:-1;;;;;91142:29:0;;;::::1;;::::0;;;:19:::1;:29;::::0;;;;:43;;-1:-1:-1;;91142:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;91026:167::o;46509:247::-;40533:13;:11;:13::i;:::-;46686:62:::1;::::0;-1:-1:-1;;;46686:62:0;;-1:-1:-1;;;;;46686:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;46707:8;;46717;;46727:11;;46740:7;;;;46686:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;90628:390:::0;40533:13;:11;:13::i;:::-;90813:2:::1;90790:19;:25;;:55;;;;;90843:2;90819:20;:26;;90790:55;90768:130;;;::::0;-1:-1:-1;;;90768:130:0;;24201:2:1;90768:130:0::1;::::0;::::1;24183:21:1::0;24240:2;24220:18;;;24213:30;24279:27;24259:18;;;24252:55;24324:18;;90768:130:0::1;23999:349:1::0;90768:130:0::1;90909:8;:30:::0;;;;90950:9:::1;:32:::0;90993:9:::1;:17:::0;;-1:-1:-1;;90993:17:0::1;::::0;;90628:390::o;51693:810::-;51947:27;;;51925:19;51947:27;;;:14;:27;;;;;;:40;;;;51975:11;;;;51947:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51947:48:0;;;;;;;;;;;;-1:-1:-1;51947:48:0;52006:73;;;;-1:-1:-1;;;52006:73:0;;24555:2:1;52006:73:0;;;24537:21:1;24594:2;24574:18;;;24567:30;24633:34;24613:18;;;24606:62;-1:-1:-1;;;24684:18:1;;;24677:33;24727:19;;52006:73:0;24353:399:1;52006:73:0;52121:11;52108:8;;52098:19;;;;;;;:::i;:::-;;;;;;;;:34;52090:80;;;;-1:-1:-1;;;52090:80:0;;24959:2:1;52090:80:0;;;24941:21:1;24998:2;24978:18;;;24971:30;25037:34;25017:18;;;25010:62;-1:-1:-1;;;25088:18:1;;;25081:31;25129:19;;52090:80:0;24757:397:1;52090:80:0;52218:27;;;52277:1;52218:27;;;:14;:27;;;;;;:40;;;;52246:11;;;;52218:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52218:48:0;;;;;;;;;;;;:61;;;;52348:65;;;;;;;;;;;;;;;;;;;52370:11;;52383;;52348:65;;;;;;52383:11;52348:65;;52383:11;52348:65;;;;;;;;;-1:-1:-1;;52348:65:0;;;;;;;;;;;;;;;;;;;;;;52396:6;;-1:-1:-1;52348:65:0;-1:-1:-1;52404:8:0;;;;;;52348:65;;52404:8;;;;52348:65;;;;;;;;;-1:-1:-1;52348:21:0;;-1:-1:-1;;;52348:65:0:i;:::-;52429:66;52449:11;52462;;52475:6;52483:11;52429:66;;;;;;;;;;:::i;:::-;;;;;;;;51869:634;51693:810;;;;;;:::o;74179:151::-;-1:-1:-1;;;;;74295:18:0;;;74268:7;74295:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;74179:151::o;48343:262::-;40533:13;:11;:13::i;:::-;48483:28:::1;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;48550:47;;25880:34:1;;;25930:18;;25923:43;;;;25982:18;;;25975:34;;;48550:47:0::1;::::0;25843:2:1;25828:18;48550:47:0::1;25657:358:1::0;54142:632:0;39278:10;54454:4;54430:29;54422:73;;;;-1:-1:-1;;;54422:73:0;;26222:2:1;54422:73:0;;;26204:21:1;26261:2;26241:18;;;26234:30;26300:33;26280:18;;;26273:61;26351:18;;54422:73:0;26020:355:1;54422:73:0;54535:42;54557:4;54564:3;54569:7;54535:13;:42::i;:::-;54525:52;;54623:3;-1:-1:-1;;;;;54593:43:0;54610:11;54593:43;;;54628:7;54593:43;;;;3623:25:1;;3611:2;3596:18;;3477:177;54593:43:0;;;;;;;;54666:100;;-1:-1:-1;;;54666:100:0;;-1:-1:-1;;;;;54666:22:0;;;;;54694:11;;54666:100;;54707:11;;54720;;;;54733:6;;54741:5;;54748:7;;54757:8;;;;54666:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54142:632;;;;;;;;;;:::o;47357:207::-;40533:13;:11;:13::i;:::-;47458:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;47496:5:::0;;47458:35;:43:::1;:::i;:::-;;47517:39;47534:14;47550:5;;47517:39;;;;;;;;:::i;41546:201::-:0;40533:13;:11;:13::i;:::-;-1:-1:-1;;;;;41635:22:0;::::1;41627:73;;;::::0;-1:-1:-1;;;41627:73:0;;28539:2:1;41627:73:0::1;::::0;::::1;28521:21:1::0;28578:2;28558:18;;;28551:30;28617:34;28597:18;;;28590:62;-1:-1:-1;;;28668:18:1;;;28661:36;28714:19;;41627:73:0::1;28337:402:1::0;41627:73:0::1;41711:28;41730:8;41711:18;:28::i;46198:254::-:0;46376:68;;-1:-1:-1;;;46376:68:0;;28981:6:1;29014:15;;;46376:68:0;;;28996:34:1;29066:15;;29046:18;;;29039:43;46425:4:0;29098:18:1;;;29091:60;29167:18;;;29160:34;;;46344:12:0;;46376:10;-1:-1:-1;;;;;46376:20:0;;;;28943:19:1;;46376:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46376:68:0;;;;;;;;;;;;:::i;:::-;46369:75;46198:254;-1:-1:-1;;;;;46198:254:0:o;50121:563::-;50314:12;50328:19;50351:203;50399:9;50423:3;50464:34;;;50500:11;50513;50526:6;50534:8;50441:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50441:102:0;;;;;;;;;;;;;;-1:-1:-1;;;;;50441:102:0;-1:-1:-1;;;;;;50441:102:0;;;;;;;;;;50359:4;;50351:203;;:33;:203::i;:::-;50313:241;;;;50570:7;50565:112;;50594:71;50614:11;50627;50640:6;50648:8;50658:6;50594:19;:71::i;40812:132::-;40693:7;40720:6;-1:-1:-1;;;;;40720:6:0;39278:10;40876:23;40868:68;;;;-1:-1:-1;;;40868:68:0;;30635:2:1;40868:68:0;;;30617:21:1;;;30654:18;;;30647:30;30713:34;30693:18;;;30686:62;30765:18;;40868:68:0;30433:356:1;80835:346:0;-1:-1:-1;;;;;80937:19:0;;80929:68;;;;-1:-1:-1;;;80929:68:0;;30996:2:1;80929:68:0;;;30978:21:1;31035:2;31015:18;;;31008:30;31074:34;31054:18;;;31047:62;-1:-1:-1;;;31125:18:1;;;31118:34;31169:19;;80929:68:0;30794:400:1;80929:68:0;-1:-1:-1;;;;;81016:21:0;;81008:68;;;;-1:-1:-1;;;81008:68:0;;31401:2:1;81008:68:0;;;31383:21:1;31440:2;31420:18;;;31413:30;31479:34;31459:18;;;31452:62;-1:-1:-1;;;31530:18:1;;;31523:32;31572:19;;81008:68:0;31199:398:1;81008:68:0;-1:-1:-1;;;;;81089:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;81141:32;;3623:25:1;;;81141:32:0;;3596:18:1;81141:32:0;;;;;;;80835:346;;;:::o;81472:419::-;81573:24;81600:25;81610:5;81617:7;81600:9;:25::i;:::-;81573:52;;-1:-1:-1;;81640:16:0;:37;81636:248;;81722:6;81702:16;:26;;81694:68;;;;-1:-1:-1;;;81694:68:0;;31804:2:1;81694:68:0;;;31786:21:1;31843:2;31823:18;;;31816:30;31882:31;31862:18;;;31855:59;31931:18;;81694:68:0;31602:353:1;81694:68:0;81806:51;81815:5;81822:7;81850:6;81831:16;:25;81806:8;:51::i;:::-;81562:329;81472:419;;;:::o;87411:1785::-;87552:1;87543:6;:10;87535:61;;;;-1:-1:-1;;;87535:61:0;;32162:2:1;87535:61:0;;;32144:21:1;32201:2;32181:18;;;32174:30;32240:34;32220:18;;;32213:62;-1:-1:-1;;;32291:18:1;;;32284:36;32337:19;;87535:61:0;31960:402:1;87535:61:0;87614:14;;;;;;;87609:115;;40693:7;40720:6;-1:-1:-1;;;;;87653:15:0;;;40720:6;;87653:15;;:32;;-1:-1:-1;40693:7:0;40720:6;-1:-1:-1;;;;;87672:13:0;;;40720:6;;87672:13;87653:32;87645:67;;;;-1:-1:-1;;;87645:67:0;;32569:2:1;87645:67:0;;;32551:21:1;32608:2;32588:18;;;32581:30;-1:-1:-1;;;32627:18:1;;;32620:52;32689:18;;87645:67:0;32367:346:1;87645:67:0;87770:9;;87736:17;;87770:9;;87766:64;;;87796:22;87805:12;87796:8;:22::i;:::-;87854:13;-1:-1:-1;;;;;87846:21:0;:4;-1:-1:-1;;;;;87846:21:0;;:49;;;;-1:-1:-1;;;;;;87872:23:0;;;;;;:19;:23;;;;;;;;87871:24;87846:49;87842:398;;;87964:16;;87954:6;87938:13;87948:2;-1:-1:-1;;;;;73691:18:0;73664:7;73691:18;;;:9;:18;;;;;;;73590:127;87938:13;:22;;;;:::i;:::-;:42;;87912:124;;;;-1:-1:-1;;;87912:124:0;;32920:2:1;87912:124:0;;;32902:21:1;32959:2;32939:18;;;32932:30;-1:-1:-1;;;32978:18:1;;;32971:50;33038:18;;87912:124:0;32718:344:1;87912:124:0;88069:11;;88059:6;:21;;88051:50;;;;-1:-1:-1;;;88051:50:0;;33269:2:1;88051:50:0;;;33251:21:1;33308:2;33288:18;;;33281:30;-1:-1:-1;;;33327:18:1;;;33320:46;33383:18;;88051:50:0;33067:340:1;88051:50:0;88120:12;;;;;;;88116:90;;;88187:3;88175:8;;88166:6;:17;;;;:::i;:::-;88165:25;;;;:::i;:::-;88153:37;;88116:90;88222:4;:6;;;:4;:6;;;:::i;:::-;;;;;;87842:398;88262:13;-1:-1:-1;;;;;88256:19:0;:2;-1:-1:-1;;;;;88256:19:0;;:49;;;;-1:-1:-1;;;;;;88280:25:0;;;;;;:19;:25;;;;;;;;88279:26;88256:49;88252:237;;;88340:11;;88330:6;:21;;88322:50;;;;-1:-1:-1;;;88322:50:0;;33269:2:1;88322:50:0;;;33251:21:1;33308:2;33288:18;;;33281:30;-1:-1:-1;;;33327:18:1;;;33320:46;33383:18;;88322:50:0;33067:340:1;88322:50:0;88391:12;;;;;;;88387:91;;;88459:3;88446:9;;88437:6;:18;;;;:::i;:::-;88436:26;;;;:::i;:::-;88424:38;;88387:91;88550:4;88501:28;73691:18;;;:9;:18;;;;;;88620:20;;88596:44;;;;;;;88671:49;;-1:-1:-1;88708:12:0;;;;;;;88707:13;88671:49;:87;;;;;88745:13;-1:-1:-1;;;;;88737:21:0;:4;-1:-1:-1;;;;;88737:21:0;;;88671:87;:130;;;;-1:-1:-1;;;;;;88776:25:0;;;;;;:19;:25;;;;;;;;88775:26;88671:130;:169;;;;;88825:15;;88818:4;;:22;88671:169;88653:259;;;88867:33;88879:20;;88867:11;:33::i;:::-;88928:13;;88924:265;;88958:18;88979;88988:9;88979:6;:18;:::i;:::-;88958:39;;89012:47;89028:4;89042;89049:9;89012:15;:47::i;:::-;89074:37;89090:4;89096:2;89100:10;89074:15;:37::i;:::-;88943:180;88924:265;;;89144:33;89160:4;89166:2;89170:6;89144:15;:33::i;54968:471::-;55174:14;55190:11;55258:20;55281:47;55300:10;55312:15;55319:7;55312:6;:15::i;:::-;61657:48;;;52833:1;61657:48;;;40537:49:1;40602:11;;;40595:27;;;;40678:3;40656:16;;;;-1:-1:-1;;;;;;40652:51:1;40638:12;;;40631:73;61657:48:0;;;;;;;;;40720:12:1;;;;61657:48:0;;;61528:185;55281:47;55346:85;;-1:-1:-1;;;55346:85:0;;55258:70;;-1:-1:-1;;;;;;55346:10:0;:23;;;;:85;;55370:11;;55391:4;;55258:70;;55407:7;;55416:14;;55346:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55339:92;;;;;54968:471;;;;;;;;:::o;56045:558::-;56240:16;56259:19;:8;56240:16;56259;:19::i;:::-;56240:38;-1:-1:-1;56295:21:0;;;56291:305;;56333:52;56342:11;56355;56368:6;56376:8;56333;:52::i;:::-;56291:305;;;-1:-1:-1;;56407:30:0;;;;56403:193;;56454:59;56470:11;56483;56496:6;56504:8;56454:15;:59::i;56403:193::-;56546:38;;-1:-1:-1;;;56546:38:0;;35081:2:1;56546:38:0;;;35063:21:1;35120:2;35100:18;;;35093:30;35159;35139:18;;;35132:58;35207:18;;56546:38:0;34879:352:1;56611:840:0;56880:11;56904:66;56919:11;56880;56941:14;56880:11;56904:14;:66::i;:::-;56996:20;57008:7;56996:11;:20::i;:::-;-1:-1:-1;56983:33:0;-1:-1:-1;57036:50:0;57047:5;57054:11;57067:10;56983:33;57036:10;:50::i;:::-;57027:59;;57154:1;57145:6;:10;57137:48;;;;-1:-1:-1;;;57137:48:0;;35438:2:1;57137:48:0;;;35420:21:1;35477:2;35457:18;;;35450:30;-1:-1:-1;;;35496:18:1;;;35489:55;35561:18;;57137:48:0;35236:349:1;57137:48:0;57198:22;57223:46;57242:10;57254:14;57261:6;57254;:14::i;57223:46::-;57198:71;;57280:94;57288:11;57301:9;57312:14;57328:18;57348:14;57364:9;57280:7;:94::i;:::-;57424:10;57417:5;-1:-1:-1;;;;;57392:51:0;57404:11;57392:51;;;57436:6;57392:51;;;;3623:25:1;;3611:2;3596:18;;3477:177;57392:51:0;;;;;;;;56893:558;56611:840;;;;;;;;;:::o;41907:191::-;41981:16;42000:6;;-1:-1:-1;;;;;42017:17:0;;;-1:-1:-1;;;;;;42017:17:0;;;;;;42050:40;;42000:6;;;;;;;42050:40;;41981:16;42050:40;41970:128;41907:191;:::o;57924:995::-;58264:11;58288:77;58303:11;52882:1;58334:14;-1:-1:-1;;;;;58288:77:0;;:14;:77::i;:::-;58391:20;58403:7;58391:11;:20::i;:::-;-1:-1:-1;58378:33:0;-1:-1:-1;58431:50:0;58442:5;58449:11;58462:10;58378:33;58431:10;:50::i;:::-;58422:59;;58509:1;58500:6;:10;58492:48;;;;-1:-1:-1;;;58492:48:0;;35438:2:1;58492:48:0;;;35420:21:1;35477:2;35457:18;;;35450:30;-1:-1:-1;;;35496:18:1;;;35489:55;35561:18;;58492:48:0;35236:349:1;58492:48:0;58621:22;58646:91;58672:10;58684;58696:14;58703:6;58696;:14::i;:::-;58712:8;58722:14;58646:25;:91::i;:::-;58621:116;;58748:94;58756:11;58769:9;58780:14;58796:18;58816:14;58832:9;58748:7;:94::i;:::-;58892:10;58885:5;-1:-1:-1;;;;;58860:51:0;58872:11;58860:51;;;58904:6;58860:51;;;;3623:25:1;;3611:2;3596:18;;3477:177;58860:51:0;;;;;;;;58277:642;57924:995;;;;;;;;;;;:::o;20412:2833::-;20532:12;20581:7;20565:12;20581:7;20575:2;20565:12;:::i;:::-;:23;;20557:50;;;;-1:-1:-1;;;20557:50:0;;35792:2:1;20557:50:0;;;35774:21:1;35831:2;35811:18;;;35804:30;-1:-1:-1;;;35850:18:1;;;35843:44;35904:18;;20557:50:0;35590:338:1;20557:50:0;20643:16;20652:7;20643:6;:16;:::i;:::-;20626:6;:13;:33;;20618:63;;;;-1:-1:-1;;;20618:63:0;;36135:2:1;20618:63:0;;;36117:21:1;36174:2;36154:18;;;36147:30;-1:-1:-1;;;36193:18:1;;;36186:47;36250:18;;20618:63:0;35933:341:1;20618:63:0;20694:22;20760:15;;20789:2005;;;;22938:4;22932:11;22919:24;;23127:1;23116:9;23109:20;23177:4;23166:9;23162:20;23156:4;23149:34;20753:2445;;20789:2005;20974:4;20968:11;20955:24;;21643:2;21634:7;21630:16;22031:9;22024:17;22018:4;22014:28;22002:9;21991;21987:25;21983:60;22080:7;22076:2;22072:16;22337:6;22323:9;22316:17;22310:4;22306:28;22294:9;22286:6;22282:22;22278:57;22274:70;22108:434;22371:3;22367:2;22364:11;22108:434;;;22513:9;;22502:21;;22413:4;22405:13;;;;22446;22108:434;;;-1:-1:-1;;22562:26:0;;;22774:2;22757:11;-1:-1:-1;;22753:25:0;22747:4;22740:39;-1:-1:-1;20753:2445:0;-1:-1:-1;23228:9:0;20412:2833;-1:-1:-1;;;;20412:2833:0:o;55447:590::-;55724:14;55740:11;55811:20;55834:92;55860:10;55872;55884:15;55891:7;55884:6;:15::i;55834:92::-;55944:85;;-1:-1:-1;;;55944:85:0;;55811:115;;-1:-1:-1;;;;;;55944:10:0;:23;;;;:85;;55968:11;;55989:4;;55811:115;;56005:7;;56014:14;;55944:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55937:92;;;;;55447:590;;;;;;;;;;:::o;89204:681::-;86236:12;:19;;-1:-1:-1;;86236:19:0;;;;;89372:16:::1;::::0;;89386:1:::1;89372:16:::0;;;;;::::1;::::0;;-1:-1:-1;;89372:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;89372:16:0::1;89348:40;;89417:4;89399;89404:1;89399:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;89399:23:0::1;;;-1:-1:-1::0;;;;;89399:23:0::1;;;::::0;::::1;89443:15;-1:-1:-1::0;;;;;89443:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89433:4;89438:1;89433:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;89433:32:0::1;;;-1:-1:-1::0;;;;;89433:32:0::1;;;::::0;::::1;89478:122;89509:4;89537:15;89568:21;89478:8;:122::i;:::-;89819:17;::::0;89639:238:::1;::::0;-1:-1:-1;;;89639:238:0;;-1:-1:-1;;;;;89639:15:0::1;:66:::0;::::1;::::0;::::1;::::0;:238:::1;::::0;89720:21;;89756:1:::1;::::0;89800:4;;89819:17;;;::::1;::::0;;::::1;::::0;89851:15:::1;::::0;89639:238:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;86278:12:0;:20;;-1:-1:-1;;86278:20:0;;;-1:-1:-1;;;;89204:681:0:o;85008:425::-;85142:4;39278:10;85292:4;-1:-1:-1;;;;;85275:22:0;;;;;;:42;;;85310:7;-1:-1:-1;;;;;85301:16:0;:5;-1:-1:-1;;;;;85301:16:0;;;85275:42;85271:88;;;85319:40;85335:5;85342:7;85351;85319:15;:40::i;:::-;85370:30;85380:5;85387:3;85392:7;85370:9;:30::i;:::-;-1:-1:-1;85418:7:0;;85008:425;-1:-1:-1;;;85008:425:0:o;6466:1309::-;6625:4;6631:12;6693;6716:13;6740:24;6777:8;6767:19;;-1:-1:-1;;;;;6767:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6767:19:0;;6740:46;;7296:1;7266;7228:9;7222:16;7189:4;7178:9;7174:20;7139:1;7100:7;7070:4;7047:275;7035:287;;7391:16;7380:27;;7436:8;7427:7;7424:21;7421:78;;;7476:8;7465:19;;7421:78;7586:7;7573:11;7566:28;7708:7;7705:1;7698:4;7685:11;7681:22;7666:50;7745:8;;;;-1:-1:-1;6466:1309:0;-1:-1:-1;;;;;;6466:1309:0:o;50692:375::-;50968:8;50958:19;;;;;;50907:14;:27;50922:11;50907:27;;;;;;;;;;;;;;;50935:11;50907:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50907:48:0;;;;;;;;;:70;;;;50993:66;;;;51007:11;;51020;;50948:6;;51041:8;;51051:7;;50993:66;:::i;:::-;;;;;;;;50692:375;;;;;:::o;77748:806::-;-1:-1:-1;;;;;77845:18:0;;77837:68;;;;-1:-1:-1;;;77837:68:0;;38988:2:1;77837:68:0;;;38970:21:1;39027:2;39007:18;;;39000:30;39066:34;39046:18;;;39039:62;-1:-1:-1;;;39117:18:1;;;39110:35;39162:19;;77837:68:0;38786:401:1;77837:68:0;-1:-1:-1;;;;;77924:16:0;;77916:64;;;;-1:-1:-1;;;77916:64:0;;39394:2:1;77916:64:0;;;39376:21:1;39433:2;39413:18;;;39406:30;39472:34;39452:18;;;39445:62;-1:-1:-1;;;39523:18:1;;;39516:33;39566:19;;77916:64:0;39192:399:1;77916:64:0;-1:-1:-1;;;;;78066:15:0;;78044:19;78066:15;;;:9;:15;;;;;;78100:21;;;;78092:72;;;;-1:-1:-1;;;78092:72:0;;39798:2:1;78092:72:0;;;39780:21:1;39837:2;39817:18;;;39810:30;39876:34;39856:18;;;39849:62;-1:-1:-1;;;39927:18:1;;;39920:36;39973:19;;78092:72:0;39596:402:1;78092:72:0;-1:-1:-1;;;;;78200:15:0;;;;;;;:9;:15;;;;;;78218:20;;;78200:38;;78418:13;;;;;;;;;;:23;;;;;;78470:26;;;;;;78232:6;3623:25:1;;3611:2;3596:18;;3477:177;78470:26:0;;;;;;;;78509:37;82491:91;60963:238;61024:6;;61059:22;85527:9;61059:7;:22;:::i;:::-;61043:38;-1:-1:-1;;;;;;61100:28:0;;;61092:67;;;;-1:-1:-1;;;61092:67:0;;40205:2:1;61092:67:0;;;40187:21:1;40244:2;40224:18;;;40217:30;40283:28;40263:18;;;40256:56;40329:18;;61092:67:0;40003:350:1;23621:307:0;23695:5;23738:10;:6;23747:1;23738:10;:::i;:::-;23721:6;:13;:27;;23713:59;;;;-1:-1:-1;;;23713:59:0;;40945:2:1;23713:59:0;;;40927:21:1;40984:2;40964:18;;;40957:30;-1:-1:-1;;;41003:18:1;;;40996:49;41062:18;;23713:59:0;40743:343:1;23713:59:0;-1:-1:-1;23852:29:0;23868:3;23852:29;23846:36;;23621:307::o;57459:457::-;57614:10;57626:15;57645:28;57664:8;57645:18;:28::i;:::-;57613:60;;-1:-1:-1;57613:60:0;-1:-1:-1;;;;;;57688:16:0;;57684:69;;57734:6;57721:20;;57684:69;57765:11;57779:16;57786:8;57779:6;:16::i;:::-;57765:30;;57815:34;57825:11;57838:2;57842:6;57815:9;:34::i;:::-;57806:43;;57897:2;-1:-1:-1;;;;;57867:41:0;57884:11;57867:41;;;57901:6;57867:41;;;;3623:25:1;;3611:2;3596:18;;3477:177;57867:41:0;;;;;;;;57602:314;;;57459:457;;;;:::o;58927:1902::-;59108:12;59122:10;59134:15;59151:27;59180:17;59201:35;59227:8;59201:25;:35::i;:::-;59107:129;;;;;;;;;;59249:13;59265:15;:28;59281:11;59265:28;;;;;;;;;;;;;;;59294:11;59265:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59265:49:0;;;;;;;;;;;;;;-1:-1:-1;59339:16:0;59346:8;59339:6;:16::i;:::-;59325:30;;59483:8;59478:167;;59517:45;59527:11;59548:4;59555:6;59517:9;:45::i;:::-;59577:28;;;;;;;:15;:28;;;;;;;:41;;59508:54;;-1:-1:-1;59629:4:0;;59577:41;;59606:11;;59577:41;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59577:49:0;;;;;;;;;;:56;;-1:-1:-1;;59577:56:0;;;;;;;;;;59478:167;-1:-1:-1;;;;;60923:20:0;;;59657:97;;59699:22;;-1:-1:-1;;;;;6439:32:1;;6421:51;;59699:22:0;;6409:2:1;6394:18;59699:22:0;;;;;;;59736:7;;;;;;;;;59657:97;59828:11;59876;59913:6;59953:8;59988:4;60017:2;60045:6;60093:14;59808:17;60178:8;:33;;60201:10;-1:-1:-1;;;;;60178:33:0;;;;60189:9;60178:33;60167:44;;60223:12;60237:19;60260:230;60308:9;60332:3;60373:31;;;60406:10;60418;60430:5;60437;60444:3;60449:7;60458:15;60475:3;60350:129;;;;;;;;;;;;;;;:::i;60260:230::-;60222:268;;;;60507:7;60503:319;;;60546:18;;;;;;60584:59;;;;;;;;;;60619:10;;60631:5;;60546:18;;60584:59;:::i;:::-;;;;;;;;60516:139;60503:319;;;60743:67;60763:10;60775;60787:5;60794:7;60803:6;60743:19;:67::i;:::-;59096:1733;;;;;;;;;;;;;;;;;;58927:1902;;;;:::o;44941:463::-;45120:21;45144:28;45157:14;45144:12;:28::i;:::-;45202;;;;45183:16;45202:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;45120:52;;-1:-1:-1;45256:15:0;45248:54;;;;-1:-1:-1;;;45248:54:0;;42577:2:1;45248:54:0;;;42559:21:1;42616:2;42596:18;;;42589:30;42655:28;42635:18;;;42628:56;42701:18;;45248:54:0;42375:350:1;45248:54:0;45341:23;45355:9;45341:11;:23;:::i;:::-;45321:16;:43;;45313:83;;;;-1:-1:-1;;;45313:83:0;;42932:2:1;45313:83:0;;;42914:21:1;42971:2;42951:18;;;42944:30;43010:29;42990:18;;;42983:57;43057:18;;45313:83:0;42730:351:1;61338:182:0;61404:16;;61451:22;85527:9;61451:7;:22;:::i;:::-;61444:29;-1:-1:-1;61498:14:0;61444:29;61498:7;:14;:::i;:::-;61484:28;;61338:182;;;:::o;84457:329::-;84601:4;39278:10;-1:-1:-1;;;;;84663:16:0;;;;84659:62;;84681:40;84697:5;84704:7;84713;84681:15;:40::i;:::-;84732:21;84738:5;84745:7;84732:5;:21::i;:::-;-1:-1:-1;84771:7:0;;84457:329;-1:-1:-1;;;;84457:329:0:o;44319:614::-;44603:32;;;44574:26;44603:32;;;:19;:32;;;;;44574:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44654:13;:20;44678:1;44654:25;44646:86;;;;-1:-1:-1;;;44646:86:0;;43405:2:1;44646:86:0;;;43387:21:1;43444:2;43424:18;;;43417:30;43483:34;43463:18;;;43456:62;-1:-1:-1;;;43534:18:1;;;43527:46;43590:19;;44646:86:0;43203:412:1;44646:86:0;44743:47;44761:11;44774:8;:15;44743:17;:47::i;:::-;44801:124;;-1:-1:-1;;;44801:124:0;;-1:-1:-1;;;;;44801:10:0;:15;;;;44824:10;;44801:124;;44836:11;;44849:13;;44864:8;;44874:14;;44890:18;;44910:14;;44801:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44563:370;44319:614;;;;;;:::o;62072:366::-;62289:12;52882:1;62356:10;62368:9;-1:-1:-1;;;;;63223:23:0;;62405:14;62421:8;62321:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62314:116;;62072:366;;;;;;;:::o;82491:91::-;;;;:::o;61721:343::-;61803:10;;;61851:19;:8;61803:10;61851:16;:19::i;:::-;:30;;;:55;;;;;61885:8;:15;61904:2;61885:21;61851:55;61843:92;;;;-1:-1:-1;;;61843:92:0;;45292:2:1;61843:92:0;;;45274:21:1;45331:2;45311:18;;;45304:30;-1:-1:-1;;;45350:18:1;;;45343:54;45414:18;;61843:92:0;45090:348:1;61843:92:0;61953:22;:8;61972:2;61953:18;:22::i;:::-;61948:27;-1:-1:-1;62035:21:0;:8;62053:2;62035:17;:21::i;:::-;62024:32;;61721:343;;;:::o;61209:121::-;61274:4;61298:24;85527:9;-1:-1:-1;;;;;61298:24:0;;;:::i;84794:206::-;84924:4;84941:26;84947:10;84959:7;84941:5;:26::i;:::-;-1:-1:-1;84985:7:0;84794:206;-1:-1:-1;;84794:206:0:o;62446:658::-;62585:12;;;62667:20;62585:12;52882:1;62758:19;:8;62585:12;62758:16;:19::i;:::-;:39;;;62750:76;;;;-1:-1:-1;;;62750:76:0;;45292:2:1;62750:76:0;;;45274:21:1;45331:2;45311:18;;;45304:30;-1:-1:-1;;;45350:18:1;;;45343:54;45414:18;;62750:76:0;45090:348:1;62750:76:0;62844:22;:8;62863:2;62844:18;:22::i;:::-;62839:27;-1:-1:-1;62926:21:0;:8;62944:2;62926:17;:21::i;:::-;62915:32;-1:-1:-1;62965:22:0;:8;62984:2;62965:18;:22::i;:::-;62958:29;-1:-1:-1;63014:21:0;:8;63032:2;63014:17;:21::i;:::-;62998:37;;63056:40;63071:2;63093;63075:8;:15;:20;;;;:::i;:::-;63056:8;;:40;:14;:40::i;:::-;63046:50;;62446:658;;;;;;;:::o;45412:271::-;45494:13;45553:2;45528:14;:21;:27;;45520:68;;;;-1:-1:-1;;;45520:68:0;;45645:2:1;45520:68:0;;;45627:21:1;45684:2;45664:18;;;45657:30;45723;45703:18;;;45696:58;45771:18;;45520:68:0;45443:352:1;45520:68:0;-1:-1:-1;45661:2:0;45641:23;45635:30;;45412:271::o;79722:675::-;-1:-1:-1;;;;;79806:21:0;;79798:67;;;;-1:-1:-1;;;79798:67:0;;46002:2:1;79798:67:0;;;45984:21:1;46041:2;46021:18;;;46014:30;46080:34;46060:18;;;46053:62;-1:-1:-1;;;46131:18:1;;;46124:31;46172:19;;79798:67:0;45800:397:1;79798:67:0;-1:-1:-1;;;;;79965:18:0;;79940:22;79965:18;;;:9;:18;;;;;;80002:24;;;;79994:71;;;;-1:-1:-1;;;79994:71:0;;46404:2:1;79994:71:0;;;46386:21:1;46443:2;46423:18;;;46416:30;46482:34;46462:18;;;46455:62;-1:-1:-1;;;46533:18:1;;;46526:32;46575:19;;79994:71:0;46202:398:1;79994:71:0;-1:-1:-1;;;;;80101:18:0;;;;;;:9;:18;;;;;;;;80122:23;;;80101:44;;80240:12;:22;;;;;;;80291:37;3623:25:1;;;80101:18:0;;;80291:37;;3596:18:1;80291:37:0;;;;;;;82491:91;;;:::o;45691:402::-;45814:35;;;45790:21;45814:35;;;:22;:35;;;;;;;45864:21;;;45860:138;;-1:-1:-1;42505:5:0;45860:138;46032:16;46016:12;:32;;46008:77;;;;-1:-1:-1;;;46008:77:0;;46807:2:1;46008:77:0;;;46789:21:1;;;46826:18;;;46819:30;46885:34;46865:18;;;46858:62;46937:18;;46008:77:0;46605:356:1;23253:360:0;23329:7;23374:11;:6;23383:2;23374:11;:::i;:::-;23357:6;:13;:28;;23349:62;;;;-1:-1:-1;;;23349:62:0;;47168:2:1;23349:62:0;;;47150:21:1;47207:2;47187:18;;;47180:30;-1:-1:-1;;;47226:18:1;;;47219:51;47287:18;;23349:62:0;46966:345:1;23349:62:0;-1:-1:-1;23503:30:0;23519:4;23503:30;23497:37;-1:-1:-1;;;23493:71:0;;;23253:360::o;24574:311::-;24649:6;24693:10;:6;24702:1;24693:10;:::i;:::-;24676:6;:13;:27;;24668:60;;;;-1:-1:-1;;;24668:60:0;;47518:2:1;24668:60:0;;;47500:21:1;47557:2;47537:18;;;47530:30;-1:-1:-1;;;47576:18:1;;;47569:50;47636:18;;24668:60:0;47316:344:1;24668:60:0;-1:-1:-1;24809:29:0;24825:3;24809:29;24803:36;;24574:311::o;78841:548::-;-1:-1:-1;;;;;78925:21:0;;78917:65;;;;-1:-1:-1;;;78917:65:0;;47867:2:1;78917:65:0;;;47849:21:1;47906:2;47886:18;;;47879:30;47945:33;47925:18;;;47918:61;47996:18;;78917:65:0;47665:355:1;78917:65:0;79073:6;79057:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;79228:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;79283:37;3623:25:1;;;79283:37:0;;3596:18:1;79283:37:0;;;;;;;78841:548;;:::o;25857:326::-;25933:7;25978:11;:6;25987:2;25978:11;:::i;:::-;25961:6;:13;:28;;25953:62;;;;-1:-1:-1;;;25953:62:0;;48227:2:1;25953:62:0;;;48209:21:1;48266:2;48246:18;;;48239:30;-1:-1:-1;;;48285:18:1;;;48278:51;48346:18;;25953:62:0;48025:345:1;25953:62:0;-1:-1:-1;26103:30:0;26119:4;26103:30;26097:37;;25857: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:289;2098:3;2136:5;2130:12;2163:6;2158:3;2151:19;2219:6;2212:4;2205:5;2201:16;2194:4;2189:3;2185:14;2179:47;2271:1;2264:4;2255:6;2250:3;2246:16;2242:27;2235:38;2334:4;2327:2;2323:7;2318:2;2310:6;2306:15;2302:29;2297:3;2293:39;2289:50;2282:57;;;2056:289;;;;:::o;2350:220::-;2499:2;2488:9;2481:21;2462:4;2519:45;2560:2;2549:9;2545:18;2537:6;2519:45;:::i;2575:184::-;2633:6;2686:2;2674:9;2665:7;2661:23;2657:32;2654:52;;;2702:1;2699;2692:12;2654:52;2725:28;2743:9;2725:28;:::i;2764:131::-;-1:-1:-1;;;;;2839:31:1;;2829:42;;2819:70;;2885:1;2882;2875:12;2900:315;2968:6;2976;3029:2;3017:9;3008:7;3004:23;3000:32;2997:52;;;3045:1;3042;3035:12;2997:52;3084:9;3071:23;3103:31;3128:5;3103:31;:::i;:::-;3153:5;3205:2;3190:18;;;;3177:32;;-1:-1:-1;;;2900:315:1:o;3220:252::-;3287:6;3295;3348:2;3336:9;3327:7;3323:23;3319:32;3316:52;;;3364:1;3361;3354:12;3316:52;3387:28;3405:9;3387:28;:::i;3659:180::-;3718:6;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;-1:-1:-1;3810:23:1;;3659:180;-1:-1:-1;3659:180:1:o;3844:456::-;3921:6;3929;3937;3990:2;3978:9;3969:7;3965:23;3961:32;3958:52;;;4006:1;4003;3996:12;3958:52;4045:9;4032:23;4064:31;4089:5;4064:31;:::i;:::-;4114:5;-1:-1:-1;4171:2:1;4156:18;;4143:32;4184:33;4143:32;4184:33;:::i;:::-;3844:456;;4236:7;;-1:-1:-1;;;4290:2:1;4275:18;;;;4262:32;;3844:456::o;4305:160::-;4370:20;;4426:13;;4419:21;4409:32;;4399:60;;4455:1;4452;4445:12;4470:180;4526:6;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4618:26;4634:9;4618:26;:::i;4844:687::-;4946:6;4954;4962;4970;4978;4986;5039:3;5027:9;5018:7;5014:23;5010:33;5007:53;;;5056:1;5053;5046:12;5007:53;5079:28;5097:9;5079:28;:::i;:::-;5069:38;;5154:2;5143:9;5139:18;5126:32;5116:42;;5205:2;5194:9;5190:18;5177:32;5167:42;;5228:35;5259:2;5248:9;5244:18;5228:35;:::i;:::-;5218:45;;5314:3;5303:9;5299:19;5286:33;-1:-1:-1;;;;;5334:6:1;5331:30;5328:50;;;5374:1;5371;5364:12;5328:50;5413:58;5463:7;5454:6;5443:9;5439:22;5413:58;:::i;5789:481::-;5867:6;5875;5883;5936:2;5924:9;5915:7;5911:23;5907:32;5904:52;;;5952:1;5949;5942:12;5904:52;5975:28;5993:9;5975:28;:::i;:::-;5965:38;;6054:2;6043:9;6039:18;6026:32;-1:-1:-1;;;;;6073:6:1;6070:30;6067:50;;;6113:1;6110;6103:12;6067:50;6152:58;6202:7;6193:6;6182:9;6178:22;6152:58;:::i;:::-;5789:481;;6229:8;;-1:-1:-1;6126:84:1;;-1:-1:-1;;;;5789:481:1:o;6483:127::-;6544:10;6539:3;6535:20;6532:1;6525:31;6575:4;6572:1;6565:15;6599:4;6596:1;6589:15;6615:275;6686:2;6680:9;6751:2;6732:13;;-1:-1:-1;;6728:27:1;6716:40;;-1:-1:-1;;;;;6771:34:1;;6807:22;;;6768:62;6765:88;;;6833:18;;:::i;:::-;6869:2;6862:22;6615:275;;-1:-1:-1;6615:275:1:o;6895:186::-;6943:4;-1:-1:-1;;;;;6968:6:1;6965:30;6962:56;;;6998:18;;:::i;:::-;-1:-1:-1;7064:2:1;7043:15;-1:-1:-1;;7039:29:1;7070:4;7035:40;;6895:186::o;7086:815::-;7170:6;7178;7186;7239:2;7227:9;7218:7;7214:23;7210:32;7207:52;;;7255:1;7252;7245:12;7207:52;7278:28;7296:9;7278:28;:::i;:::-;7268:38;;7357:2;7346:9;7342:18;7329:32;-1:-1:-1;;;;;7376:6:1;7373:30;7370:50;;;7416:1;7413;7406:12;7370:50;7439:22;;7492:4;7484:13;;7480:27;-1:-1:-1;7470:55:1;;7521:1;7518;7511:12;7470:55;7557:2;7544:16;7582:48;7598:31;7626:2;7598:31;:::i;:::-;7582:48;:::i;:::-;7653:2;7646:5;7639:17;7693:7;7688:2;7683;7679;7675:11;7671:20;7668:33;7665:53;;;7714:1;7711;7704:12;7665:53;7769:2;7764;7760;7756:11;7751:2;7744:5;7740:14;7727:45;7813:1;7808:2;7803;7796:5;7792:14;7788:23;7781:34;7834:5;7824:15;;;;;7858:37;7891:2;7880:9;7876:18;7858:37;:::i;:::-;7848:47;;7086:815;;;;;:::o;8088:160::-;8153:5;8198:2;8189:6;8184:3;8180:16;8176:25;8173:45;;;8214:1;8211;8204:12;8173:45;-1:-1:-1;8236:6:1;8088:160;-1:-1:-1;8088:160:1:o;8253:709::-;8377:6;8385;8393;8401;8409;8462:3;8450:9;8441:7;8437:23;8433:33;8430:53;;;8479:1;8476;8469:12;8430:53;8518:9;8505:23;8537:31;8562:5;8537:31;:::i;:::-;8587:5;-1:-1:-1;8611:37:1;8644:2;8629:18;;8611:37;:::i;:::-;8601:47;;8695:2;8684:9;8680:18;8667:32;8657:42;;8746:2;8735:9;8731:18;8718:32;8708:42;;8801:3;8790:9;8786:19;8773:33;-1:-1:-1;;;;;8821:6:1;8818:30;8815:50;;;8861:1;8858;8851:12;8815:50;8884:72;8948:7;8939:6;8928:9;8924:22;8884:72;:::i;:::-;8874:82;;;8253:709;;;;;;;;:::o;8967:247::-;9026:6;9079:2;9067:9;9058:7;9054:23;9050:32;9047:52;;;9095:1;9092;9085:12;9047:52;9134:9;9121:23;9153:31;9178:5;9153:31;:::i;9442:1091::-;9594:6;9602;9610;9618;9626;9634;9642;9650;9703:3;9691:9;9682:7;9678:23;9674:33;9671:53;;;9720:1;9717;9710:12;9671:53;9759:9;9746:23;9778:31;9803:5;9778:31;:::i;:::-;9828:5;-1:-1:-1;9852:37:1;9885:2;9870:18;;9852:37;:::i;:::-;9842:47;;9936:2;9925:9;9921:18;9908:32;9898:42;;9987:2;9976:9;9972:18;9959:32;9949:42;;10042:3;10031:9;10027:19;10014:33;-1:-1:-1;;;;;10107:2:1;10099:6;10096:14;10093:34;;;10123:1;10120;10113:12;10093:34;10162:58;10212:7;10203:6;10192:9;10188:22;10162:58;:::i;:::-;10239:8;;-1:-1:-1;10136:84:1;-1:-1:-1;10136:84:1;;-1:-1:-1;10293:38:1;10326:3;10311:19;;10293:38;:::i;:::-;10283:48;;10384:3;10373:9;10369:19;10356:33;10340:49;;10414:2;10404:8;10401:16;10398:36;;;10430:1;10427;10420:12;10398:36;;10453:74;10519:7;10508:8;10497:9;10493:24;10453:74;:::i;:::-;10443:84;;;9442:1091;;;;;;;;;;;:::o;10538:256::-;10604:6;10612;10665:2;10653:9;10644:7;10640:23;10636:32;10633:52;;;10681:1;10678;10671:12;10633:52;10704:28;10722:9;10704:28;:::i;:::-;10694:38;;10751:37;10784:2;10773:9;10769:18;10751:37;:::i;:::-;10741:47;;10538:256;;;;;:::o;10799:1069::-;10929:6;10937;10945;10953;10961;10969;10977;10985;10993;11046:3;11034:9;11025:7;11021:23;11017:33;11014:53;;;11063:1;11060;11053:12;11014:53;11086:28;11104:9;11086:28;:::i;:::-;11076:38;;11161:2;11150:9;11146:18;11133:32;11123:42;;11212:2;11201:9;11197:18;11184:32;11174:42;;11267:2;11256:9;11252:18;11239:32;-1:-1:-1;;;;;11331:2:1;11323:6;11320:14;11317:34;;;11347:1;11344;11337:12;11317:34;11386:58;11436:7;11427:6;11416:9;11412:22;11386:58;:::i;:::-;11463:8;;-1:-1:-1;11360:84:1;-1:-1:-1;11360:84:1;;-1:-1:-1;11517:38:1;11550:3;11535:19;;11517:38;:::i;:::-;11507:48;;11574:36;11605:3;11594:9;11590:19;11574:36;:::i;:::-;11564:46;;11663:3;11652:9;11648:19;11635:33;11619:49;;11693:2;11683:8;11680:16;11677:36;;;11709:1;11706;11699:12;11677:36;;11748:60;11800:7;11789:8;11778:9;11774:24;11748:60;:::i;:::-;11722:86;;11827:8;11817:18;;;11854:8;11844:18;;;10799:1069;;;;;;;;;;;:::o;12102:315::-;12167:6;12175;12228:2;12216:9;12207:7;12203:23;12199:32;12196:52;;;12244:1;12241;12234:12;12196:52;12283:9;12270:23;12302:31;12327:5;12302:31;:::i;:::-;12352:5;-1:-1:-1;12376:35:1;12407:2;12392:18;;12376:35;:::i;12422:622::-;12517:6;12525;12533;12541;12549;12602:3;12590:9;12581:7;12577:23;12573:33;12570:53;;;12619:1;12616;12609:12;12570:53;12642:28;12660:9;12642:28;:::i;:::-;12632:38;;12689:37;12722:2;12711:9;12707:18;12689:37;:::i;:::-;12679:47;;12773:2;12762:9;12758:18;12745:32;12735:42;;12828:2;12817:9;12813:18;12800:32;-1:-1:-1;;;;;12847:6:1;12844:30;12841:50;;;12887:1;12884;12877:12;12841:50;12926:58;12976:7;12967:6;12956:9;12952:22;12926:58;:::i;:::-;12422:622;;;;-1:-1:-1;12422:622:1;;-1:-1:-1;13003:8:1;;12900:84;12422:622;-1:-1:-1;;;12422:622:1:o;13049:248::-;13117:6;13125;13178:2;13166:9;13157:7;13153:23;13149:32;13146:52;;;13194:1;13191;13184:12;13146:52;-1:-1:-1;;13217:23:1;;;13287:2;13272:18;;;13259:32;;-1:-1:-1;13049:248:1:o;13302:388::-;13370:6;13378;13431:2;13419:9;13410:7;13406:23;13402:32;13399:52;;;13447:1;13444;13437:12;13399:52;13486:9;13473:23;13505:31;13530:5;13505:31;:::i;:::-;13555:5;-1:-1:-1;13612:2:1;13597:18;;13584:32;13625:33;13584:32;13625:33;:::i;:::-;13677:7;13667:17;;;13302:388;;;;;:::o;13695:324::-;13770:6;13778;13786;13839:2;13827:9;13818:7;13814:23;13810:32;13807:52;;;13855:1;13852;13845:12;13807:52;13878:28;13896:9;13878:28;:::i;:::-;13868:38;;13925:37;13958:2;13947:9;13943:18;13925:37;:::i;:::-;13915:47;;14009:2;13998:9;13994:18;13981:32;13971:42;;13695:324;;;;;:::o;14024:1205::-;14166:6;14174;14182;14190;14198;14206;14214;14222;14230;14238;14291:3;14279:9;14270:7;14266:23;14262:33;14259:53;;;14308:1;14305;14298:12;14259:53;14331:28;14349:9;14331:28;:::i;:::-;14321:38;;14410:2;14399:9;14395:18;14382:32;-1:-1:-1;;;;;14474:2:1;14466:6;14463:14;14460:34;;;14490:1;14487;14480:12;14460:34;14529:58;14579:7;14570:6;14559:9;14555:22;14529:58;:::i;:::-;14606:8;;-1:-1:-1;14503:84:1;-1:-1:-1;14503:84:1;;-1:-1:-1;14660:37:1;14693:2;14678:18;;14660:37;:::i;:::-;14650:47;;14744:2;14733:9;14729:18;14716:32;14706:42;;14798:3;14787:9;14783:19;14770:33;14757:46;;14812:31;14837:5;14812:31;:::i;:::-;14862:5;;-1:-1:-1;14914:3:1;14899:19;;14886:33;;-1:-1:-1;14972:3:1;14957:19;;14944:33;;14989:16;;;14986:36;;;15018:1;15015;15008:12;14986:36;;15057:60;15109:7;15098:8;15087:9;15083:24;15057:60;:::i;:::-;15031:86;;15136:8;15126:18;;;15163:8;15153:18;;;15218:3;15207:9;15203:19;15190:33;15180:43;;14024:1205;;;;;;;;;;;;;:::o;15234:460::-;15318:6;15326;15334;15342;15395:3;15383:9;15374:7;15370:23;15366:33;15363:53;;;15412:1;15409;15402:12;15363:53;15435:28;15453:9;15435:28;:::i;:::-;15425:38;;15482:37;15515:2;15504:9;15500:18;15482:37;:::i;:::-;15472:47;;15569:2;15558:9;15554:18;15541:32;15582:31;15607:5;15582:31;:::i;:::-;15234:460;;;;-1:-1:-1;15632:5:1;;15684:2;15669:18;15656:32;;-1:-1:-1;;15234:460:1:o;16058:380::-;16137:1;16133:12;;;;16180;;;16201:61;;16255:4;16247:6;16243:17;16233:27;;16201:61;16308:2;16300:6;16297:14;16277:18;16274:38;16271:161;;16354:10;16349:3;16345:20;16342:1;16335:31;16389:4;16386:1;16379:15;16417:4;16414:1;16407:15;16443:271;16626:6;16618;16613:3;16600:33;16582:3;16652:16;;16677:13;;;16652:16;16443:271;-1:-1:-1;16443:271:1:o;17319:127::-;17380:10;17375:3;17371:20;17368:1;17361:31;17411:4;17408:1;17401:15;17435:4;17432:1;17425:15;17451:125;17516:9;;;17537:10;;;17534:36;;;17550:18;;:::i;17928:266::-;18016:6;18011:3;18004:19;18068:6;18061:5;18054:4;18049:3;18045:14;18032:43;-1:-1:-1;18120:1:1;18095:16;;;18113:4;18091:27;;;18084:38;;;;18176:2;18155:15;;;-1:-1:-1;;18151:29:1;18142:39;;;18138:50;;17928:266::o;18199:326::-;18394:6;18386;18382:19;18371:9;18364:38;18438:2;18433;18422:9;18418:18;18411:30;18345:4;18458:61;18515:2;18504:9;18500:18;18492:6;18484;18458:61;:::i;19544:521::-;19621:4;19627:6;19687:11;19674:25;19781:2;19777:7;19766:8;19750:14;19746:29;19742:43;19722:18;19718:68;19708:96;;19800:1;19797;19790:12;19708:96;19827:33;;19879:20;;;-1:-1:-1;;;;;;19911:30:1;;19908:50;;;19954:1;19951;19944:12;19908:50;19987:4;19975:17;;-1:-1:-1;20018:14:1;20014:27;;;20004:38;;20001:58;;;20055:1;20052;20045:12;20428:128;20495:9;;;20516:11;;;20513:37;;;20530:18;;:::i;20967:360::-;21178:6;21170;21165:3;21152:33;21248:2;21244:15;;;;-1:-1:-1;;21240:53:1;21204:16;;21229:65;;;21318:2;21310:11;;20967:360;-1:-1:-1;20967:360:1:o;21457:517::-;21558:2;21553:3;21550:11;21547:421;;;21594:5;21591:1;21584:16;21638:4;21635:1;21625:18;21708:2;21696:10;21692:19;21689:1;21685:27;21679:4;21675:38;21744:4;21732:10;21729:20;21726:47;;;-1:-1:-1;21767:4:1;21726:47;21822:2;21817:3;21813:12;21810:1;21806:20;21800:4;21796:31;21786:41;;21877:81;21895:2;21888:5;21885:13;21877:81;;;21954:1;21940:16;;21921:1;21910:13;21877:81;;22150:1341;22274:3;22268:10;-1:-1:-1;;;;;22293:6:1;22290:30;22287:56;;;22323:18;;:::i;:::-;22352:96;22441:6;22401:38;22433:4;22427:11;22401:38;:::i;:::-;22395:4;22352:96;:::i;:::-;22503:4;;22560:2;22549:14;;22577:1;22572:662;;;;23278:1;23295:6;23292:89;;;-1:-1:-1;23347:19:1;;;23341:26;23292:89;-1:-1:-1;;22107:1:1;22103:11;;;22099:24;22095:29;22085:40;22131:1;22127:11;;;22082:57;23394:81;;22542:943;;22572:662;21404:1;21397:14;;;21441:4;21428:18;;-1:-1:-1;;22608:20:1;;;22725:236;22739:7;22736:1;22733:14;22725:236;;;22828:19;;;22822:26;22807:42;;22920:27;;;;22888:1;22876:14;;;;22755:19;;22725:236;;;22729:3;22989:6;22980:7;22977:19;22974:201;;;23050:19;;;23044:26;-1:-1:-1;;23133:1:1;23129:14;;;23145:3;23125:24;23121:37;23117:42;23102:58;23087:74;;22974:201;-1:-1:-1;;;;;23221:1:1;23205:14;;;23201:22;23188:36;;-1:-1:-1;22150:1341:1:o;23496:498::-;23696:4;23725:6;23770:2;23762:6;23758:15;23747:9;23740:34;23822:2;23814:6;23810:15;23805:2;23794:9;23790:18;23783:43;;23862:6;23857:2;23846:9;23842:18;23835:34;23905:3;23900:2;23889:9;23885:18;23878:31;23926:62;23983:3;23972:9;23968:19;23960:6;23952;23926:62;:::i;:::-;23918:70;23496:498;-1:-1:-1;;;;;;;23496:498:1:o;25159:493::-;25408:6;25400;25396:19;25385:9;25378:38;25452:3;25447:2;25436:9;25432:18;25425:31;25359:4;25473:62;25530:3;25519:9;25515:19;25507:6;25499;25473:62;:::i;:::-;-1:-1:-1;;;;;25571:31:1;;;;25566:2;25551:18;;25544:59;-1:-1:-1;25634:2:1;25619:18;25612:34;25465:70;25159:493;-1:-1:-1;;;25159:493:1:o;26380:753::-;26713:6;26705;26701:19;26690:9;26683:38;26757:3;26752:2;26741:9;26737:18;26730:31;26664:4;26784:62;26841:3;26830:9;26826:19;26818:6;26810;26784:62;:::i;:::-;-1:-1:-1;;;;;26886:6:1;26882:31;26877:2;26866:9;26862:18;26855:59;26950:6;26945:2;26934:9;26930:18;26923:34;26994:6;26988:3;26977:9;26973:19;26966:35;27050:9;27042:6;27038:22;27032:3;27021:9;27017:19;27010:51;27078:49;27120:6;27112;27104;27078:49;:::i;:::-;27070:57;26380:753;-1:-1:-1;;;;;;;;;;;26380:753:1:o;27138:1194::-;-1:-1:-1;;;;;27255:3:1;27252:27;27249:53;;;27282:18;;:::i;:::-;27311:93;27400:3;27360:38;27392:4;27386:11;27360:38;:::i;:::-;27354:4;27311:93;:::i;:::-;27430:1;27455:2;27450:3;27447:11;27472:1;27467:607;;;;28118:1;28135:3;28132:93;;;-1:-1:-1;28191:19:1;;;28178:33;28132:93;-1:-1:-1;;22107:1:1;22103:11;;;22099:24;22095:29;22085:40;22131:1;22127:11;;;22082:57;28238:78;;27440:886;;27467:607;21404:1;21397:14;;;21441:4;21428:18;;-1:-1:-1;;27503:17:1;;;27617:229;27631:7;27628:1;27625:14;27617:229;;;27720:19;;;27707:33;27692:49;;27827:4;27812:20;;;;27780:1;27768:14;;;;27647:12;27617:229;;;27621:3;27874;27865:7;27862:16;27859:159;;;27998:1;27994:6;27988:3;27982;27979:1;27975:11;27971:21;27967:34;27963:39;27950:9;27945:3;27941:19;27928:33;27924:79;27916:6;27909:95;27859:159;;;28061:1;28055:3;28052:1;28048:11;28044:19;28038:4;28031:33;27440:886;;27138:1194;;;:::o;29205:661::-;29284:6;29337:2;29325:9;29316:7;29312:23;29308:32;29305:52;;;29353:1;29350;29343:12;29305:52;29386:9;29380:16;-1:-1:-1;;;;;29411:6:1;29408:30;29405:50;;;29451:1;29448;29441:12;29405:50;29474:22;;29527:4;29519:13;;29515:27;-1:-1:-1;29505:55:1;;29556:1;29553;29546:12;29505:55;29585:2;29579:9;29610:48;29626:31;29654:2;29626:31;:::i;29610:48::-;29681:2;29674:5;29667:17;29721:7;29716:2;29711;29707;29703:11;29699:20;29696:33;29693:53;;;29742:1;29739;29732:12;29693:53;29790:2;29785;29781;29777:11;29772:2;29765:5;29761:14;29755:38;29834:1;29813:14;;;29829:2;29809:23;29802:34;;;;29817:5;29205:661;-1:-1:-1;;;;29205:661:1:o;29871:557::-;30128:6;30120;30116:19;30105:9;30098:38;30172:3;30167:2;30156:9;30152:18;30145:31;30079:4;30199:46;30240:3;30229:9;30225:19;30217:6;30199:46;:::i;:::-;-1:-1:-1;;;;;30285:6:1;30281:31;30276:2;30265:9;30261:18;30254:59;30361:9;30353:6;30349:22;30344:2;30333:9;30329:18;30322:50;30389:33;30415:6;30407;30389:33;:::i;33412:168::-;33485:9;;;33516;;33533:15;;;33527:22;;33513:37;33503:71;;33554:18;;:::i;33585:127::-;33646:10;33641:3;33637:20;33634:1;33627:31;33677:4;33674:1;33667:15;33701:4;33698:1;33691:15;33717:120;33757:1;33783;33773:35;;33788:18;;:::i;:::-;-1:-1:-1;33822:9:1;;33717:120::o;33842:135::-;33881:3;33902:17;;;33899:43;;33922:18;;:::i;:::-;-1:-1:-1;33969:1:1;33958:13;;33842:135::o;33982:642::-;34263:6;34251:19;;34233:38;;-1:-1:-1;;;;;34307:32:1;;34302:2;34287:18;;34280:60;34327:3;34371:2;34356:18;;34349:31;;;-1:-1:-1;;34403:46:1;;34429:19;;34421:6;34403:46;:::i;:::-;34499:6;34492:14;34485:22;34480:2;34469:9;34465:18;34458:50;34557:9;34549:6;34545:22;34539:3;34528:9;34524:19;34517:51;34585:33;34611:6;34603;34585:33;:::i;:::-;34577:41;33982:642;-1:-1:-1;;;;;;;;33982:642:1:o;34629:245::-;34708:6;34716;34769:2;34757:9;34748:7;34744:23;34740:32;34737:52;;;34785:1;34782;34775:12;34737:52;-1:-1:-1;;34808:16:1;;34864:2;34849:18;;;34843:25;34808:16;;34843:25;;-1:-1:-1;34629:245:1:o;36279:127::-;36340:10;36335:3;36331:20;36328:1;36321:31;36371:4;36368:1;36361:15;36395:4;36392:1;36385:15;36411:251;36481:6;36534:2;36522:9;36513:7;36509:23;36505:32;36502:52;;;36550:1;36547;36540:12;36502:52;36582:9;36576:16;36601:31;36626:5;36601:31;:::i;36667:980::-;36929:4;36977:3;36966:9;36962:19;37008:6;36997:9;36990:25;37034:2;37072:6;37067:2;37056:9;37052:18;37045:34;37115:3;37110:2;37099:9;37095:18;37088:31;37139:6;37174;37168:13;37205:6;37197;37190:22;37243:3;37232:9;37228:19;37221:26;;37282:2;37274:6;37270:15;37256:29;;37303:1;37313:195;37327:6;37324:1;37321:13;37313:195;;;37392:13;;-1:-1:-1;;;;;37388:39:1;37376:52;;37483:15;;;;37448:12;;;;37424:1;37342:9;37313:195;;;-1:-1:-1;;;;;;;37564:32:1;;;;37559:2;37544:18;;37537:60;-1:-1:-1;;;37628:3:1;37613:19;37606:35;37525:3;36667:980;-1:-1:-1;;;36667:980:1:o;37652:211::-;37693:3;37731:5;37725:12;37775:6;37768:4;37761:5;37757:16;37752:3;37746:36;37837:1;37801:16;;37826:13;;;-1:-1:-1;37801:16:1;;37652:211;-1:-1:-1;37652:211:1:o;37868:189::-;37997:3;38022:29;38047:3;38039:6;38022:29;:::i;38062:719::-;38365:6;38357;38353:19;38342:9;38335:38;38409:3;38404:2;38393:9;38389:18;38382:31;38316:4;38436:46;38477:3;38466:9;38462:19;38454:6;38436:46;:::i;:::-;-1:-1:-1;;;;;38522:6:1;38518:31;38513:2;38502:9;38498:18;38491:59;38598:9;38590:6;38586:22;38581:2;38570:9;38566:18;38559:50;38632:33;38658:6;38650;38632:33;:::i;:::-;38618:47;;38714:9;38706:6;38702:22;38696:3;38685:9;38681:19;38674:51;38742:33;38768:6;38760;38742:33;:::i;41091:891::-;41411:4;41440:3;41482:6;41474;41470:19;41459:9;41452:38;41526:2;41521;41510:9;41506:18;41499:30;41552:45;41593:2;41582:9;41578:18;41570:6;41552:45;:::i;:::-;-1:-1:-1;;;;;41633:31:1;;41628:2;41613:18;;41606:59;41696:2;41681:18;;41674:34;;;-1:-1:-1;;;;;41745:32:1;;41739:3;41724:19;;41717:61;41765:3;41794:19;;41787:35;;;41859:22;;;41853:3;41838:19;;41831:51;41538:59;-1:-1:-1;41899:33:1;41538:59;41917:6;41899:33;:::i;:::-;41891:41;;;41969:6;41963:3;41952:9;41948:19;41941:35;41091:891;;;;;;;;;;;:::o;41987:383::-;42188:2;42177:9;42170:21;42151:4;42208:45;42249:2;42238:9;42234:18;42226:6;42208:45;:::i;:::-;-1:-1:-1;;;;;42289:31:1;;;;42284:2;42269:18;;42262:59;-1:-1:-1;42352:2:1;42337:18;42330:34;42200:53;41987:383;-1:-1:-1;41987:383:1:o;43086:112::-;43118:1;43144;43134:35;;43149:18;;:::i;:::-;-1:-1:-1;43183:9:1;;43086:112::o;43620:840::-;43969:6;43961;43957:19;43946:9;43939:38;44013:3;44008:2;43997:9;43993:18;43986:31;43920:4;44040:46;44081:3;44070:9;44066:19;44058:6;44040:46;:::i;:::-;44134:9;44126:6;44122:22;44117:2;44106:9;44102:18;44095:50;44168:33;44194:6;44186;44168:33;:::i;:::-;-1:-1:-1;;;;;44275:15:1;;;44270:2;44255:18;;44248:43;44328:15;;44322:3;44307:19;;44300:44;44381:22;;;44228:3;44360:19;;44353:51;44154:47;-1:-1:-1;44421:33:1;44154:47;44439:6;44421:33;:::i;:::-;44413:41;43620:840;-1:-1:-1;;;;;;;;;43620:840:1:o;44465:620::-;44787:3;44782;44778:13;44769:6;44764:3;44760:16;44756:36;44751:3;44744:49;44822:6;44818:1;44813:3;44809:11;44802:27;44726:3;-1:-1:-1;;;;;44852:3:1;44848:28;44928:2;44919:6;44914:3;44910:16;44906:25;44901:2;44896:3;44892:12;44885:47;44962:6;44957:2;44952:3;44948:12;44941:28;45021:2;45012:6;45007:3;45003:16;44999:25;44994:2;44989:3;44985:12;44978:47;;45041:38;45075:2;45070:3;45066:12;45058:6;45041:38;:::i
Swarm Source
ipfs://095667e98708ef40f17e336ba12bca79411fccce8140608b51e371acf7ab1201
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.