Overview
Max Total Supply
604,152.72361006 Cake
Holders
107,763
Market
Price
$4.02 @ 0.001011 ETH (-2.59%)
Onchain Market Cap
$2,428,693.95
Circulating Supply Market Cap
$1,176,339,396.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.109017255949672227 CakeValue
$0.44 ( ~0.00011068707701958 ETH) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
CakeOFT
Compiler Version
v0.8.12+commit.f00d7308
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@layerzerolabs/solidity-examples/contracts/token/oft/v2/fee/OFTWithFee.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract CakeOFT is OFTWithFee, Pausable { // Outbound cap mapping(uint16 => uint256) public chainIdToOutboundCap; mapping(uint16 => uint256) public chainIdToSentTokenAmount; mapping(uint16 => uint256) public chainIdToLastSentTimestamp; // Inbound cap mapping(uint16 => uint256) public chainIdToInboundCap; mapping(uint16 => uint256) public chainIdToReceivedTokenAmount; mapping(uint16 => uint256) public chainIdToLastReceivedTimestamp; // If an address is whitelisted, the inbound/outbound cap checks are skipped mapping(address => bool) public whitelist; error ExceedOutboundCap(uint256 cap, uint256 amount); error ExceedInboundCap(uint256 cap, uint256 amount); event SetOperator(address newOperator); event SetOutboundCap(uint16 indexed chainId, uint256 cap); event SetInboundCap(uint16 indexed chainId, uint256 cap); event SetWhitelist(address indexed addr, bool isWhitelist); event FallbackWithdraw(address indexed to, uint256 amount); event DropFailedMessage(uint16 srcChainId, bytes srcAddress, uint64 nonce); constructor(address _lzEndpoint) OFTWithFee("PancakeSwap Token", "Cake", 8, _lzEndpoint){} function decimals() public pure override returns (uint8){ return 18; } function _debitFrom( address _from, uint16 _dstChainId, bytes32 _toAddress, uint256 _amount ) internal override whenNotPaused returns (uint256) { uint256 amount = super._debitFrom( _from, _dstChainId, _toAddress, _amount ); if (whitelist[_from]) { return amount; } uint256 sentTokenAmount; uint256 lastSentTimestamp = chainIdToLastSentTimestamp[_dstChainId]; uint256 currTimestamp = block.timestamp; if ((currTimestamp / (1 days)) > (lastSentTimestamp / (1 days))) { sentTokenAmount = amount; } else { sentTokenAmount = chainIdToSentTokenAmount[_dstChainId] + amount; } uint256 outboundCap = chainIdToOutboundCap[_dstChainId]; if (sentTokenAmount > outboundCap) { revert ExceedOutboundCap(outboundCap, sentTokenAmount); } chainIdToSentTokenAmount[_dstChainId] = sentTokenAmount; chainIdToLastSentTimestamp[_dstChainId] = currTimestamp; return amount; } function _creditTo( uint16 _srcChainId, address _toAddress, uint256 _amount ) internal override whenNotPaused returns (uint256) { uint256 amount = super._creditTo(_srcChainId, _toAddress, _amount); if (whitelist[_toAddress]) { return amount; } uint256 receivedTokenAmount; uint256 lastReceivedTimestamp = chainIdToLastReceivedTimestamp[ _srcChainId ]; uint256 currTimestamp = block.timestamp; if ((currTimestamp / (1 days)) > (lastReceivedTimestamp / (1 days))) { receivedTokenAmount = amount; } else { receivedTokenAmount = chainIdToReceivedTokenAmount[_srcChainId] + amount; } uint256 inboundCap = chainIdToInboundCap[_srcChainId]; if (receivedTokenAmount > inboundCap) { revert ExceedInboundCap(inboundCap, receivedTokenAmount); } chainIdToReceivedTokenAmount[_srcChainId] = receivedTokenAmount; chainIdToLastReceivedTimestamp[_srcChainId] = currTimestamp; return amount; } function setOutboundCap(uint16 chainId, uint256 cap) external onlyOwner { chainIdToOutboundCap[chainId] = cap; emit SetOutboundCap(chainId, cap); } function setInboundCap(uint16 chainId, uint256 cap) external onlyOwner { chainIdToInboundCap[chainId] = cap; emit SetInboundCap(chainId, cap); } function setWhitelist(address addr, bool isWhitelist) external onlyOwner { whitelist[addr] = isWhitelist; emit SetWhitelist(addr, isWhitelist); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "./ILayerZeroUserApplicationConfig.sol"; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external; // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/ILayerZeroReceiver.sol"; import "../interfaces/ILayerZeroUserApplicationConfig.sol"; import "../interfaces/ILayerZeroEndpoint.sol"; import "../util/BytesLib.sol"; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { using BytesLib for bytes; ILayerZeroEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas); constructor(address _endpoint) { lzEndpoint = ILayerZeroEndpoint(_endpoint); } function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override { // lzReceive must be called by the endpoint for security require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller"); bytes memory trustedRemote = trustedRemoteLookup[_srcChainId]; // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote. require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract"); _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source"); lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams); } function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual { uint providedGasLimit = _getGasLimit(_adapterParams); uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas; require(minGasLimit > 0, "LzApp: minGasLimit not set"); require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) { require(_adapterParams.length >= 34, "LzApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } //---------------------------UserApplication config---------------------------------------- function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) { return lzEndpoint.getConfig(_version, _chainId, address(this), _configType); } // generic config for LayerZero user Application function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner { lzEndpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { lzEndpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { lzEndpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _srcChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_srcChainId] = _path; emit SetTrustedRemote(_srcChainId, _path); } function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this)); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; require(path.length != 0, "LzApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner { require(_minGas > 0, "LzApp: invalid minGas"); minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./LzApp.sol"; import "../util/ExcessivelySafeCall.sol"; /* * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress) */ abstract contract NonblockingLzApp is LzApp { using ExcessivelySafeCall for address; constructor(address _endpoint) LzApp(_endpoint) {} mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason); event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash); // overriding the virtual function in LzReceiver function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload)); // try-catch all errors/exceptions if (!success) { _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason); } } function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual { failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason); } function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual { // only internal transaction require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp"); _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } //@notice override this function function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual { // assert there is message to retry bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce]; require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message"); require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload"); // clear the stored message failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0); // execute the message. revert if it fails again _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Interface of the IOFT core standard */ interface ICommonOFT is IERC165 { struct LzCallParams { address payable refundAddress; address zroPaymentAddress; bytes adapterParams; } /** * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`) * _dstChainId - L0 defined chain id to send tokens too * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain * _amount - amount of the tokens to transfer * _useZro - indicates to use zro to pay L0 fees * _adapterParam - flexible bytes array to indicate messaging adapter services in L0 */ function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); /** * @dev returns the circulating amount of tokens on current chain */ function circulatingSupply() external view returns (uint); /** * @dev returns the address of the ERC20 token */ function token() external view returns (address); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity >=0.5.0; interface IOFTReceiverV2 { /** * @dev Called by the OFT contract when tokens are received from source chain. * @param _srcChainId The chain id of the source chain. * @param _srcAddress The address of the OFT token contract on the source chain. * @param _nonce The nonce of the transaction on the source chain. * @param _from The address of the account who calls the sendAndCall() on the source chain. * @param _amount The amount of tokens to transfer. * @param _payload Additional data with no specified format. */ function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../../lzApp/NonblockingLzApp.sol"; import "../../../util/ExcessivelySafeCall.sol"; import "./ICommonOFT.sol"; import "./IOFTReceiverV2.sol"; 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; bool public useCustomAdapterParams; 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 SetUseCustomAdapterParams(bool _useCustomAdapterParams); event CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash); event NonContractAddress(address _address); // _sharedDecimals should be the minimum decimals on all chains constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) { sharedDecimals = _sharedDecimals; } /************************************************************************ * public functions ************************************************************************/ function callOnOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, address _to, uint _amount, bytes calldata _payload, uint _gasForCall) public virtual { require(_msgSender() == address(this), "OFTCore: caller must be OFTCore"); // send _amount = _transferFrom(address(this), _to, _amount); emit ReceiveFromChain(_srcChainId, _to, _amount); // call IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload); } function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner { useCustomAdapterParams = _useCustomAdapterParams; emit SetUseCustomAdapterParams(_useCustomAdapterParams); } /************************************************************************ * 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) { _checkAdapterParams(_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) { _checkAdapterParams(_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 _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual { if (useCustomAdapterParams) { _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas); } else { require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty."); } } function _ld2sd(uint _amount) internal virtual view returns (uint64) { uint amountSD = _amount / _ld2sdRate(); require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow"); return uint64(amountSD); } function _sd2ld(uint64 _amountSD) internal virtual view returns (uint) { return _amountSD * _ld2sdRate(); } function _removeDust(uint _amount) internal virtual view returns (uint amountAfter, uint dust) { dust = _amount % _ld2sdRate(); amountAfter = _amount - dust; } function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal virtual view returns (bytes memory) { return abi.encodePacked(PT_SEND, _toAddress, _amountSD); } function _decodeSendPayload(bytes memory _payload) internal virtual view 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 virtual view returns (bytes memory) { return abi.encodePacked( PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload ); } function _decodeSendAndCallPayload(bytes memory _payload) internal virtual view 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../OFTCoreV2.sol"; import "./IOFTWithFee.sol"; import "./Fee.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; abstract contract BaseOFTWithFee is OFTCoreV2, Fee, ERC165, IOFTWithFee { constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) { } /************************************************************************ * public functions ************************************************************************/ function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, LzCallParams calldata _callParams) public payable virtual override { (_amount,) = _payOFTFee(_from, _dstChainId, _amount); _amount = _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams); require(_amount >= _minAmount, "BaseOFTWithFee: amount is less than minAmount"); } function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) public payable virtual override { (_amount,) = _payOFTFee(_from, _dstChainId, _amount); _amount = _sendAndCall(_from, _dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams); require(_amount >= _minAmount, "BaseOFTWithFee: amount is less than minAmount"); } /************************************************************************ * public view functions ************************************************************************/ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IOFTWithFee).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); function _transferFrom(address _from, address _to, uint _amount) internal virtual override (Fee, OFTCoreV2) returns (uint); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract Fee is Ownable { uint public constant BP_DENOMINATOR = 10000; mapping(uint16 => FeeConfig) public chainIdToFeeBps; uint16 public defaultFeeBp; address public feeOwner; // defaults to owner struct FeeConfig { uint16 feeBP; bool enabled; } event SetFeeBp(uint16 dstchainId, bool enabled, uint16 feeBp); event SetDefaultFeeBp(uint16 feeBp); event SetFeeOwner(address feeOwner); constructor(){ feeOwner = owner(); } function setDefaultFeeBp(uint16 _feeBp) public virtual onlyOwner { require(_feeBp <= BP_DENOMINATOR, "Fee: fee bp must be <= BP_DENOMINATOR"); defaultFeeBp = _feeBp; emit SetDefaultFeeBp(defaultFeeBp); } function setFeeBp(uint16 _dstChainId, bool _enabled, uint16 _feeBp) public virtual onlyOwner { require(_feeBp <= BP_DENOMINATOR, "Fee: fee bp must be <= BP_DENOMINATOR"); chainIdToFeeBps[_dstChainId] = FeeConfig(_feeBp, _enabled); emit SetFeeBp(_dstChainId, _enabled, _feeBp); } function setFeeOwner(address _feeOwner) public virtual onlyOwner { require(_feeOwner != address(0x0), "Fee: feeOwner cannot be 0x"); feeOwner = _feeOwner; emit SetFeeOwner(_feeOwner); } function quoteOFTFee(uint16 _dstChainId, uint _amount) public virtual view returns (uint fee) { FeeConfig memory config = chainIdToFeeBps[_dstChainId]; if (config.enabled) { fee = _amount * config.feeBP / BP_DENOMINATOR; } else if (defaultFeeBp > 0) { fee = _amount * defaultFeeBp / BP_DENOMINATOR; } else { fee = 0; } } function _payOFTFee(address _from, uint16 _dstChainId, uint _amount) internal virtual returns (uint amount, uint fee) { fee = quoteOFTFee(_dstChainId, _amount); amount = _amount - fee; if (fee > 0) { _transferFrom(_from, feeOwner, fee); } } function _transferFrom(address _from, address _to, uint _amount) internal virtual returns (uint); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "../ICommonOFT.sol"; /** * @dev Interface of the IOFT core standard */ interface IOFTWithFee is ICommonOFT { /** * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from` * `_from` the owner of token * `_dstChainId` the destination chain identifier * `_toAddress` can be any size depending on the `dstChainId`. * `_amount` the quantity of tokens in wei * `_minAmount` the minimum amount of tokens to receive on dstChain * `_refundAddress` the address LayerZero refunds if too much message fee is sent * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token) * `_adapterParams` is a flexible bytes array to indicate messaging adapter services */ function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, LzCallParams calldata _callParams) external payable; function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./BaseOFTWithFee.sol"; contract OFTWithFee is BaseOFTWithFee, ERC20 { uint internal immutable ld2sdRate; constructor(string memory _name, string memory _symbol, uint8 _sharedDecimals, address _lzEndpoint) ERC20(_name, _symbol) BaseOFTWithFee(_sharedDecimals, _lzEndpoint) { uint8 decimals = decimals(); require(_sharedDecimals <= decimals, "OFTWithFee: 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; } }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity >=0.7.6; library ExcessivelySafeCall { uint256 constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient 0, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint256 _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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; } _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; _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; } _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "compilerPath": "/Users/user/Library/Caches/hardhat-nodejs/compilers-v2/zksolc/zksolc-v1.3.13", "experimental": {}, "isSystem": true, "optimizer": { "enabled": false, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExceedInboundCap","type":"error"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExceedOutboundCap","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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"}],"name":"DropFailedMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FallbackWithdraw","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"feeBp","type":"uint16"}],"name":"SetDefaultFeeBp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"dstchainId","type":"uint16"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint16","name":"feeBp","type":"uint16"}],"name":"SetFeeBp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeOwner","type":"address"}],"name":"SetFeeOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"chainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"SetInboundCap","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":"newOperator","type":"address"}],"name":"SetOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"chainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"SetOutboundCap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelist","type":"bool"}],"name":"SetWhitelist","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BP_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"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":"uint16","name":"","type":"uint16"}],"name":"chainIdToFeeBps","outputs":[{"internalType":"uint16","name":"feeBP","type":"uint16"},{"internalType":"bool","name":"enabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToInboundCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToLastReceivedTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToLastSentTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToOutboundCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToReceivedTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToSentTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pure","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":"defaultFeeBp","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"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":[],"name":"feeOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"quoteOFTFee","outputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"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":"uint256","name":"_minAmount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_minAmount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_feeBp","type":"uint16"}],"name":"setDefaultFeeBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint16","name":"_feeBp","type":"uint16"}],"name":"setFeeBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeOwner","type":"address"}],"name":"setFeeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"chainId","type":"uint16"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"setInboundCap","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":"chainId","type":"uint16"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"setOutboundCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isWhitelist","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000ed15a426943a2e6a6347edd2571c2559a728ea78a656c61ed384b61e28e000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da
Deployed Bytecode
0x000400000000000200010000000000020000000003010019000000600330027000000de8043001970003000000410355000200000001035500000de80030019d000100000000001f00000001012001900000003d0000c13d0000008001000039000000400010043f0000000001000031000000040210008c000005a50000413d0000000202000367000000000202043b000000e00220027000000dea0320009c000000540000a13d00000deb0320009c0000006e0000a13d00000dec0320009c000000be0000213d00000df90320009c000001250000a13d00000dfa0320009c000001c60000a13d00000dfb0120009c000002f50000613d00000dfc0120009c000003030000613d00000dfd0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d000000400100043d0000000102000039000000000021043500000de80200004100000de80310009c0000000001028019000000400110021000000e50011001c70000379a0001042e000000e001000039000000400010043f0000000001000416000000000101004b000005a50000c13d379905a70000040f379905e90000040f000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a0002004430000004002000039000000c00300043d000001c000200443000001e00030044300000100001004430000000301000039000001200010044300000de9010000410000379a0001042e00000e1d0320009c000000970000213d00000e360320009c000000d40000a13d00000e370320009c000001430000a13d00000e380120009c000001e60000a13d00000e390120009c0000030f0000613d00000e3a0120009c000003200000613d00000e3b0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d00000000010000313799085c0000040f379912d70000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e050120009c000000f20000a13d00000e060120009c000001510000a13d00000e070120009c000001f90000a13d00000e080120009c000003380000613d00000e090120009c000003520000613d00000e0a0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d0000000801000039000000000101041a000000100110027000000e4f01100197000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e1e0320009c000001150000a13d00000e1f0120009c000001650000a13d00000e200120009c0000020c0000a13d00000e210120009c0000036d0000613d00000e220120009c0000037b0000613d00000e230120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d37990a820000040f000000ff0110018f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000ded0120009c000001770000a13d00000dee0120009c0000021c0000a13d00000def0120009c000003930000613d00000df00120009c000003a90000613d00000df10120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379908080000040f379936730000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e430120009c000001890000213d00000e490120009c0000022c0000213d00000e4c0120009c000003c40000613d00000e4d0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379907660000040f00000e520110019700000e530210009c0000000002000019000000010200603900000e540110009c00000000010000190000000101006039000000000121019f000000010110018f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e120120009c0000019d0000213d00000e180120009c0000023c0000213d00000e1b0120009c0000051c0000613d00000e1c0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d000000000100041a00000e4f01100197000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e2b0320009c000001b40000213d00000e310320009c0000025c0000213d00000e340320009c000003d00000613d00000e350220009c000005a50000c13d3799088e0000040f3799260c0000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e000120009c000002640000213d00000e030120009c000003e90000613d00000e040120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f37990bc90000040f00000000030100190000000004020019000000400100043d000100000001001d0000000002030019000000000304001937990bdf0000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379a0001042e00000e3e0320009c000002740000213d00000e410320009c000003f50000613d00000e420220009c000005a50000c13d379907d60000040f3799217e0000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e0d0120009c000002840000213d00000e100120009c000004040000613d00000e110120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f37990b460000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e260120009c000002980000213d00000e290120009c000004190000613d00000e2a0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379907140000040f379917c00000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000df40120009c000002b40000213d00000df70120009c000004370000613d00000df80120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000000100003137990c7f0000040f37991a570000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e440120009c000002c60000213d00000e470120009c000004430000613d00000e480120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f379907a80000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e130120009c000002ce0000213d00000e160120009c0000052a0000613d00000e170120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379908e00000040f37990ad30000040f000000000101004b0000000001000019000000010100c039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e2c0120009c000002e30000213d00000e2f0120009c000004520000613d00000e300120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379909080000040f379936b30000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000dfe0320009c000004600000613d00000dff0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d0000000801000039000000000101041a0000ffff0110018f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e3c0120009c0000054b0000613d00000e3d0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379907910000040f379932c90000040f0000000101000039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e0b0120009c0000055b0000613d00000e0c0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379907910000040f3799307c0000040f0000000101000039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e240120009c000005670000613d00000e250120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000000100003137990a4f0000040f37992e070000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000df20120009c000004680000613d00000df30120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379908e00000040f37992f850000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e4a0120009c000004860000613d00000e4b0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f379911930000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e190120009c0000057c0000613d00000e1a0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d0000000301000039000000000101041a00000e4f01100197000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e320120009c000004a70000613d00000e330120009c000005a50000c13d0000000001000416000000000101004b000003d30000613d000005a50000013d00000e010120009c000004b30000613d00000e020120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000000100003137990bfb0000040f379910b80000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e3f0120009c000004c10000613d00000e400120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379908080000040f379936330000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000e0e0120009c000004db0000613d00000e0f0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000000100003137990b590000040f37992c0a0000040f000000400300043d00000020043000390000000000240435000000000013043500000de80100004100000de80230009c0000000001034019000000400110021000000e51011001c70000379a0001042e00000e270120009c000004ea0000613d00000e280120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d37992f490000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e00000df50120009c000004f80000613d00000df60120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379908080000040f37992ed10000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e450120009c000005040000613d00000e460120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000057f0000013d00000e140120009c000005970000613d00000e150120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379909240000040f37990afa0000040f000000000101004b0000000001000019000000010100c039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000e2d0120009c000005100000613d00000e2e0120009c000005a50000c13d0000000001000416000000000101004b000005a50000c13d0000000001000031379909240000040f3799098d0000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000000100003137990c330000040f379931130000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000000100003137990c4c0000040f379916830000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799085c0000040f379916ec0000040f000000000101004b0000000001000019000000010100c039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d379937400000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d000000400100043d0000271002000039000000000021043500000de80200004100000de80310009c0000000001028019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d37990bb60000040f00000e4f01100197000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f37990a6f0000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d379936fa0000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d000000000100003137990cdb0000040f000000000304001937990fe60000040f0000000002010019000000400100043d000100000001001d37990a370000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d000000000100041000000e4f01100197000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d0000000001000031379907140000040f37990d110000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d000000400100043d000000000001043500000de80200004100000de80310009c0000000001028019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d0000000001000031379908e00000040f379916470000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d0000000001000031379907bb0000040f379931970000040f0000000101000039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f379915b50000040f0000000002010019000000400100043d000100000001001d37990a370000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d0000000e01000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000000100003137990c670000040f37991bf90000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d0000000001000031379907910000040f379931370000040f0000000101000039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f379908f50000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e379907140000040f379918610000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d0000000501000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d37992fc70000040f0000000002010019000000400100043d000100000001001d37990a370000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379a0001042e0000000001000416000000000101004b000005a50000c13d0000000001000031379908e00000040f37992e8b0000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f37990be80000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d000000400100043d0000001202000039000000000021043500000de80200004100000de80310009c0000000001028019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d0000000001000031379907910000040f379933680000040f0000000101000039000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d0000000001000031379908e00000040f379930690000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799085c0000040f379913a90000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f379912350000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f37992dc00000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d000000000100003137990a960000040f37990aaf0000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d379930180000040f0000000002010019000000400100043d000100000001001d37990a370000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799081f0000040f37992aba0000040f000000400300043d00000020043000390000000000240435000000000013043500000de80100004100000de80230009c0000000001034019000000400110021000000e51011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799085c0000040f3799148a0000040f00000de801000041000000400200043d00000de80320009c000000000102401900000040011002100000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f379909d80000040f0000000002010019000000400100043d000100000001001d37990a370000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379a0001042e0000000001000416000000000101004b000005a50000c13d000000040100008a000000000110003100000e4e02000041000000000301004b0000000003000019000000000302401900000e4e01100197000000000401004b000000000200a01900000e4e0110009c00000000010300190000000001026019000000000101004b000005a50000c13d0000000b01000039000000000101041a000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e0000000001000416000000000101004b000005a50000c13d00000000010000313799077c0000040f37990ae70000040f000000400200043d000000000012043500000de80100004100000de80320009c0000000001024019000000400110021000000e50011001c70000379a0001042e00000000010000190000379b0001043000000000020000310000001f01200039000000200300008a000000000431016f000000400100043d0000000003140019000000000443004b0000000004000019000000010400403900000e550530009c000005e30000213d0000000104400190000005e30000c13d000000400030043f0000001f0320018f00000002040003670000000505200272000005c20000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000005ba0000413d000000000603004b000005d10000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f000000000035043500000e4e030000410000001f0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b000005e10000613d000000000101043300000e4f0210009c000005e10000213d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b000104300007000000000002000500000001001d000000400300043d00000e580130009c000007060000813d0000004001300039000000400010043f0000001101000039000000000213043600000e5901000041000300000002001d0000000000120435000000400200043d00000e5a0120009c000007060000213d000700000003001d0000004001200039000000400010043f0000000401000039000600000002001d000000000212043600000e5b01000041000200000002001d0000000000120435000000000100041100000e4f06100197000000000100041a00000e5c02100197000000000262019f000000000020041b00000de802000041000000400300043d000000000400041400000de80540009c000000000402801900000de80530009c00000000020340190000004002200210000000c003400210000000000223019f00000e4f0510019700000e5d012001c70000800d02000039000000030300003900000e5e040000413799378f0000040f00000001012001900000070c0000613d000000050100002900000e4f01100197000000800010043f0000000801000039000000a00010043f000000000201041a00000e5f02200197000000000300041a000000100330021000000e6003300197000000000232019f000000000021041b0000000701000029000000000601043300000e550160009c000007060000213d0000000c04000039000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000070e0000c13d000000200130008c000500000004001d000400000006001d000006570000413d000100000003001d000000000040043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000070c0000613d00000004060000290000001f026000390000000502200270000000200360008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000504000029000006570000813d000000000002041b0000000102200039000000000312004b000006530000413d000000200160008c000006850000413d000000000040043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000070c0000613d000000200200008a000000040700002900000000032701700000002002000039000000000101043b0000000706000029000006750000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b0000066d0000413d000000000373004b0000000605000029000006810000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000504000029000006920000013d000000000106004b00000000010000190000000605000029000006920000613d0000000301600210000000010200008a000000000112022f000000000121013f00000003020000290000000002020433000000000112016f0000000102600210000000000121019f000000000014041b000000000505043300000e550150009c000007060000213d0000000d04000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f00000001011001900000070e0000c13d000000200130008c000700000004001d000500000005001d000006c40000413d000400000003001d000000000040043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000070c0000613d00000005050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000704000029000006c40000813d000000000002041b0000000102200039000000000312004b000006c00000413d000000200150008c000006f10000413d000000000040043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000070c0000613d000000200200008a000000050700002900000000032701700000002002000039000000000101043b0000000606000029000006e20000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000006da0000413d000000000373004b000006ed0000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000704000029000006fd0000013d000000000105004b0000000001000019000006fd0000613d0000000301500210000000010200008a000000000112022f000000000121013f00000002020000290000000002020433000000000112016f0000000102500210000000000121019f000000000014041b00000e6201000041000000c00010043f0000000e01000039000000000201041a000001000300008a000000000232016f000000000021041b000000000001042d00000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000000010000190000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b00010430000000040210008a00000e4e030000410000007f0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b000007640000613d00000002050003670000000402500370000000000702043b0000ffff0270008c000007640000213d0000002402500370000000000202043b00000e550320009c000007640000213d000000230320003900000e4e04000041000000000613004b0000000006000019000000000604801900000e4e0810019700000e4e03300197000000000983004b0000000004008019000000000383013f00000e4e0330009c00000000030600190000000003046019000000000303004b000007640000c13d0000000403200039000000000335034f000000000303043b00000e550430009c000007640000213d00000024022000390000000004230019000000000414004b000007640000213d0000004404500370000000000404043b00000e550640009c000007640000213d0000006406500370000000000806043b00000e550680009c000007640000213d000000230680003900000e4e09000041000000000a16004b000000000a000019000000000a09801900000e4e0b10019700000e4e06600197000000000cb6004b00000000090080190000000006b6013f00000e4e0660009c00000000060a00190000000006096019000000000606004b000007640000c13d0000000406800039000000000565034f000000000605043b00000e550560009c000007640000213d00000024058000390000000008560019000000000118004b000007640000213d0000000001070019000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000001f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b0000077a0000613d00000004010000390000000201100367000000000101043b00000e5202100197000000000212004b0000077a0000c13d000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000001f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b0000078f0000613d00000004010000390000000201100367000000000101043b0000ffff0210008c0000078f0000213d000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000003f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b000007a60000613d00000002020003670000000401200370000000000101043b00000e4f0310009c000007a60000213d0000002402200370000000000202043b000000000001042d00000000010000190000379b000104300000ffff0110018f00000000001004350000001401000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000007b90000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000005f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b000007d40000613d00000002030003670000000401300370000000000101043b00000e4f0210009c000007d40000213d0000002402300370000000000202043b00000e4f0420009c000007d40000213d0000004403300370000000000303043b000000000001042d00000000010000190000379b00010430000000040210008a00000e4e03000041000000bf0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b000008060000613d00000002060003670000000402600370000000000702043b00000e4f0270009c000008060000213d0000002402600370000000000202043b0000ffff0320008c000008060000213d0000008403600370000000000503043b0000006403600370000000000403043b0000004403600370000000000303043b000000a406600370000000000606043b00000e550860009c000008060000213d0000000406600039000000000161004900000e4e08000041000000600910008c0000000009000019000000000908401900000e4e01100197000000000a01004b000000000800a01900000e4e0110009c00000000010900190000000001086019000000000101004b000008060000c13d0000000001070019000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000003f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b0000081d0000613d00000002020003670000000401200370000000000101043b0000ffff0310008c0000081d0000213d0000002402200370000000000202043b000000000001042d00000000010000190000379b00010430000000040210008a00000e4e030000410000009f0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b0000085a0000613d00000002050003670000000402500370000000000702043b0000ffff0270008c0000085a0000213d0000004402500370000000000302043b0000002402500370000000000202043b0000006404500370000000000404043b000000000604004b0000000006000019000000010600c039000000000664004b0000085a0000c13d0000008406500370000000000806043b00000e550680009c0000085a0000213d000000230680003900000e4e09000041000000000a16004b000000000a000019000000000a09801900000e4e0b10019700000e4e06600197000000000cb6004b00000000090080190000000006b6013f00000e4e0660009c00000000060a00190000000006096019000000000606004b0000085a0000c13d0000000406800039000000000565034f000000000605043b00000e550560009c0000085a0000213d00000024058000390000000008560019000000000118004b0000085a0000213d0000000001070019000000000001042d00000000010000190000379b00010430000000040210008a00000e4e030000410000003f0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b0000088c0000613d00000002020003670000000403200370000000000403043b0000ffff0340008c0000088c0000213d0000002403200370000000000503043b00000e550350009c0000088c0000213d000000230350003900000e4e06000041000000000713004b0000000007000019000000000706801900000e4e0810019700000e4e03300197000000000983004b0000000006008019000000000383013f00000e4e0330009c00000000030700190000000003066019000000000303004b0000088c0000c13d0000000403500039000000000232034f000000000302043b00000e550230009c0000088c0000213d00000024025000390000000005230019000000000115004b0000088c0000213d0000000001040019000000000001042d00000000010000190000379b00010430000000040210008a00000e4e03000041000000ff0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b000008de0000613d00000002090003670000000402900370000000000a02043b00000e4f02a0009c000008de0000213d0000002402900370000000000202043b0000ffff0320008c000008de0000213d0000008403900370000000000503043b0000006403900370000000000403043b0000004403900370000000000303043b000000a406900370000000000606043b00000e550760009c000008de0000213d000000230760003900000e4e08000041000000000b17004b000000000b000019000000000b08801900000e4e0c10019700000e4e07700197000000000dc7004b00000000080080190000000007c7013f00000e4e0770009c00000000070b00190000000007086019000000000707004b000008de0000c13d0000000407600039000000000779034f000000000707043b00000e550870009c000008de0000213d00000024066000390000000008670019000000000818004b000008de0000213d000000c408900370000000000808043b00000e550b80009c000008de0000213d000000e409900370000000000909043b00000e550b90009c000008de0000213d0000000409900039000000000191004900000e4e0b000041000000600c10008c000000000c000019000000000c0b401900000e4e01100197000000000d01004b000000000b00a01900000e4e0110009c00000000010c001900000000010b6019000000000101004b000008de0000c13d00000000010a0019000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000001f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b000008f30000613d00000004010000390000000201100367000000000101043b00000e4f0210009c000008f30000213d000000000001042d00000000010000190000379b000104300000ffff0110018f00000000001004350000001101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000009060000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000003f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b000009220000613d00000002020003670000000401200370000000000101043b00000e4f0310009c000009220000213d0000002402200370000000000202043b000000000302004b0000000003000019000000010300c039000000000332004b000009220000c13d000000000001042d00000000010000190000379b000104300000000003010019000000040130008a00000e4e020000410000005f0410008c0000000004000019000000000402201900000e4e01100197000000000501004b000000000200801900000e4e0110009c00000000010400190000000001026019000000000101004b000009850000613d00000002020003670000000401200370000000000101043b0000ffff0410008c000009850000213d0000002404200370000000000504043b00000e550450009c000009850000213d000000230450003900000e4e06000041000000000734004b0000000007000019000000000706801900000e4e0830019700000e4e04400197000000000984004b0000000006008019000000000484013f00000e4e0440009c00000000040700190000000004066019000000000404004b000009850000c13d0000000404500039000000000242034f000000000402043b00000e640240009c000009870000813d0000003f02400039000000200600008a000000000662016f000000400200043d0000000006620019000000000726004b0000000007000019000000010700403900000e550860009c000009870000213d0000000107700190000009870000c13d0000002407500039000000400060043f00000000054204360000000006740019000000000336004b000009850000213d0000001f0340018f000000020670036700000005074002720000096e0000613d00000000080000190000000509800210000000000a950019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b000009660000413d000000000803004b0000097d0000613d0000000507700210000000000676034f00000000077500190000000303300210000000000807043300000000083801cf000000000838022f000000000606043b0000010003300089000000000636022f00000000033601cf000000000383019f00000000003704350000000003450019000000000003043500000044030000390000000203300367000000000303043b00000e550430009c000009850000213d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b000104300002000000000002000100000003001d000200000002001d0000ffff0110018f00000000001004350000000401000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000009d60000613d000000400200043d000000000301043b00000002080000290000000001080433000000000401004b0000000004210019000009b00000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b000009a60000413d000000000515004b000009b00000a13d0000000000040435000000000034043500000de80300004100000de80420009c00000000020380190000004002200210000000200110003900000de80410009c00000000010380190000006001100210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000801002000039379937940000040f0000000102200190000009d60000613d000000000101043b000000010200002900000e55022001970000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000009d60000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b0001043000030000000000020000ffff0110018f00000000001004350000000101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000a290000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b00000a2b0000c13d000000400500043d0000000004650436000000000303004b00000a1a0000613d000100000004001d000200000006001d000300000005001d000000000010043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f000000010220019000000a290000613d00000020020000390000000206000029000000000306004b000000030500002900000a1e0000613d000000000101043b0000000003000019000000010700002900000000020300190000000003720019000000000401041a000000000043043500000001011000390000002003200039000000000463004b00000a0e0000413d0000005f01200039000000200200008a000000000221016f00000a1e0000013d000001000100008a000000000112016f000000000014043500000040020000390000000001520019000000000221004b0000000002000019000000010200403900000e550310009c00000a310000213d000000010220019000000a310000c13d000000400010043f0000000001050019000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b00000a4a0000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b00000a3f0000413d000000000234004b00000a4a0000a13d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d000000040110008a00000e4e020000410000005f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b00000a6d0000613d00000002030003670000000401300370000000000101043b0000ffff0210008c00000a6d0000213d0000002402300370000000000202043b000000000402004b0000000004000019000000010400c039000000000442004b00000a6d0000c13d0000004403300370000000000303043b0000ffff0430008c00000a6d0000213d000000000001042d00000000010000190000379b000104300000ffff0110018f00000000001004350000000f01000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000a800000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b0001043000000e65010000410000000000100439000000000100041200000004001004430000002001000039000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f000000010220019000000a940000613d000000000101043b000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000003f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b00000aad0000613d00000002020003670000000401200370000000000101043b0000ffff0310008c00000aad0000213d0000002402200370000000000202043b0000ffff0320008c00000aad0000213d000000000001042d00000000010000190000379b000104300001000000000002000100000002001d0000ffff0110018f00000000001004350000000201000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000ad10000613d000000000101043b00000001020000290000ffff0220018f0000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000ad10000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b0001043000000e4f0110019700000000001004350000001501000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000ae50000613d000000000101043b000000000101041a000000ff0110018f000000000001042d00000000010000190000379b000104300000ffff0110018f00000000001004350000001201000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000af80000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b000104300002000000000002000100000003001d000200000002001d0000ffff0110018f00000000001004350000000601000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000b440000613d000000400200043d000000000301043b00000002080000290000000001080433000000000401004b000000000421001900000b1d0000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b00000b130000413d000000000515004b00000b1d0000a13d0000000000040435000000000034043500000de80300004100000de80420009c00000000020380190000004002200210000000200110003900000de80410009c00000000010380190000006001100210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000801002000039379937940000040f000000010220019000000b440000613d000000000101043b000000010200002900000e55022001970000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000b440000613d000000000101043b000000000101041a000000ff0110018f000000000001042d00000000010000190000379b000104300000ffff0110018f00000000001004350000001001000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000b570000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b00010430000000040210008a00000e4e03000041000000df0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b00000bb40000613d00000002080003670000000402800370000000000a02043b0000ffff02a0008c00000bb40000213d0000004402800370000000000302043b0000002402800370000000000202043b0000006404800370000000000404043b00000e550540009c00000bb40000213d000000230540003900000e4e06000041000000000715004b0000000007000019000000000706801900000e4e0910019700000e4e05500197000000000b95004b0000000006008019000000000595013f00000e4e0550009c00000000050700190000000005066019000000000505004b00000bb40000c13d0000000405400039000000000558034f000000000505043b00000e550650009c00000bb40000213d00000024044000390000000006450019000000000616004b00000bb40000213d0000008406800370000000000606043b00000e550760009c00000bb40000213d000000a407800370000000000707043b000000000907004b0000000009000019000000010900c039000000000997004b00000bb40000c13d000000c409800370000000000b09043b00000e5509b0009c00000bb40000213d0000002309b0003900000e4e0c000041000000000d19004b000000000d000019000000000d0c801900000e4e0e10019700000e4e09900197000000000fe9004b000000000c0080190000000009e9013f00000e4e0990009c00000000090d001900000000090c6019000000000909004b00000bb40000c13d0000000409b00039000000000898034f000000000908043b00000e550890009c00000bb40000213d0000002408b00039000000000b89001900000000011b004b00000bb40000213d00000000010a0019000000000001042d00000000010000190000379b0001043000000e6501000041000000000010043900000000010004120000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f000000010220019000000bc70000613d000000000101043b000000000001042d00000000010000190000379b000104300000ffff0110018f00000000001004350000000701000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000bdd0000613d000000000101043b000000000201041a0000ffff0120018f0000001002200270000000ff0220018f000000000001042d00000000010000190000379b00010430000000000303004b0000000003000019000000010300c039000000200410003900000000003404350000ffff0220018f00000000002104350000004001100039000000000001042d0000ffff0110018f00000000001004350000001301000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000bf90000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b00010430000000040210008a00000e4e030000410000007f0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b00000c310000613d00000002040003670000000402400370000000000602043b0000ffff0260008c00000c310000213d0000002402400370000000000202043b0000ffff0320008c00000c310000213d0000004403400370000000000303043b0000006405400370000000000705043b00000e550570009c00000c310000213d000000230570003900000e4e08000041000000000915004b0000000009000019000000000908801900000e4e0a10019700000e4e05500197000000000ba5004b00000000080080190000000005a5013f00000e4e0550009c00000000050900190000000005086019000000000505004b00000c310000c13d0000000405700039000000000454034f000000000504043b00000e550450009c00000c310000213d00000024047000390000000007450019000000000117004b00000c310000213d0000000001060019000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000003f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b00000c4a0000613d00000002020003670000000401200370000000000101043b00000e4f0310009c00000c4a0000213d0000002402200370000000000202043b00000e4f0320009c00000c4a0000213d000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000005f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b00000c650000613d00000002030003670000000401300370000000000101043b0000ffff0210008c00000c650000213d0000002402300370000000000202043b0000ffff0420008c00000c650000213d0000004403300370000000000303043b000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000001f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b00000c7d0000613d00000004010000390000000201100367000000000101043b000000000201004b0000000002000019000000010200c039000000000221004b00000c7d0000c13d000000000001042d00000000010000190000379b00010430000000040210008a00000e4e03000041000000ff0420008c0000000004000019000000000403201900000e4e02200197000000000502004b000000000300801900000e4e0220009c00000000020400190000000002036019000000000202004b00000cd90000613d000000020a0003670000000402a00370000000000b02043b0000ffff02b0008c00000cd90000213d0000002402a00370000000000202043b00000e550320009c00000cd90000213d000000230320003900000e4e04000041000000000513004b0000000005000019000000000504801900000e4e0610019700000e4e03300197000000000763004b0000000004008019000000000363013f00000e4e0330009c00000000030500190000000003046019000000000303004b00000cd90000c13d000000040320003900000000033a034f000000000303043b00000e550430009c00000cd90000213d00000024022000390000000004230019000000000414004b00000cd90000213d0000004404a00370000000000404043b00000e550540009c00000cd90000213d0000006405a00370000000000505043b0000008406a00370000000000606043b00000e4f0760009c00000cd90000213d000000a407a00370000000000707043b000000c408a00370000000000808043b00000e550980009c00000cd90000213d000000230980003900000e4e0c000041000000000d19004b000000000d000019000000000d0c801900000e4e0e10019700000e4e09900197000000000fe9004b000000000c0080190000000009e9013f00000e4e0990009c00000000090d001900000000090c6019000000000909004b00000cd90000c13d000000040980003900000000099a034f000000000909043b00000e550c90009c00000cd90000213d0000002408800039000000000c89001900000000011c004b00000cd90000213d000000e401a00370000000000a01043b00000000010b0019000000000001042d00000000010000190000379b00010430000000040110008a00000e4e020000410000007f0310008c0000000003000019000000000302201900000e4e01100197000000000401004b000000000200801900000e4e0110009c00000000010300190000000001026019000000000101004b00000cf80000613d00000002040003670000000401400370000000000101043b0000ffff0210008c00000cf80000213d0000002402400370000000000202043b0000ffff0320008c00000cf80000213d0000004403400370000000000303043b00000e4f0530009c00000cf80000213d0000006404400370000000000404043b000000000001042d00000000010000190000379b00010430000000400210003900000e6703000041000000000032043500000020021000390000001e030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000600210003900000e68030000410000000000320435000000400210003900000e69030000410000000000320435000000200210003900000026030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000d000000000002000d00000006001d000800000005001d000500000004001d000b00000003001d000a00000002001d000c00000001001d00000e6501000041000000000010043900000000010004120000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f000000010220019000000fb70000613d000000000101043b0000000002000411000000000121013f00000e4f0110019800000fcf0000c13d0000000c010000290000ffff0110018f000900000001001d00000000001004350000000101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000fb70000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b00000fe00000c13d000000400600043d0000000004560436000000000303004b000700000006001d000600000004001d00000d6f0000613d000c00000005001d000000000010043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f000000010220019000000fb70000613d00000020020000390000000c08000029000000000308004b0000000b05000029000000070600002900000d740000613d000000000101043b0000000003000019000000060700002900000000020300190000000003720019000000000401041a000000000043043500000001011000390000002003200039000000000483004b00000d630000413d0000005f01200039000000200200008a000000000221016f00000d740000013d000001000100008a000000000112016f000000000014043500000040020000390000000b05000029000000000b62001900000000012b004b0000000001000019000000010100403900000e5502b0009c00000fb90000213d000000010110019000000fb90000c13d0000004000b0043f0000000001060433000000000251004b00000fbf0000c13d000000000101004b00000fbf0000613d000000000200003100000e550150009c00000fb90000213d0000003f01500039000000200300008a000c00000003001d000000000131016f000400000001001d00000000011b001900000e550310009c00000fb90000213d000000400010043f00000000015b04360000000a030000290000000003350019000300000003001d000000000223004b00000fb70000213d0000000b060000290000001f0760018f0000000a020000290000000202200367000000050860027200000da30000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000483004b00000d9b0000413d000000000307004b00000db20000613d0000000503800210000000000232034f00000000033100190000000304700210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000230435000100000008001d000200000007001d0000000002610019000000000002043500000de80200004100000de80310009c0000000001028019000000400110021000000000030b043300000de80430009c00000000030280190000006003300210000000000113019f000000000300041400000de80430009c0000000002034019000000c002200210000000000112019f00000e5d011001c70000801002000039379937940000040f000000010220019000000fb70000613d00000de802000041000000060400002900000de80340009c0000000003020019000000000304401900000040033002100000000704000029000000000404043300000de80540009c00000000040280190000006004400210000000000334019f000000000101043b000700000001001d000000000100041400000de80410009c0000000001028019000000c001100210000000000131019f00000e5d011001c70000801002000039379937940000040f000000010220019000000fb70000613d000000400b00043d000000000101043b0000000702000029000000000112004b0000000b0400002900000fbf0000c13d000000040100002900000000011b00190000000002b1004b0000000002000019000000010200403900000e550310009c00000fb90000213d000000010220019000000fb90000c13d0000000002000031000000400010043f00000000014b04360000000303000029000000000223004b00000fb70000213d0000000a0200002900000002022003670000000108000029000000000308004b0000000b06000029000000020700002900000e060000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000483004b00000dfe0000413d000000000307004b00000e150000613d0000000503800210000000000232034f00000000033100190000000304700210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000001610019000000000001043500000000010000310000000d0200002900000e550220009c00000fb90000213d0000000d020000290000003f022000390000000c03000029000000000232016f000000400c00043d00000000022c00190000000003c2004b0000000003000019000000010300403900000e550420009c00000fb90000213d000000010330019000000fb90000c13d000000400020043f0000000d02000029000000000d2c043600000008030000290000000002320019000000000112004b00000fb70000213d0000000d030000290000001f0130018f00000008020000290000000202200367000000050330027200000e3e0000613d0000000004000019000000050540021000000000065d0019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b00000e360000413d000000000401004b00000e4d0000613d0000000503300210000000000232034f00000000033d00190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f00000000001304350000000d0100002900000000011d001900000000000104350000000001000414000000400300043d000000440230003900000080040000390000000000420435000000200430003900000e6b02000041000000000024043500000024053000390000000902000029000000000025043500000000060b0433000000a4023000390000000000620435000000000200041000000e4f02200197000000c407300039000000000806004b00000e6f0000613d000000000800001900000000097800190000002008800039000000000ab80019000000000a0a04330000000000a90435000000000968004b00000e640000413d000000000868004b00000e6f0000a13d000000000876001900000000000804350000001f066000390000000c08000029000000000686016f0000000007760019000000000557004900000084063000390000000000560435000000050500002900000e55065001970000006405300039000b00000006001d000000000065043500000000060c04330000000005670436000000000706004b00000e8b0000613d0000000007000019000000000857001900000020077000390000000009c7001900000000090904330000000000980435000000000867004b00000e800000413d000000000767004b00000e8b0000a13d000000000756001900000000000704350000001f066000390000000c07000029000000000676016f00000000055600190000000006450049000000000063043500000000053500490000001f05500039000000000575016f0000000009350019000000000559004b0000000005000019000000010500403900000e550690009c00000fb90000213d000000010550019000000fb90000c13d000000400090043f00000e6c0590009c00000fb90000213d000000c005900039000000400050043f0000009605000039000000000a590436000000000500003100000002055003670000000006000019000000050760021000000000087a0019000000000775034f000000000707043b00000000007804350000000106600039000000050760008c00000ea60000413d000000040520008c000d0000000b001d000a0000000c001d000800000009001d00000eb60000c13d0000000101000031000000000200001900000ed10000013d00000de80500004100000de80640009c00000000040580190000004004400210000000000303043300000de80630009c00000000030580190000006003300210000000000343019f00000de80410009c0000000001058019000000c001100210000000000113019f00070000000d001d00060000000a001d3799378f0000040f000000060a000029000000070d00002900000008090000290000000a0c000029000000010300008a000000000232013f000000010220018f0003000000010355000000600110027000010de80010019d00000de801100197000000960310008c0000009604000039000000000401401900000000004904350000000101000031000000000114004b00000fb70000213d00000003030003670000001f0140018f000000050440027200000ee50000613d0000000005000019000000050650021000000000076a0019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000edd0000413d000000000501004b00000ef40000613d0000000504400210000000000343034f00000000044a00190000000301100210000000000504043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f0000000000140435000000000102004b00000fb60000613d00000de80100004100000de802d0009c000000000201001900000000020d4019000000400220021000000000030c043300000de80430009c00000000030180190000006003300210000000000223019f000000000300041400000de80430009c0000000001034019000000c001100210000000000121019f00000e5d011001c70000801002000039379937940000040f000000010220019000000fb70000613d000000000101043b000700000001001d000000090100002900000000001004350000000401000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000d08000029000000010220019000000fb70000613d000000400200043d000000000301043b0000000001080433000000000401004b000000000421001900000f2c0000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b00000f220000413d000000000515004b00000f2c0000a13d0000000000040435000000000034043500000de80300004100000de80420009c00000000020380190000004002200210000000200110003900000de80410009c00000000010380190000006001100210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000801002000039379937940000040f000000010220019000000fb70000613d000000000101043b0000000b020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000a080000290000000d07000029000000010220019000000fb70000613d000000000101043b0000000702000029000000000021041b000000400100043d0000002002100039000000a0030000390000000000320435000000090200002900000000002104350000000002070433000000a0031000390000000000230435000000c003100039000000000402004b00000f6b0000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b00000f600000413d000000000424004b00000f6b0000a13d0000000004320019000000000004043500000040041000390000000b0500002900000000005404350000001f022000390000000c04000029000000000242016f000000000232001900000000031200490000006004100039000000000034043500000000030804330000000002320436000000000403004b000000080700002900000f860000613d000000000400001900000000052400190000002004400039000000000684001900000000060604330000000000650435000000000534004b00000f7b0000413d000000000434004b00000f860000a13d000000000423001900000000000404350000001f033000390000000c04000029000000000343016f000000000223001900000000031200490000008004100039000000000034043500000000030704330000000002320436000000000403004b00000f9d0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00000f920000413d000000000434004b00000f9d0000a13d000000000423001900000000000404350000001f033000390000000c04000029000000000343016f0000000002120049000000000232001900000de80300004100000de80420009c0000000002038019000000600220021000000de80410009c00000000010380190000004001100210000000000112019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000800d02000039000000010300003900000e6d040000413799378f0000040f000000010120019000000fb70000613d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000d0000000b001d00000e6a0100004100000000001b04350000000401b0003937990d040000040f0000000d04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000d00000002001d00000e6a010000410000000000120435000000040120003937990cfa0000040f0000000d04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b000104300003000000000002000100000003001d000200000002001d000300000001001d00000e6501000041000000000010043900000000010004120000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f00000001022001900000108a0000613d000000000201043b000000400800043d000000640180003900000001030000290000000000310435000000000100041000000e4f011001970000004403800039000000000013043500000002010000290000ffff0110018f0000002403800039000000000013043500000e6e01000041000000000018043500000003010000290000ffff0110018f00000004038000390000000000130435000000000100041400000e4f02200197000000040320008c000010130000c13d00000003010003670000000104000031000010260000013d00000de80300004100000de80410009c000000000103801900000de80480009c00000000030840190000004003300210000000c001100210000000000131019f00000e6f011001c7000300000008001d379937940000040f00000003080000290000000003010019000000600330027000010de80030019d00000de80430019700030000000103550000000102200190000010920000613d0000001f0240018f0000000503400272000010320000613d000000000400001900000005054002100000000006580019000000000551034f000000000505043b00000000005604350000000104400039000000000534004b0000102a0000413d000000000402004b000010410000613d0000000503300210000000000131034f00000000033800190000000302200210000000000403043300000000042401cf000000000424022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000141019f00000000001304350000001f010000390000000101100031000000200200008a000000000321016f0000000001830019000000000331004b0000000003000019000000010300403900000e550410009c0000108c0000213d00000001033001900000108c0000c13d000000400010043f00000e4e040000410000000103000031000000200530008c0000000005000019000000000504401900000e4e06300197000000000706004b000000000400a01900000e4e0660009c000000000405c019000000000404004b0000108a0000c13d000000000408043300000e550540009c0000108a0000213d000000000583001900000000038400190000001f0430003900000e4e06000041000000000754004b0000000007000019000000000706801900000e4e0440019700000e4e08500197000000000984004b0000000006008019000000000484013f00000e4e0440009c00000000040700190000000004066019000000000404004b0000108a0000c13d000000004303043400000e550630009c0000108c0000213d0000003f06300039000000000226016f000000000212001900000e550620009c0000108c0000213d000000400020043f00000000023104360000000006430019000000000556004b0000108a0000213d000000000503004b000010890000613d000000000500001900000000062500190000000007450019000000000707043300000000007604350000002005500039000000000635004b0000107e0000413d000000000435004b000010890000a13d00000000022300190000000000020435000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d0000001f0340018f00000005044002720000109f0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000010970000413d000000000503004b000010ae0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b000104300006000000000002000600000005001d000500000004001d000200000003001d000300000002001d000400000001001d000000000100041a0000000002000411000000000112013f00000e4f01100198000011560000c13d00000e6501000041000000000010043900000000010004120000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000000102200190000011540000613d000000000101043b00000e7002000041000000000020043900000e4f01100197000100000001001d000000040010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e71011001c70000800202000039379937940000040f0000000102200190000011540000613d000000000101043b000000000101004b000011540000613d000000400900043d00000064019000390000008002000039000000000021043500000044019000390000000202000029000000000021043500000003010000290000ffff0110018f0000002402900039000000000012043500000e7201000041000000000019043500000004010000290000ffff0110018f000000040290003900000000001204350000008401900039000000060800002900000000008104350000001f0280018f000000a401900039000000050300002900000002033003670000000504800272000011080000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000011000000413d000000000502004b000011170000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c0000111f0000c13d00000001040000310000113b0000013d0000001f04800039000000200300008a000000000534016f00000de80300004100000de80490009c000000000403001900000000040940190000004004400210000000a40650003900000de80560009c000000000503001900000000050640190000006005500210000000000554019f00000de80410009c0000000001038019000000c001100210000000000151019f000600000009001d3799378f0000040f00000006090000290000000003010019000000600330027000010de80030019d00000de804300197000300000001035500000001022001900000116d0000613d0000001f01400039000000200200008a000000000221016f0000000001920019000000000221004b0000000002000019000000010200403900000e550310009c000011670000213d0000000102200190000011670000c13d000000400010043f00000e4e010000410000000102000031000000000302004b0000000003000019000000000301401900000e4e02200197000000000402004b000000000100a01900000e4e0220009c000000000103c019000000000101004b000011540000c13d000000000001042d00000000010000190000379b00010430000000400200043d000600000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000604000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d0000001f0340018f00000005044002720000117a0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000011720000413d000000000503004b000011890000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b000104300002000000000002000200000001001d000000000100041a0000000002000411000000000112013f00000e4f01100198000011f80000c13d00000e6501000041000000000010043900000000010004120000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000000102200190000011f60000613d000000000101043b00000e7002000041000000000020043900000e4f01100197000100000001001d000000040010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e71011001c70000800202000039379937940000040f0000000102200190000011f60000613d000000000101043b000000000101004b000011f60000613d000000400500043d00000e7301000041000000000015043500000002010000290000ffff0110018f0000000402500039000000000012043500000000010004140000000102000029000000040320008c000011c90000c13d0000000104000031000011dd0000013d00000de80400004100000de80310009c000000000104801900000de80350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000e57011001c7000200000005001d3799378f0000040f00000002050000290000000003010019000000600330027000010de80030019d00000de804300197000300000001035500000001022001900000120f0000613d0000001f01400039000000200200008a000000000221016f0000000001520019000000000221004b0000000002000019000000010200403900000e550310009c000012090000213d0000000102200190000012090000c13d000000400010043f00000e4e010000410000000102000031000000000302004b0000000003000019000000000301401900000e4e02200197000000000402004b000000000100a01900000e4e0220009c000000000103c019000000000101004b000011f60000c13d000000000001042d00000000010000190000379b00010430000000400200043d000200000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000204000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d0000001f0340018f00000005044002720000121c0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000012140000413d000000000503004b0000122b0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b000104300002000000000002000200000001001d000000000100041a0000000002000411000000000112013f00000e4f011001980000129a0000c13d00000e6501000041000000000010043900000000010004120000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000000102200190000012980000613d000000000101043b00000e7002000041000000000020043900000e4f01100197000100000001001d000000040010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e71011001c70000800202000039379937940000040f0000000102200190000012980000613d000000000101043b000000000101004b000012980000613d000000400500043d00000e7401000041000000000015043500000002010000290000ffff0110018f0000000402500039000000000012043500000000010004140000000102000029000000040320008c0000126b0000c13d00000001040000310000127f0000013d00000de80400004100000de80310009c000000000104801900000de80350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000e57011001c7000200000005001d3799378f0000040f00000002050000290000000003010019000000600330027000010de80030019d00000de80430019700030000000103550000000102200190000012b10000613d0000001f01400039000000200200008a000000000221016f0000000001520019000000000221004b0000000002000019000000010200403900000e550310009c000012ab0000213d0000000102200190000012ab0000c13d000000400010043f00000e4e010000410000000102000031000000000302004b0000000003000019000000000301401900000e4e02200197000000000402004b000000000100a01900000e4e0220009c000000000103c019000000000101004b000012980000c13d000000000001042d00000000010000190000379b00010430000000400200043d000200000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000204000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d0000001f0340018f0000000504400272000012be0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000012b60000413d000000000503004b000012cd0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b000104300004000000000002000400000003001d000300000002001d000200000001001d000000000100041a0000000002000411000000000112013f00000e4f011001980000136c0000c13d00000e6501000041000000000010043900000000010004120000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f00000001022001900000136a0000613d000000000101043b00000e7002000041000000000020043900000e4f01100197000100000001001d000000040010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e71011001c70000800202000039379937940000040f00000001022001900000136a0000613d000000000101043b000000000101004b0000136a0000613d000000400900043d00000024019000390000004002000039000000000021043500000e7501000041000000000019043500000002010000290000ffff0110018f000000040290003900000000001204350000004401900039000000040800002900000000008104350000001f0280018f00000064019000390000000303000029000000020330036700000005048002720000131e0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000013160000413d000000000502004b0000132d0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c000013350000c13d0000000104000031000013510000013d0000001f04800039000000200300008a000000000534016f00000de80300004100000de80490009c000000000403001900000000040940190000004004400210000000640650003900000de80560009c000000000503001900000000050640190000006005500210000000000554019f00000de80410009c0000000001038019000000c001100210000000000151019f000400000009001d3799378f0000040f00000004090000290000000003010019000000600330027000010de80030019d00000de80430019700030000000103550000000102200190000013830000613d0000001f01400039000000200200008a000000000221016f0000000001920019000000000221004b0000000002000019000000010200403900000e550310009c0000137d0000213d00000001022001900000137d0000c13d000000400010043f00000e4e010000410000000102000031000000000302004b0000000003000019000000000301401900000e4e02200197000000000402004b000000000100a01900000e4e0220009c000000000103c019000000000101004b0000136a0000c13d000000000001042d00000000010000190000379b00010430000000400200043d000400000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000404000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d0000001f0340018f0000000504400272000013900000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000013880000413d000000000503004b0000139f0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b000104300005000000000002000500000003001d000400000002001d000000000200041a0000000003000411000000000223013f00000e4f022001980000146d0000c13d0000ffff0110018f000300000001001d00000000001004350000000101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000146b0000613d000000000401043b000000050900002900000e640190009c0000147e0000813d000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000000405000029000014840000c13d000000200130008c000200000004001d000013f20000413d000100000003001d000000000040043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000146b0000613d00000005090000290000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000004050000290000000204000029000013f20000813d000000000002041b0000000102200039000000000312004b000013ee0000413d000000200190008c0000141f0000413d000000000040043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000146b0000613d000000200200008a00000005090000290000000003290170000000000101043b000000000200001900000004050000290000140f0000613d000000000200001900000000045200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b000014070000413d000000000393004b0000141b0000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000025200190000000202200367000000000202043b000000000232016f000000000021041b000000010190021000000001011001bf00000002040000290000142b0000013d000000000109004b00000000010000190000142b0000613d0000000301900210000000010200008a000000000112022f000000000121013f0000000202500367000000000202043b000000000112016f0000000102900210000000000121019f000000000014041b000000400100043d00000020021000390000004003000039000000000032043500000003020000290000000000210435000000400210003900000000009204350000001f0390018f000000600210003900000002045003670000000505900272000014420000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000143a0000413d000000000603004b000014510000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000007f02900039000000200300008a000000000232016f00000de80300004100000de80410009c0000000001038019000000400110021000000de80420009c00000000020380190000006002200210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000800d02000039000000010300003900000e76040000413799378f0000040f00000001012001900000146b0000613d000000000001042d00000000010000190000379b00010430000000400200043d000500000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b00010430000b000000000002000000000500041a0000000004000411000000000454013f00000e4f04400198000015940000c13d0000001f0830018f000600000002001d0000000202200367000000400a00043d000000200ba000390000000509300272000014a00000613d0000000006000019000000050460021000000000054b0019000000000442034f000000000404043b00000000004504350000000106600039000000000496004b000014980000413d0000000007000410000000000408004b000014b00000613d0000000504900210000000000242034f00000000044b00190000000305800210000000000604043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f000000000024043500000000023b001900000060047002100000000000420435000000140230003900000000002a04350000005302300039000000200400008a000500000004001d000000000242016f00000000022a00190000000004a2004b0000000005000019000000010500403900000e550420009c0000158e0000213d00000001045001900000158e0000c13d00080000000b001d00070000000a001d000900000009001d000a00000008001d000b00000003001d000000400020043f0000ffff0110018f000400000001001d00000000001004350000000101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000158c0000613d000000000601043b0000000701000029000000000b01043300000e5501b0009c0000000b070000290000000a08000029000000090900002900000008050000290000158e0000213d000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000015a50000c13d000000200130008c000300000006001d00020000000b001d000015100000413d000100000003001d000000000060043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000158c0000613d000000020b0000290000001f02b0003900000005022002700000002003b0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000b070000290000000a08000029000000090900002900000008050000290000000306000029000015100000813d000000000002041b0000000102200039000000000312004b0000150c0000413d0000002001b0008c000015410000413d000000000060043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000158c0000613d000000050a000029000000020b0000290000000003ab01700000002002000039000000000101043b00000007060000290000152e0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000015260000413d0000000003b3004b0000000b070000290000000a0800002900000009090000290000153c0000813d0000000303b00210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b0000000101b0021000000001011001bf000000060400002900000003060000290000154e0000013d00000000010b004b00000000010000190000000604000029000000050a0000290000154e0000613d0000000301b00210000000010200008a000000000112022f000000000121013f0000000002050433000000000112016f0000000102b00210000000000121019f000000000016041b000000400100043d000000200210003900000040030000390000000000320435000000040200002900000000002104350000004002100039000000000072043500000060021000390000000203400367000000000409004b000015640000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b0000155c0000413d000000000408004b000015730000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000000272001900000000000204350000007f027000390000000002a2016f00000de80300004100000de80410009c0000000001038019000000400110021000000de80420009c00000000020380190000006002200210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000800d02000039000000010300003900000e77040000413799378f0000040f00000001012001900000158c0000613d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d000b00000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000b04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b00010430000000400210003900000e7803000041000000000032043500000020021000390000001d030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d00030000000000020000ffff0110018f00000000001004350000000101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000016290000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b0000162b0000c13d000000400700043d0000000004570436000000000303004b000015f60000613d000100000004001d000200000005001d000300000007001d000000000010043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f0000000102200190000016290000613d00000020020000390000000205000029000000000305004b0000000307000029000015fa0000613d000000000101043b0000000003000019000000010600002900000000020300190000000003620019000000000401041a000000000043043500000001011000390000002003200039000000000453004b000015ea0000413d0000005f01200039000000200200008a000000000221016f000015fa0000013d000001000100008a000000000112016f000000000014043500000040020000390000000008720019000000000128004b0000000001000019000000010100403900000e550280009c000016310000213d0000000101100190000016310000c13d000000400080043f0000000001070433000000000201004b000016370000613d000000130210008c000016230000a13d000000140210008a000000200100008a000000000312004b000016230000213d000000000302004b0000161f0000613d0000001f0320019000000000040000190000002004006039000000000534019f00000000038500190000000004230019000000000643004b0000161b0000813d000000000575001900000000560504340000000003630436000000000643004b000016170000413d00000000002804350000001f02300039000000000112016f000016200000013d0000000001080436000000400010043f0000000001080019000000000001042d00000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b0001043000000000010000190000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000e6a0100004100000000001804350000000401800039000300000008001d379915ab0000040f0000000304000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b000104300001000000000002000000000200041a0000000003000411000000000223013f00000e4f02200198000016660000c13d00000e4f011001970000000302000039000000000302041a00000e5c03300197000000000313019f000000000032041b000000400200043d000000000012043500000de801000041000000000300041400000de80430009c000000000301801900000de80420009c00000000010240190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000010300003900000e79040000413799378f0000040f0000000101200190000016770000613d000000000001042d000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000000010000190000379b00010430000000400210003900000e7a030000410000000000320435000000200210003900000015030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0003000000000002000000000500041a0000000004000411000000000454013f00000e4f04400198000016ca0000c13d000300000002001d000200000003001d000000000203004b000016db0000613d0000ffff0110018f000100000001001d00000000001004350000000201000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000016c80000613d000000000101043b00000003020000290000ffff0220018f000300000002001d0000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000016c80000613d000000000101043b0000000203000029000000000031041b000000400100043d000000400210003900000000003204350000002002100039000000030300002900000000003204350000000102000029000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e7b011001c70000800d02000039000000010300003900000e7c040000413799378f0000040f0000000101200190000016c80000613d000000000001042d00000000010000190000379b00010430000000400200043d000300000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000304000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000300000002001d00000e6a0100004100000000001204350000000401200039379916790000040f0000000304000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b000104300005000000000002000500000003001d000400000002001d0000ffff0110018f00000000001004350000000101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000017a50000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000704001900000000070560190000001f0470008c00000000040000190000000104002039000000010440018f000000000443004b000017ad0000c13d000000400500043d0000000006750436000000000303004b000017300000613d000100000007001d000200000006001d000300000005001d000000000010043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f0000000102200190000017a50000613d00000020020000390000000107000029000000000307004b00000003050000290000000206000029000017340000613d000000000101043b000000000300001900000000020300190000000003620019000000000401041a000000000043043500000001011000390000002003200039000000000473004b000017240000413d0000005f01200039000000200200008a000000000221016f000017340000013d000001000100008a000000000112016f000000000016043500000040020000390000000001520019000000000221004b0000000002000019000000010200403900000e550310009c000017a70000213d0000000102200190000017a70000c13d000000400010043f00000de80100004100000de80260009c000000000201001900000000020640190000004002200210000000000305043300000de80430009c00000000030180190000006003300210000000000223019f000000000300041400000de80430009c0000000001034019000000c001100210000000000121019f00000e5d011001c70000801002000039379937940000040f0000000102200190000017a50000613d0000000003000031000000000601043b000000050100002900000e550110009c000017a70000213d00000005010000290000003f01100039000000200200008a000000000221016f000000400100043d0000000002210019000000000412004b0000000004000019000000010400403900000e550520009c000017a70000213d0000000104400190000017a70000c13d000300000006001d000000400020043f0000000504000029000000000241043600000004050000290000000004540019000000000334004b000017a50000213d00000005050000290000001f0350018f0000000404000029000000020440036700000005055002720000177a0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000017720000413d000000000603004b000017890000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f000000000035043500000005030000290000000003320019000000000003043500000de80300004100000de80420009c00000000020380190000004002200210000000000101043300000de80410009c00000000010380190000006001100210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000801002000039379937940000040f0000000102200190000017a50000613d000000000101043b0000000302000029000000000112004b00000000010000190000000101006039000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b00010430000000600210003900000e7d030000410000000000320435000000400210003900000e7e030000410000000000320435000000200210003900000026030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000702001900000000020004110000000008000410000000000228013f00000e4f02200198000018360000c13d000000000a00003100000e640230009c0000182e0000813d0000003f02300039000000200800008a000000000982016f000000400200043d0000000009920019000000000b29004b000000000b000019000000010b00403900000e550c90009c0000182e0000213d000000010bb001900000182e0000c13d000000400090043f0000000009320436000000000b730019000000000aab004b000018340000213d0000001f0a30018f0000000207700367000000050b300272000017e80000613d000000000c000019000000050dc00210000000000ed90019000000000dd7034f000000000d0d043b0000000000de0435000000010cc00039000000000dbc004b000017e00000413d000000000c0a004b000017f70000613d000000050bb002100000000007b7034f000000000bb90019000000030aa00210000000000c0b0433000000000cac01cf000000000cac022f000000000707043b000001000aa000890000000007a7022f0000000007a701cf0000000007c7019f00000000007b043500000000033900190000000000030435000000000900003100000e550360009c0000182e0000213d0000003f03600039000000000383016f000000400700043d0000000003370019000000000873004b0000000008000019000000010800403900000e550a30009c0000182e0000213d00000001088001900000182e0000c13d000000400030043f00000000036704360000000008560019000000000898004b000018340000213d0000001f0860018f00000002055003670000000509600272000018190000613d000000000a000019000000050ba00210000000000cb30019000000000bb5034f000000000b0b043b0000000000bc0435000000010aa00039000000000b9a004b000018110000413d000000000a08004b000018280000613d0000000509900210000000000595034f00000000099300190000000308800210000000000a090433000000000a8a01cf000000000a8a022f000000000505043b0000010008800089000000000585022f00000000058501cf0000000005a5019f0000000000590435000000000363001900000000000304350000000003040019000000000407001937991c380000040f000000000001042d00000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000000010000190000379b00010430000000400200043d000100000002001d00000e6a0100004100000000001204350000000401200039379917b30000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000600210003900000e7f030000410000000000320435000000400210003900000e80030000410000000000320435000000200210003900000023030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000e81030000410000000000320435000000400210003900000e82030000410000000000320435000000200210003900000021030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0012000000000002001100000006001d000f00000005001d000c00000004001d001200000003001d001000000002001d000500000001001d0000ffff0110018f000b00000001001d00000000001004350000000401000039000700000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000001a230000613d000000400200043d00000012040000290000001f0740018f00000010030000290000000203300367000000000101043b0000000508400272000018890000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000584004b000018810000413d000000000407004b000018980000613d0000000504800210000000000343034f00000000044200190000000305700210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000d00000007001d00000012050000290000000003520019000000000013043500000de801000041000000000300041400000de80430009c0000000003018019000000200450003900000de80540009c000000000401801900000de80520009c000000000102401900000040011002100000006002400210000600000002001d000000000121019f000000c002300210000000000112019f00000e5d011001c70000801002000039000e00000008001d379937940000040f000000010220019000001a230000613d000000000101043b0000000c0200002900000e5502200197000900000002001d0000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000001a230000613d000000000101043b000000000101041a000a00000001001d000000000101004b00001a2b0000613d0000000003000031000000110100002900000e640110009c00001a250000813d00000011010000290000003f01100039000000200200008a000800000002001d000000000221016f000000400100043d000300000002001d0000000002210019000000000412004b0000000004000019000000010400403900000e550520009c00001a250000213d000000010440019000001a250000c13d000000400020043f000000110400002900000000024104360000000f050000290000000004540019000200000004001d000000000334004b00001a230000213d00000011040000290000001f0740018f0000000f0300002900000002033003670000000508400272000018f00000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000584004b000018e80000413d000000000407004b000018ff0000613d0000000504800210000000000343034f00000000044200190000000305700210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000100000007001d00000011030000290000000003320019000000000003043500000de80300004100000de80420009c00000000020380190000004002200210000000000101043300000de80410009c00000000010380190000006001100210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000801002000039000400000008001d379937940000040f000000010220019000001a230000613d000000000101043b0000000a02000029000000000121004b00001a3c0000c13d0000000b0100002900000000001004350000000701000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000000e0700002900001a230000613d000000400200043d00000010030000290000000203300367000000000101043b000000000407004b000019390000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000019310000413d0000000d05000029000000000405004b000019490000613d0000000504700210000000000343034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f000000000034043500000012030000290000000003320019000000000013043500000de80100004100000de80320009c000000000201801900000040022002100000000603000029000000000232019f000000000300041400000de80430009c0000000001034019000000c001100210000000000121019f00000e5d011001c70000801002000039379937940000040f000000010220019000001a230000613d000000000101043b00000009020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000004080000290000000e07000029000000010220019000001a230000613d000000000101043b000000000001041b0000000003000031000000120100002900000e550110009c00001a250000213d00000012010000290000003f011000390000000802000029000000000121016f000000400200043d0000000001120019000000000421004b0000000004000019000000010400403900000e550510009c00001a250000213d000000010440019000001a250000c13d000000400010043f0000001204000029000000000142043600000010050000290000000004540019000000000334004b00001a230000213d00000010030000290000000203300367000000000407004b000019930000613d000000000400001900000005054002100000000006510019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b0000198b0000413d0000000d05000029000000000405004b000019a30000613d0000000504700210000000000343034f00000000044100190000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000120300002900000000013100190000000000010435000000400400043d00000003010000290000000001140019000000000341004b0000000003000019000000010300403900000e550510009c00001a250000213d000000010330019000001a250000c13d0000000003000031000000400010043f000000110100002900000000011404360000000205000029000000000335004b00001a230000213d0000000f030000290000000203300367000000000508004b000019c40000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b000019bc0000413d0000000106000029000000000506004b000019d40000613d0000000505800210000000000353034f00000000055100190000000306600210000000000705043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f000000000035043500000011030000290000000001310019000000000001043500000005010000290000000c0300002937991c380000040f000000400100043d0000002002100039000000800300003900000000003204350000000b020000290000000000210435000000800210003900000012030000290000000000320435000000a002100039000000100300002900000002033003670000000e07000029000000000407004b000019f20000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000019ea0000413d0000000d05000029000000000405004b00001a020000613d0000000504700210000000000343034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f000000000034043500000012030000290000000002320019000000000002043500000060021000390000000a040000290000000000420435000000400210003900000009040000290000000000420435000000bf023000390000000803000029000000000232016f00000de80300004100000de80410009c0000000001038019000000400110021000000de80420009c00000000020380190000006002200210000000000112019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000800d02000039000000010300003900000e83040000413799378f0000040f000000010120019000001a230000613d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d001200000002001d00000e6a0100004100000000001204350000000401200039379918470000040f0000001204000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001200000002001d00000e6a0100004100000000001204350000000401200039379918540000040f0000001204000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400210003900000e8403000041000000000032043500000020021000390000001f030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000d00000000000200010000000a001d000000000a00041000000e4f0ba00197000000000a00041100000e4f0aa00197000000000aba004b00001b830000c13d000000000a0b004b00001b940000613d000800000001001d000200000002001d000d00000007001d000300000005001d000400000004001d000500000003001d000600000008001d000700000009001d00000e4f01600198000c00000001001d00001ba50000613d000a0000000b001d0000000000b004350000000901000039000b00000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000001b810000613d0000000b02000029000000000101043b000000000301041a0000000d01000029000900000003001d000000000113004b00001bb60000413d0000000a010000290000000000100435000000200020043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000001b810000613d0000000d0200002900000009030000290000000002230049000000000101043b000000000021041b0000000c0100002900000000001004350000000b01000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000001b810000613d000000010200008a0000000d04000029000000000324013f000000000101043b000000000201041a000000000332004b00001bc70000213d0000000002420019000000000021041b000000400100043d000000000041043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e85040000410000000a050000290000000c060000293799378f0000040f000000010120019000001b810000613d000000400100043d0000000d02000029000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c700000008020000290000ffff0520018f0000800d02000039000000030300003900000e8604000041000b00000005001d0000000c060000293799378f0000040f000000010120019000001b810000613d00000e700100004100000000001004390000000c01000029000000040010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e71011001c70000800202000039379937940000040f000000010220019000001b810000613d000000000101043b000000000101004b00001b810000613d000000400a00043d0000002401a00039000000c002000039000000000021043500000e870100004100000000001a0435000000c401a00039000000050900002900000000009104350000000401a000390000000b0200002900000000002104350000001f0390018f000000e402a0003900000002040000290000000204400367000000050590027200001b020000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001afa0000413d000000000603004b00000007080000290000000d0700002900001b130000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000392001900000000000304350000008403a0003900000000007304350000006403a0003900000003040000290000000000430435000000040300002900000e55033001970000004404a0003900000000003404350000001f03900039000000200900008a000000000393016f00000000033200190000000001130049000000a402a0003900000000001204350000001f0280018f000000000183043600000006030000290000000203300367000000050480027200001b340000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00001b2c0000413d000000000502004b00001b430000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000000281001900000000000204350000000c02000029000000040320008c00001b4a0000c13d000000010400003100001b690000013d0000001f03800039000000000393016f0000000003a30049000000000113001900000de80500004100000de803a0009c000000000305001900000000030a4019000000400330021000000de80410009c00000000010580190000006001100210000000000131019f000000010400002900000de80340009c00000000030500190000000003044019000000c003300210000000000131019f000d0000000a001d000c00000009001d3799378f0000040f0000000c090000290000000d0a0000290000000003010019000000600330027000010de80030019d00000de8043001970003000000010355000000010220019000001bd30000613d0000001f01400039000000000291016f0000000001a20019000000000221004b0000000002000019000000010200403900000e550310009c00001bcd0000213d000000010220019000001bcd0000c13d000000400010043f00000e4e010000410000000102000031000000000302004b0000000003000019000000000301401900000e4e02200197000000000402004b000000000100a01900000e4e0220009c000000000103c019000000000101004b00001b810000c13d000000000001042d00000000010000190000379b00010430000000400200043d000d00000002001d00000e6a010000410000000000120435000000040120003937991a4d0000040f0000000d04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000d00000002001d00000e6a0100004100000000001204350000000401200039379934030000040f0000000d04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000d00000002001d00000e6a0100004100000000001204350000000401200039379934100000040f0000000d04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000d00000002001d00000e6a01000041000000000012043500000004012000393799341d0000040f0000000d04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d0000001f0340018f000000050440027200001be00000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001bd80000413d000000000503004b00001bef0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b000104300001000000000002000000000200041a0000000003000411000000000223013f00000e4f0220019800001c1b0000c13d0000000502000039000000000302041a000001000400008a000000000343016f000000000101004b0000000001000019000000010100c039000000000313019f000000000032041b000000400200043d000000000012043500000de801000041000000000300041400000de80430009c000000000301801900000de80420009c00000000010240190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000010300003900000e88040000413799378f0000040f000000010120019000001c2c0000613d000000000001042d000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000000010000190000379b00010430000000400210003900000e8903000041000000000032043500000020021000390000001c030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d001000000000000200000000060200190000000085040434000000000205004b000020ce0000613d00000001024000390000000002020433000000ff0220019000001c710000613d000000010220008c000020e50000c13d000000200250008c000020f60000a13d000000280250008c000020bd0000a13d000000480250008c000021070000a13d000000510250008c000020bd0000413d0000002d02400039000000000b0204330000002902400039000000000d0204330000004902400039000000000a020433000000400900043d00000051074000390000000002070433000400000002001d000000510c50008c001000000006001d000c00000004001d000700000008001d000900000009001d00080000000a001d000a0000000b001d000d0000000d001d000e00000003001d00001d6c0000613d0000001f02c0019000000000050000190000002005006039000000000525019f0000000002590019000000000ec200190000000006e2004b00001c6c0000813d0000000006750019000000006506043400000000025204360000000005e2004b00001c680000413d0000000000c904350000001f03200039000000200200008a000000000223016f00001d6d0000013d000d00000001001d000000290150008c000021290000c13d00000029014000390000000001010433000f00000001001d0000002d014000390000000001010433001000000001001d00000e65010000410000000000100439000000000100041200000004001004430000004001000039000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000001004000029000000600340027000000e920440009c0000dead03004039001000000003001d0000000102200190000020b50000613d000000000101043b0000000f0200002900000e550220019800001c970000613d000000010300008a00000000432300d9000000000313004b000020b70000413d0000000e03000039000000000303041a000000ff03300190000021180000c13d00000000142100a9000000010100008a000000000314013f0000000b01000039000000000201041a000e00000003001d000000000332004b000020b70000213d000f00000004001d0000000002420019000000000021041b000000100100002900000000001004350000000901000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000201041a0000000e03000029000000000332004b0000000f03000029000020b70000213d0000000002320019000000000021041b000000400100043d000000000031043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e8504000041000000000500001900000010060000293799378f0000040f0000000101200190000020b50000613d000000100100002900000000001004350000001501000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d0000000d020000290000ffff0520018f000000000101043b000000000101041a000000ff0110019000001d570000c13d000d00000005001d00000000005004350000001401000039000b00000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101041a000c00000001001d00000e8a01000041000000000010043900000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e8b011001c70000800b02000039379937940000040f0000000102200190000020b50000613d0000000c0200002900000e8c3220012a000000000101043b000a00000001001d00000e8c3110012a000000000121004b0000000f01000029000c00000001001d0000000d0100002900001d220000213d00000000001004350000001301000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101041a0000000e02000029000000000221004b0000000f02000029000020b70000213d0000000001210019000c00000001001d0000000d0100002900000000001004350000001201000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101041a0000000c02000029000000000212004b0000214b0000213d0000000d0100002900000000001004350000001301000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000c02000029000000000021041b0000000d0100002900000000001004350000000b01000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000a02000029000000000021041b0000000d05000029000000400100043d0000000f02000029000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e860400004100000010060000293799378f0000040f0000000101200190000020b40000c13d000020b50000013d0000000002090436000000400020043f0000ffff0110018f000f00000001001d00000000001004350000000601000039000500000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000400200043d000000000301043b00000010080000290000000001080433000000000401004b000000000421001900001d900000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b00001d860000413d000000000515004b00001d900000a13d0000000000040435000000000034043500000de80300004100000de80420009c00000000020380190000004002200210000000200110003900000de80410009c00000000010380190000006001100210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000e0200002900000e5502200197000e00000002001d0000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101041a000b00000001001d00000e65010000410000000000100439000000000100041200000004001004430000004001000039000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000d0200002900000e550220019800001dcf0000613d000000010300008a00000000432300d9000000000313004b000020b70000413d0000000b03000029000000ff03300190000600000003001d00000000122100a9000d00000002001d00001edd0000c13d000000000100041000000e4f051001970000000e01000039000000000101041a000000ff011001900000000d04000029000021180000c13d000000000105004b0000213a0000613d000000010100008a000000000314013f0000000b01000039000000000201041a000300000003001d000000000332004b000020b70000213d0000000002420019000000000021041b00000000005004350000000901000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039000b00000005001d379937940000040f0000000102200190000020b50000613d000000000101043b000000000201041a0000000303000029000000000332004b0000000d030000290000000b06000029000020b70000213d0000000002320019000000000021041b000000400100043d000000000031043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e850400004100000000050000193799378f0000040f0000000101200190000020b50000613d0000000b0100002900000000001004350000001501000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101041a000000ff0110019000001e950000c13d0000000f0100002900000000001004350000001401000039000200000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101041a000b00000001001d00000e8a01000041000000000010043900000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e8b011001c70000800b02000039379937940000040f0000000102200190000020b50000613d0000000b0200002900000e8c3220012a000000000101043b000100000001001d00000e8c3110012a000000000121004b0000000d01000029000b00000001001d00001e600000213d0000000f0100002900000000001004350000001301000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101041a0000000302000029000000000221004b0000000d02000029000020b70000213d0000000001210019000b00000001001d0000000f0100002900000000001004350000001201000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101041a0000000b02000029000000000212004b000021590000213d0000000f0100002900000000001004350000001301000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000b02000029000000000021041b0000000f0100002900000000001004350000000201000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000102000029000000000021041b0000000f0100002900000000001004350000000501000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000400200043d000000000301043b00000010080000290000000001080433000000000401004b000000000421001900001eb50000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b00001eab0000413d000000000515004b00001eb50000a13d0000000000040435000000000034043500000de80300004100000de80420009c00000000020380190000004002200210000000200110003900000de80410009c00000000010380190000006001100210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000e020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b0000000a01000029000000600210027000000e70010000410000000000100439000b00000002001d000000040020044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e71011001c70000800202000039379937940000040f0000000102200190000020b50000613d000000000101043b000000000101004b00001ef90000613d0000000601000029000000000101004b00001f0d0000613d0000000005000414000000100c000029000000090d000029000000080e0000290000000d0f00002900001f130000013d000000400100043d0000000b02000029000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000010300003900000e8f040000413799378f0000040f0000000101200190000020b40000c13d000020b50000013d000000040100002900000e5505100197000000100c000029000000090d000029000000080e0000290000000d0f0000290000000001000414000000400300043d000000440230003900000100040000390000000000420435000000200430003900000e8d02000041000000000024043500000024063000390000000f02000029000000000026043500000000070c043300000124023000390000000000720435000000000200041000000e4f022001970000014408300039000000000907004b00001f320000613d0000000009000019000000000a8900190000002009900039000000000bc90019000000000b0b04330000000000ba0435000000000a79004b00001f270000413d000000000979004b00001f320000a13d00000000098700190000000000090435000000c4093000390000000000f90435000000a4093000390000000b0a0000290000000000a9043500000084093000390000000000e9043500000064093000390000000e0a0000290000000000a904350000001f07700039000000200900008a000000000797016f00000000088700190000000006680049000000e407300039000000000067043500000000070d04330000000006780436000000000807004b00001f550000613d000000000b090019000000000800001900000000096800190000002008800039000000000ad80019000000000a0a04330000000000a90435000000000978004b00001f490000413d000000000878004b00000000090b001900001f550000a13d00000000086700190000000000080435000001040830003900000000005804350000001f05700039000000000595016f00000000056500190000000006450049000000000063043500000000053500490000001f05500039000000000595016f0000000007350019000000000557004b0000000005000019000000010500403900000e550670009c000020df0000213d0000000105500190000020df0000c13d000000400070043f00000e6c0570009c000020df0000213d000000c005700039000000400050043f0000009605000039000d00000007001d000000000a570436000000000500003100000002055003670000000006000019000000050760021000000000087a0019000000000775034f000000000707043b00000000007804350000000106600039000000050760008c00001f720000413d000000040520008c000a00000009001d00001f800000c13d0000000107000039000000010100003100001f950000013d00000de80500004100000de80640009c00000000040580190000004004400210000000000303043300000de80630009c00000000030580190000006003300210000000000343019f00000de80410009c0000000001058019000000c001100210000000000113019f000b0000000a001d3799378f0000040f0000000b0a000029000000010720018f0003000000010355000000600110027000010de80010019d00000de801100197000000960210008c000000960300003900000000030140190000000d0100002900000000003104350000000101000031000000000113004b000020b50000213d00000003020003670000001f0130018f000000050330027200001faa0000613d0000000004000019000000050540021000000000065a0019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b00001fa20000413d000b00000007001d000000000401004b0000000c05000029000000070600002900001fbc0000613d0000000503300210000000000232034f00000000033a00190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f000000000013043500000de80100004100000de80260009c000000000201001900000000020640190000004002200210000000000305043300000de80430009c00000000030180190000006003300210000000000223019f000000000300041400000de80430009c0000000001034019000000c001100210000000000121019f00000e5d011001c70000801002000039379937940000040f0000000b03000029000000000303004b000020070000613d0000000102200190000020b50000613d000000000201043b000000400100043d000000600300003900000000043104360000001009000029000000000309043300000060051000390000000000350435000000000503004b00001fea0000613d0000008005100039000000000600001900000000075600190000002006600039000000000896001900000000080804330000000000870435000000000736004b00001fdf0000413d000000000636004b00001fea0000a13d00000000055300190000000000050435000000400510003900000000002504350000000e0200002900000000002404350000009f023000390000000a03000029000000000232016f00000de80300004100000de80410009c0000000001038019000000400110021000000de80420009c00000000020380190000006002200210000000000112019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000800d02000039000000020300003900000e8e040000410000000f050000293799378f0000040f0000000101200190000020b40000c13d000020b50000013d0000000c030000290000000102200190000020b50000613d000000000101043b000b00000001001d0000000f0100002900000000001004350000000401000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000400200043d000000000301043b00000010080000290000000001080433000000000401004b00000000042100190000202c0000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b000020220000413d000000000515004b0000202c0000a13d0000000000040435000000000034043500000de80300004100000de80420009c00000000020380190000004002200210000000200110003900000de80410009c00000000010380190000006001100210000000000121019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000e020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000020b50000613d000000000101043b0000000b02000029000000000021041b000000400100043d0000002002100039000000a00300003900000000003204350000000f02000029000000000021043500000010080000290000000002080433000000a0031000390000000000230435000000c003100039000000000402004b0000000c070000290000000a090000290000206c0000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b000020610000413d000000000424004b0000206c0000a13d0000000004320019000000000004043500000040041000390000000e0500002900000000005404350000001f02200039000000000292016f000000000232001900000000031200490000006004100039000000000034043500000000030704330000000002320436000000000403004b000020850000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b0000207a0000413d000000000434004b000020850000a13d000000000423001900000000000404350000001f03300039000000000393016f00000000022300190000000003120049000000800410003900000000003404350000000d0700002900000000030704330000000002320436000000000403004b0000209c0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000020910000413d000000000434004b0000209c0000a13d000000000423001900000000000404350000001f03300039000000000393016f0000000002120049000000000232001900000de80300004100000de80420009c0000000002038019000000600220021000000de80410009c00000000010380190000004001100210000000000112019f000000000200041400000de80420009c0000000002038019000000c002200210000000000112019f00000e5d011001c70000800d02000039000000010300003900000e6d040000413799378f0000040f0000000101200190000020b50000613d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b00010430000000400200043d001000000002001d00000e6a010000410000000000120435000000040120003937992f2c0000040f0000001004000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001000000002001d00000e6a010000410000000000120435000000040120003937992f220000040f0000001004000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400200043d001000000002001d00000e6a010000410000000000120435000000040120003937991c2e0000040f0000001004000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001000000002001d00000e6a010000410000000000120435000000040120003937992f180000040f0000001004000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001000000002001d00000e6a010000410000000000120435000000040120003937992f360000040f0000001004000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001000000002001d00000e6a0100004100000000001204350000000401200039379936050000040f0000001004000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001000000002001d00000e6a0100004100000000001204350000000401200039379921670000040f0000001004000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001000000002001d00000e6a0100004100000000001204350000000401200039379936290000040f0000001004000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d00000024032000390000000c04000029000000000043043500000e900300004100000000003204350000000403200039000000000013043500000de80100004100000de80320009c0000000001024019000000400110021000000e91011001c70000379b00010430000000400200043d00000024032000390000000b04000029000000000043043500000e900300004100000000003204350000000403200039000000000013043500000de80100004100000de80320009c0000000001024019000000400110021000000e91011001c70000379b00010430000000400210003900000e93030000410000000000320435000000200210003900000018030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000600210003900000e94030000410000000000320435000000400210003900000e9503000041000000000032043500000020021000390000002d030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000f000000000002000e00000006001d000500000005001d000f00000004001d000900000003001d000a00000001001d000600000002001d0000ffff0120018f000d00000001001d00000000001004350000000701000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000024a60000613d000000400200043d00000e580320009c000024a80000813d000000000101043b0000004003200039000000400030043f000000000301041a0000ffff0330018f0000000003320436000000000101041a00000e96011001980000000001000019000000010100c0390000000000130435000021ad0000613d00000000010204330000ffff0110018f0000000f04000029000000000204004b000021b80000613d000000010200008a00000000324200d9000000000212004b000021b80000813d000024b40000013d0000000801000039000000000101041a0000ffff011001900000228b0000613d0000000f04000029000000000204004b000021b80000613d000000010200008a00000000324200d9000000000212004b000024b40000413d00000000214100a9000027102310011a000000000243004b000024b40000213d0000000004340049000f00000004001d000027100110008c0000228b0000413d000000000100041100000e4f01100197000700000001001d0000000801000039000000000101041a000000100110027000000e4f01100197000800000001001d0000000a0100002900000e4f02100197000000000100041000000e4f01100197000000000112004b000c00000003001d000b00000002001d000022330000613d0000000701000029000000000112004b000022330000613d00000000002004350000000a01000039000400000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000024a60000613d000000000101043b00000007020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000c030000290000000102200190000024a60000613d000000000101043b000000000401041a000000010100008a000000000114004b0000000b02000029000022330000613d000000000134004b0000258d0000413d000000000102004b0000259e0000613d000300000004001d0000000701000029000000000101004b000025af0000613d00000000002004350000000401000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000024a60000613d000000000101043b00000007020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000c030000290000000102200190000024a60000613d00000003020000290000000002320049000000000101043b000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e97040000410000000b0500002900000007060000293799378f0000040f0000000101200190000022350000c13d000024a60000013d000000000102004b0000257c0000613d0000000801000029000000000101004b000025490000613d0000000b0100002900000000001004350000000901000039000700000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000000c02000029000024a60000613d0000000703000029000000000101043b000000000101041a000400000001001d000000000121004b0000255a0000413d0000000b010000290000000000100435000000200030043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000000c02000029000024a60000613d00000004030000290000000002230049000000000101043b000000000021041b000000080100002900000000001004350000000701000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000c040000290000000102200190000024a60000613d000000010200008a000000000324013f000000000101043b000000000201041a000000000332004b000024b40000213d0000000002420019000000000021041b000000400100043d000000000041043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e85040000410000000b0500002900000008060000293799378f0000040f0000000101200190000024a60000613d00000002010003670000000e02000029000000000221034f000000000202043b000400000002001d00000e4f0220009c000024a60000213d0000000e020000290000002002200039000000000221034f000000000202043b000200000002001d00000e4f0220009c000024a60000213d0000000e040000290000004002400039000000000321034f000000000200003100000000044200490000001f0440008a000000000303043b00000e4e05000041000000000643004b0000000006000019000000000605801900000e4e0440019700000e4e07300197000000000847004b0000000005008019000000000447013f00000e4e0440009c00000000040600190000000004056019000000000404004b000024a60000c13d0000000e040000290000000003430019000000000131034f000000000101043b00000e550410009c000024a60000213d0000000005120049000000200430003900000e4e03000041000000000654004b0000000006000019000000000603201900000e4e0550019700000e4e07400197000000000857004b0000000003008019000000000557013f00000e4e0550009c000000000306c019000000000303004b000024a60000c13d0000003f03100039000000200500008a000e00000005001d000000000353016f000000400500043d0000000003350019000c00000005001d000000000553004b0000000005000019000000010500403900000e550630009c000024a80000213d0000000105500190000024a80000c13d000000400030043f0000000c0300002900000000031304360000000005410019000000000225004b000024a60000213d0000001f0210018f00000002044003670000000505100272000022e40000613d000000000600001900000005076002100000000008730019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000022dc0000413d000000000602004b000022f30000613d0000000505500210000000000454034f00000000055300190000000302200210000000000605043300000000062601cf000000000626022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000262019f0000000000250435000000000113001900000000000104350000000c0300002900000000010304330000000502000039000000000202041a000000ff02200190000023330000613d000000210110008c000025010000a13d00000022013000390000000001010433000b00000001001d0000000d0100002900000000001004350000000201000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000024a60000613d000000000101043b0000000000000435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000024a60000613d000000000101043b000000000101041a000000000201004b000025120000613d0000000b02000029000000000112004b000023350000813d000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379925ee0000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000000101004b0000256b0000c13d00000e650100004100000000001004390000000001000412000800000001001d00000004001004430000004001000039000700000001001d000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000000102200190000024a60000613d000000000101043b000000000201004b000024ae0000613d0000000f02000029000f00000002001d00000000311200d9000300000003001d00000000033200490000000a010000290000000602000029000b00000003001d3799344e0000040f00000003010000290000000f02000029000000000112004b000024ba0000613d00000e65010000410000000000100439000000080100002900000004001004430000000701000029000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000000102200190000024a60000613d000000000101043b000000000201004b000024ae0000613d0000000b0200002900000000211200d9000000400300043d00000e640210009c000600000003001d000024cb0000813d000000c00110021000000041023000390000000000120435000000200130003900000000000104350000002101300039000000090200002900000000002104350000002901000039000000000013043500000e980130009c000024a80000213d0000006001300039000000400010043f0000000001000416000300000001001d0000000d0100002900000000001004350000000101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000024a60000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b000024da0000c13d000000400500043d0000000004650436000000000303004b000f00000005001d000023c10000613d000100000004001d000700000006001d000000000010043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f0000000102200190000024a60000613d00000020030000390000000706000029000000000206004b0000000f05000029000023c50000613d000000000101043b0000000003000019000000010700002900000000020300190000000003720019000000000401041a000000000043043500000001011000390000002003200039000000000463004b000023b50000413d0000005f012000390000000e02000029000000000321016f000023c50000013d000001000100008a000000000112016f000000000014043500000007030000290000000004530019000000000134004b0000000001000019000000010100403900000e550240009c000024a80000213d0000000101100190000024a80000c13d000000400040043f0000000001050433000000000101004b000024e00000613d00000e6501000041000000000010043900000008010000290000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000000102200190000024a60000613d000000000101043b00000e7002000041000000000020043900000e4f01100197000800000001001d000000040010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e71011001c70000800202000039379937940000040f0000000102200190000024a60000613d000000000101043b000000000101004b000024a60000613d000000400800043d0000002401800039000000c002000039000000000021043500000e9901000041000000000018043500000004018000390000000d0200002900000000002104350000000f090000290000000002090433000000c4038000390000000000230435000000e403800039000000000402004b0000000607000029000024100000613d000000000400001900000000053400190000002004400039000000000694001900000000060604330000000000650435000000000524004b000024050000413d000000000424004b000024100000a13d000000000432001900000000000404350000001f022000390000000e04000029000000000242016f000000000232001900000000031200490000004404800039000000000034043500000000030704330000000002320436000000000403004b000024270000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b0000241c0000413d000000000434004b000024270000a13d00000000042300190000000000040435000000020400002900000e4f0440019700000084058000390000000000450435000000040400002900000e4f04400197000000640580003900000000004504350000001f033000390000000e04000029000000000343016f00000000032300190000000001130049000000a40280003900000000001204350000000c0600002900000000020604330000000001230436000000000302004b000024470000613d000000000300001900000000041300190000002003300039000000000563001900000000050504330000000000540435000000000423004b0000243c0000413d000000000323004b000024470000a13d0000000003120019000000000003043500000000030004140000000805000029000000040450008c0000244d0000c13d0000000104000031000024730000013d0000001f022000390000000e04000029000000000242016f0000000001810049000000000121001900000de80200004100000de80410009c0000000001028019000000600110021000000de80480009c000f00000008001d000000000402001900000000040840190000004004400210000000000141019f00000de80430009c0000000002034019000000c002200210000000000112019f0000000303000029000000000203004b000024690000613d00000e5d011001c70000800902000039000000000405001900000000050000193799378f0000040f0000246b0000013d00000000020500193799378f0000040f00030000000103550000000003010019000000600330027000010de80030019d00000de80430019700000001022001900000000f08000029000025230000613d0000001f014000390000000e02000029000000000221016f0000000001820019000000000221004b0000000002000019000000010200403900000e550310009c000024a80000213d0000000102200190000024a80000c13d000000400010043f00000e4e020000410000000103000031000000000403004b0000000004000019000000000402401900000e4e03300197000000000503004b000000000200a01900000e4e0330009c000000000204c019000000000202004b000024a60000c13d0000000b02000029000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000000a0200002900000e4f062001970000800d02000039000000040300003900000e9a040000410000000d0500002900000009070000293799378f0000040f0000000101200190000024a60000613d00000005010000290000000b02000029000000000112004b000024f00000413d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000001201000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379925c00000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e6a0100004100000000001304350000000401300039379926020000040f0000000604000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b0001043000000e6a0100004100000000001404350000000401400039000f00000004001d379925ca0000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379921710000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379925f80000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379925e40000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d0000001f0340018f0000000504400272000025300000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000025280000413d000000000503004b0000253f0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379934100000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a01000041000000000012043500000004012000393799341d0000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379925d70000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379934030000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379934440000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a01000041000000000012043500000004012000393799342a0000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000f00000002001d00000e6a0100004100000000001204350000000401200039379934370000040f0000000f04000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400210003900000e9b030000410000000000320435000000200210003900000019030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000600210003900000e9c030000410000000000320435000000400210003900000e9d030000410000000000320435000000200210003900000030030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000e9e030000410000000000320435000000400210003900000e9f030000410000000000320435000000200210003900000026030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000400210003900000ea003000041000000000032043500000020021000390000001a030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000400210003900000ea103000041000000000032043500000020021000390000001b030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000400210003900000ea203000041000000000032043500000020021000390000001c030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000400210003900000ea303000041000000000032043500000020021000390000001a030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0011000000000002001100000009001d000b00000008001d001000000007001d000c00000006001d000500000005001d000f00000004001d000a00000003001d000d00000001001d000600000002001d0000ffff0120018f000e00000001001d00000000001004350000000701000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000299e0000613d000000400200043d00000e580320009c000029a00000813d000000000101043b0000004003200039000000400030043f000000000301041a0000ffff0330018f0000000003320436000000000101041a00000e96011001980000000001000019000000010100c03900000000001304350000000001000411000700000001001d000026400000613d00000000010204330000ffff0110018f0000000f04000029000000000204004b0000264b0000613d000000010200008a00000000324200d9000000000212004b0000264b0000813d000029a60000013d0000000801000039000000000101041a0000ffff011001900000271e0000613d0000000f04000029000000000204004b0000264b0000613d000000010200008a00000000324200d9000000000212004b000029a60000413d00000000214100a9000027102310011a000000000243004b000029a60000213d0000000004340049000f00000004001d000027100110008c0000271e0000413d000000070100002900000e4f01100197000300000001001d0000000801000039000000000101041a000000100110027000000e4f01100197000400000001001d0000000d0100002900000e4f02100197000000000100041000000e4f01100197000000000112004b000900000003001d000800000002001d000026c60000613d0000000301000029000000000112004b000026c60000613d00000000002004350000000a01000039000200000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000299e0000613d000000000101043b00000003020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000090300002900000001022001900000299e0000613d000000000101043b000000000401041a000000010100008a000000000114004b0000000802000029000026c60000613d000000000134004b00002a870000413d000000000102004b00002a980000613d000100000004001d0000000301000029000000000101004b00002aa90000613d00000000002004350000000201000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000299e0000613d000000000101043b00000003020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000090300002900000001022001900000299e0000613d00000001020000290000000002320049000000000101043b000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e9704000041000000080500002900000003060000293799378f0000040f0000000101200190000026c80000c13d0000299e0000013d000000000102004b00002a760000613d0000000401000029000000000101004b00002a430000613d000000080100002900000000001004350000000901000039000300000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000009020000290000299e0000613d0000000303000029000000000101043b000000000101041a000200000001001d000000000121004b00002a540000413d00000008010000290000000000100435000000200030043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000000009020000290000299e0000613d00000002030000290000000002230049000000000101043b000000000021041b000000040100002900000000001004350000000301000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000090400002900000001022001900000299e0000613d000000010200008a000000000324013f000000000101043b000000000201041a000000000332004b000029a60000213d0000000002420019000000000021041b000000400100043d000000000041043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e8504000041000000080500002900000004060000293799378f0000040f00000001012001900000299e0000613d00000002010003670000001102000029000000000221034f000000000202043b000300000002001d00000e4f0220009c0000299e0000213d00000011020000290000002002200039000000000221034f000000000202043b000200000002001d00000e4f0220009c0000299e0000213d00000011040000290000004002400039000000000221034f000000000300003100000000044300490000001f0440008a000000000202043b00000e4e05000041000000000642004b0000000006000019000000000605801900000e4e0440019700000e4e07200197000000000847004b0000000005008019000000000447013f00000e4e0440009c00000000040600190000000004056019000000000404004b0000299e0000c13d00000011040000290000000002420019000000000121034f000000000101043b00000e550410009c0000299e0000213d0000000004130049000000200220003900000e4e05000041000000000642004b0000000006000019000000000605201900000e4e0440019700000e4e07200197000000000847004b0000000005008019000000000447013f00000e4e0440009c00000000040600190000000004056019000000000404004b0000299e0000c13d000000100400002900000e550440009c000029a00000213d00000010040000290000003f04400039000000200500008a001100000005001d000000000454016f000000400700043d0000000004470019000000000574004b0000000005000019000000010500403900000e550640009c000029a00000213d0000000105500190000029a00000c13d000000400040043f0000001005000029000400000007001d00000000045704360000000c060000290000000005650019000000000335004b0000299e0000213d00000010060000290000001f0360018f0000000c05000029000000020550036700000005066002720000277f0000613d000000000700001900000005087002100000000009840019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000027770000413d000000000703004b0000278e0000613d0000000506600210000000000565034f00000000066400190000000303300210000000000706043300000000073701cf000000000737022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000373019f00000000003604350000001003000029000000000334001900000000000304350000003f031000390000001104000029000000000343016f000000400600043d0000000003360019000000000463004b0000000004000019000000010400403900000e550530009c000029a00000213d0000000104400190000029a00000c13d0000000004000031000000400030043f000c00000006001d00000000031604360000000005210019000000000445004b0000299e0000213d0000001f0410018f00000002022003670000000505100272000027b10000613d000000000600001900000005076002100000000008730019000000000772034f000000000707043b00000000007804350000000106600039000000000756004b000027a90000413d000000000604004b000027c00000613d0000000505500210000000000252034f00000000055300190000000304400210000000000605043300000000064601cf000000000646022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000262019f0000000000250435000000000113001900000000000104350000000b0100002900000e55041001970000000c0300002900000000010304330000000502000039000000000202041a000000ff02200190000028090000613d001000000004001d000000210110008c000029fb0000a13d00000022013000390000000001010433000900000001001d0000000e0100002900000000001004350000000201000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000299e0000613d000000000101043b00000001020000390000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000299e0000613d000000010200008a0000001003000029000000000223013f000000000101043b000000000101041a000000000221004b000029a60000213d000000000131001a00002a0c0000613d0000000902000029000000000112004b0000280b0000813d000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379925ee0000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000000101004b00002a650000c13d00000e650100004100000000001004390000000001000412000900000001001d00000004001004430000004001000039000800000001001d000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f00000001022001900000299e0000613d000000000101043b000000000201004b000029ac0000613d0000000f02000029000f00000002001d00000000311200d9000100000003001d00000000033200490000000d010000290000000602000029001000000003001d3799344e0000040f00000001010000290000000f02000029000000000112004b000029b20000613d00000e65010000410000000000100439000000090100002900000004001004430000000801000029000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f00000001022001900000299e0000613d000000000101043b000000000201004b000029ac0000613d000000100200002900000000211200d900000e640210009c000029c30000813d000000400700043d000000200270003900000ea4030000410000000000320435000000c001100210000000410270003900000000001204350000000b01000029000000c0011002100000006902700039000000000012043500000021017000390000000a020000290000000000210435000000070100002900000e4f011001970000004902700039000000000012043500000004060000290000000001060433000000000201004b000028670000613d0000007102700039000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b0000285c0000413d000000000313004b000028670000a13d000000000221001900000000000204350000005102100039000000000027043500000090011000390000001102000029000000000221016f0000000001720019000000000221004b0000000002000019000000010200403900000e550310009c000029a00000213d0000000102200190000029a00000c13d000b00000007001d000000400010043f0000000001000416000700000001001d0000000e0100002900000000001004350000000101000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000299e0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b000029d40000c13d000000400500043d0000000004650436000000000303004b000f00000005001d000028b90000613d000600000004001d000800000006001d000000000010043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f00000001022001900000299e0000613d00000020030000390000000806000029000000000206004b0000000f05000029000028bd0000613d000000000101043b0000000003000019000000060700002900000000020300190000000003720019000000000401041a000000000043043500000001011000390000002003200039000000000463004b000028ad0000413d0000005f012000390000001102000029000000000321016f000028bd0000013d000001000100008a000000000112016f000000000014043500000008030000290000000004530019000000000134004b0000000001000019000000010100403900000e550240009c000029a00000213d0000000101100190000029a00000c13d000000400040043f0000000001050433000000000101004b000029da0000613d00000e6501000041000000000010043900000009010000290000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f00000001022001900000299e0000613d000000000101043b00000e7002000041000000000020043900000e4f01100197000900000001001d000000040010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e71011001c70000800202000039379937940000040f00000001022001900000299e0000613d000000000101043b000000000101004b0000299e0000613d000000400800043d0000002401800039000000c002000039000000000021043500000e9901000041000000000018043500000004018000390000000e0200002900000000002104350000000f090000290000000002090433000000c4038000390000000000230435000000e403800039000000000402004b0000000b07000029000029080000613d000000000400001900000000053400190000002004400039000000000694001900000000060604330000000000650435000000000524004b000028fd0000413d000000000424004b000029080000a13d000000000432001900000000000404350000001f022000390000001104000029000000000242016f000000000232001900000000031200490000004404800039000000000034043500000000030704330000000002320436000000000403004b0000291f0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000029140000413d000000000434004b0000291f0000a13d00000000042300190000000000040435000000020400002900000e4f0440019700000084058000390000000000450435000000030400002900000e4f04400197000000640580003900000000004504350000001f033000390000001104000029000000000343016f00000000032300190000000001130049000000a40280003900000000001204350000000c0600002900000000020604330000000001230436000000000302004b0000293f0000613d000000000300001900000000041300190000002003300039000000000563001900000000050504330000000000540435000000000423004b000029340000413d000000000323004b0000293f0000a13d0000000003120019000000000003043500000000030004140000000905000029000000040450008c000029450000c13d00000001040000310000296b0000013d0000001f022000390000001104000029000000000242016f0000000001810049000000000121001900000de80200004100000de80410009c0000000001028019000000600110021000000de80480009c000f00000008001d000000000402001900000000040840190000004004400210000000000141019f00000de80430009c0000000002034019000000c002200210000000000112019f0000000703000029000000000203004b000029610000613d00000e5d011001c70000800902000039000000000405001900000000050000193799378f0000040f000029630000013d00000000020500193799378f0000040f00030000000103550000000003010019000000600330027000010de80030019d00000de80430019700000001022001900000000f0800002900002a1d0000613d0000001f014000390000001102000029000000000221016f0000000001820019000000000221004b0000000002000019000000010200403900000e550310009c000029a00000213d0000000102200190000029a00000c13d000000400010043f00000e4e020000410000000103000031000000000403004b0000000004000019000000000402401900000e4e03300197000000000503004b000000000200a01900000e4e0330009c000000000204c019000000000202004b0000299e0000c13d0000001002000029000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000000d0200002900000e4f062001970000800d02000039000000040300003900000e9a040000410000000e050000290000000a070000293799378f0000040f00000001012001900000299e0000613d00000005010000290000001002000029000000000112004b000029ea0000413d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000001201000039000000040010043f00000e57010000410000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379925c00000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379926020000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b0001043000000e6a0100004100000000001404350000000401400039001100000004001d379925ca0000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379921710000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379925f80000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379925e40000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d0000001f0340018f000000050440027200002a2a0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00002a220000413d000000000503004b00002a390000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379934100000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a01000041000000000012043500000004012000393799341d0000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379925d70000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379934030000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379934440000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a01000041000000000012043500000004012000393799342a0000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d001100000002001d00000e6a0100004100000000001204350000000401200039379934370000040f0000001104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b000104300007000000000002000400000004001d000600000002001d000300000001001d000000000200003100000e640160009c00002bc70000813d0000003f01600039000000200400008a000700000004001d000000000141016f000000400700043d0000000001170019000000000471004b0000000008000019000000010800403900000e550410009c00002bc70000213d000000010480019000002bc70000c13d000500000003001d000000400010043f000200000007001d00000000016704360000000003560019000000000223004b00002bcd0000213d0000001f0260018f0000000203500367000000050460027200002ae20000613d000000000500001900000005075002100000000008710019000000000773034f000000000707043b00000000007804350000000105500039000000000745004b00002ada0000413d000000000502004b00002af10000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001610019000000000001043500000e650100004100000000001004390000000001000412000100000001001d00000004001004430000004001000039000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f000000010220019000002bcd0000613d000000000101043b000000000201004b000000050200002900002bcf0000613d00000000211200d9000000400400043d00000e640210009c000500000004001d00002bd50000813d000000c00110021000000041024000390000000000120435000000200140003900000000000104350000002101400039000000060200002900000000002104350000002901000039000000000014043500000e980140009c00002bc70000213d0000006001400039000000400010043f00000e6501000041000000000010043900000001010000290000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f000000010220019000002bcd0000613d000000000201043b000000400900043d0000004401900039000000a0030000390000000000310435000000000100041000000e4f011001970000002403900039000000000013043500000ea501000041000000000819043600000003010000290000ffff0310018f00000004019000390000000000310435000000050a00002900000000030a0433000000a4049000390000000000340435000000c40490003900000e4f02200197000000000503004b00002b4d0000613d0000000005000019000000000645001900000020055000390000000007a5001900000000070704330000000000760435000000000635004b00002b420000413d000000000535004b00002b4d0000a13d000000000543001900000000000504350000000405000029000000000505004b0000000005000019000000010500c039000000640690003900000000005604350000001f033000390000000705000029000000000353016f0000000004430019000000000114004900000084039000390000000000130435000000020700002900000000030704330000000001340436000000000403004b00002b6b0000613d000000000400001900000000051400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00002b600000413d000000000434004b00002b6b0000a13d000000000413001900000000000404350000000004000414000000040520008c00002b700000c13d000000010300003100002bac0000013d000500000008001d0000001f033000390000000705000029000000000353016f0000000001910049000000000131001900000de80300004100000de80510009c0000000001038019000000600110021000000de80590009c000000000503001900000000050940190000004005500210000000000151019f00000de80540009c0000000003044019000000c003300210000000000113019f000600000009001d379937940000040f00000006090000290000000003010019000000600330027000000de803300197000000400430008c000000400500003900000000050340190000001f0450018f000000050550027200002b980000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b00002b900000413d000000000604004b00002ba70000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000000050800002900002be40000613d0000001f013000390000000702000029000000000221016f0000000001920019000000000221004b0000000002000019000000010200403900000e550310009c00002bc70000213d000000010220019000002bc70000c13d000000400010043f00000e4e010000410000000102000031000000400320008c0000000003000019000000000301401900000e4e02200197000000000402004b000000000100a01900000e4e0220009c000000000103c019000000000101004b00002bcd0000c13d00000000010904330000000002080433000000000001042d00000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000000010000190000379b0001043000000e560100004100000000001004350000001201000039000000040010043f00000e57010000410000379b0001043000000e6a0100004100000000001404350000000401400039379926020000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d0000001f0430018f000000050330027200002bf10000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00002be90000413d000000000504004b00002c000000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b000104300009000000000002000800000007001d000000000e060019000000000f030019000000000d020019000700000001001d000000000200003100000e640150009c00002d6e0000813d0000003f01500039000000200b00008a0000000001b1016f000000400c00043d00000000011c00190000000003c1004b0000000003000019000000010300403900000e550610009c00002d6e0000213d000000010330019000002d6e0000c13d000000400010043f00000000015c04360000000003450019000000000223004b00002d740000213d0000001f0250018f0000000203400367000000050450027200002c310000613d00000000060000190000000507600210000000000a710019000000000773034f000000000707043b00000000007a04350000000106600039000000000746004b00002c290000413d000000000602004b00002c400000613d0000000504400210000000000343034f00000000044100190000000302200210000000000604043300000000062601cf000000000626022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000262019f000000000024043500000000015100190000000000010435000000000200003100000e550190009c00002d6e0000213d0000003f019000390000000001b1016f000000400500043d0000000001150019000000000351004b0000000003000019000000010300403900000e550410009c00002d6e0000213d000000010330019000002d6e0000c13d000000400010043f000200000005001d00000000019504360000000003890019000000000223004b00002d740000213d0000001f0290018f0000000203800367000000050490027200002c630000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00002c5b0000413d00030000000f001d00040000000e001d00050000000d001d00060000000c001d00090000000b001d000000000502004b00002c770000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001910019000000000001043500000e650100004100000000001004390000000001000412000100000001001d00000004001004430000004001000039000000240010044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f00000001022001900000000906000029000000060700002900000005050000290000000408000029000000030300002900002d740000613d000000000101043b000000000201004b00002d760000613d00000000211300d900000e640210009c00002d7c0000813d0000000002000411000000400900043d000000200390003900000ea4040000410000000000430435000000c00110021000000041039000390000000000130435000000c001800210000000690390003900000000001304350000002101900039000000000051043500000e4f01200197000000490290003900000000001204350000000001070433000000000201004b00002cb50000613d0000007102900039000000000300001900000000042300190000002003300039000000000573001900000000050504330000000000540435000000000413004b00002caa0000413d000000000313004b00002cb50000a13d00000000022100190000000000020435000000510210003900000000002904350000009001100039000000000261016f000600000009001d0000000001920019000000000221004b0000000002000019000000010200403900000e550310009c00002d6e0000213d000000010220019000002d6e0000c13d000000400010043f00000e6501000041000000000010043900000001010000290000000400100443000000240000044300000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e66011001c70000800502000039379937940000040f0000000908000029000000010220019000002d740000613d000000000201043b000000400900043d0000004401900039000000a0030000390000000000310435000000000100041000000e4f011001970000002403900039000000000013043500000ea501000041000000000a19043600000007010000290000ffff0310018f00000004019000390000000000310435000000060b00002900000000030b0433000000a4049000390000000000340435000000c40490003900000e4f02200197000000000503004b00002cf60000613d0000000005000019000000000645001900000020055000390000000007b5001900000000070704330000000000760435000000000635004b00002ceb0000413d000000000535004b00002cf60000a13d000000000543001900000000000504350000000805000029000000000505004b0000000005000019000000010500c039000000640690003900000000005604350000001f03300039000000000383016f0000000004430019000000000114004900000084039000390000000000130435000000020700002900000000030704330000000001340436000000000403004b00002d130000613d000000000400001900000000051400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00002d080000413d000000000434004b00002d130000a13d000000000413001900000000000404350000000004000414000000040520008c00002d180000c13d000000010300003100002d540000013d00070000000a001d0000001f03300039000000000383016f0000000001910049000000000131001900000de80300004100000de80510009c0000000001038019000000600110021000000de80590009c000000000503001900000000050940190000004005500210000000000151019f00000de80540009c0000000003044019000000c003300210000000000113019f000800000009001d379937940000040f00000008090000290000000003010019000000600330027000000de803300197000000400430008c000000400500003900000000050340190000001f0450018f000000050550027200002d3f0000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b00002d370000413d000000000604004b00002d4e0000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f000300000001035500000001022001900000000908000029000000070a00002900002d8d0000613d0000001f01300039000000000281016f0000000001920019000000000221004b0000000002000019000000010200403900000e550310009c00002d6e0000213d000000010220019000002d6e0000c13d000000400010043f00000e4e010000410000000102000031000000400320008c0000000003000019000000000301401900000e4e02200197000000000402004b000000000100a01900000e4e0220009c000000000103c019000000000101004b00002d740000c13d000000000109043300000000020a0433000000000001042d00000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000000010000190000379b0001043000000e560100004100000000001004350000001201000039000000040010043f00000e57010000410000379b00010430000000400200043d000900000002001d00000e6a0100004100000000001204350000000401200039379926020000040f0000000904000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d0000001f0430018f000000050330027200002d9a0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00002d920000413d000000000504004b00002da90000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000de801000041000000010300003100000de80430009c000000000301801900000de80420009c000000000102401900000040011002100000006002300210000000000112019f0000379b00010430000000600210003900000ea6030000410000000000320435000000400210003900000ea7030000410000000000320435000000200210003900000025030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000200041a0000000003000411000000000223013f00000e4f0220019800002de30000c13d0000ffff0110018f000027110210008c00002df40000813d0000000802000039000000000302041a00000ea803300197000000000113019f000000000012041b000000000102041a0000ffff0110018f000000400200043d000000000012043500000de801000041000000000300041400000de80430009c000000000301801900000de80420009c00000000010240190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000010300003900000ea9040000413799378f0000040f000000010120019000002e050000613d000000000001042d000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992db30000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000000010000190000379b000104300005000000000002000000000400041a0000000005000411000000000445013f00000e4f0440019800002e5b0000c13d000000400500043d0000ffff0430018f000027110340008c000500000005001d00002e6c0000813d00000e580350009c00002e7b0000813d0000004003500039000000400030043f0000000003450436000000000202004b0000000002000019000000010200c039000400000002001d000200000003001d00000000002304350000ffff0110018f000300000001001d00000000001004350000000701000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039000100000004001d379937940000040f000000010220019000002e590000613d000000050200002900000000020204330000ffff0220018f000000000101043b000000000301041a00000ea803300197000000000223019f000000000021041b0000000202000029000000000202043300000eaa03000041000000000202004b00000000020300190000000002006019000000000301041a00000eab03300197000000000223019f000000000021041b000000400100043d0000004002100039000000010300002900000000003204350000002002100039000000040300002900000000003204350000000302000029000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e7b011001c70000800d02000039000000010300003900000eac040000413799378f0000040f000000010120019000002e590000613d000000000001042d00000000010000190000379b00010430000000400200043d000500000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e6a010000410000000000150435000000040150003937992db30000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b00010430000000400210003900000ead03000041000000000032043500000020021000390000001a030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0001000000000002000000000200041a0000000003000411000000000223013f00000e4f0220019800002ead0000c13d00000e4f0210019800002ebe0000613d000000100110021000000e60011001970000000803000039000000000403041a00000e5f04400197000000000114019f000000000013041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000010300003900000eae040000413799378f0000040f000000010120019000002ecf0000613d000000000001042d000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992e810000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000000010000190000379b000104300001000000000002000100000002001d0000ffff0110018f00000000001004350000000701000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f000000010220019000002f0a0000613d000000400200043d00000e580320009c00002f0c0000813d000000000101043b0000004003200039000000400030043f000000000301041a0000ffff0330018f0000000003320436000000000101041a00000e96011001980000000001000019000000010100c0390000000000130435000000010400002900002efc0000613d00000000010204330000ffff0110018f000000000204004b00002ef90000613d000000010200008a00000000324200d9000000000212004b00002f120000413d00000000214100a9000027102110011a00002f090000013d0000000801000039000000000101041a0000ffff02100190000000000100001900002f090000613d000000000104004b00002f070000613d000000010100008a00000000314100d9000000000121004b00002f120000413d00000000214200a9000027102110011a000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b00010430000000400210003900000eaf030000410000000000320435000000200210003900000015030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000400210003900000eb0030000410000000000320435000000200210003900000013030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000400210003900000eb1030000410000000000320435000000200210003900000014030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000400210003900000eb2030000410000000000320435000000200210003900000015030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000400210003900000eb303000041000000000032043500000020021000390000002003000039000000000032043500000000003104350000006001100039000000000001042d0001000000000002000000000100041a0000000002000411000000000212013f00000e4f0220019800002f650000c13d00000e5c02100197000000000020041b000000400200043d00000de803000041000000000400041400000de80540009c000000000403801900000de80520009c00000000020380190000004002200210000000c003400210000000000223019f00000e4f0510019700000e5d012001c70000800d02000039000000030300003900000e5e0400004100000000060000193799378f0000040f000000010120019000002f760000613d000000000001042d000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000000010000190000379b00010430000000600210003900000eb4030000410000000000320435000000400210003900000eb5030000410000000000320435000000200210003900000026030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000200041a0000000003000411000000000323013f00000e4f0330019800002fa30000c13d00000e4f0610019800002fb40000613d00000e5c01200197000000000161019f000000000010041b000000400100043d00000de803000041000000000400041400000de80540009c000000000403801900000de80510009c00000000010380190000004001100210000000c003400210000000000113019f00000e4f0520019700000e5d011001c70000800d02000039000000030300003900000e5e040000413799378f0000040f000000010120019000002fc50000613d000000000001042d000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f780000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000000010000190000379b0001043000030000000000020000000c02000039000000000102041a000000010310019000000001041002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b0000300a0000c13d000000400500043d0000000004650436000000000303004b00002ffb0000613d000100000004001d000200000006001d000300000005001d000000000020043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f0000000102200190000030160000613d00000020020000390000000206000029000000000306004b000000030500002900002fff0000613d000000000101043b0000000003000019000000010700002900000000020300190000000003720019000000000401041a000000000043043500000001011000390000002003200039000000000463004b00002fef0000413d0000005f01200039000000200200008a000000000221016f00002fff0000013d000001000200008a000000000121016f000000000014043500000040020000390000000001520019000000000221004b0000000002000019000000010200403900000e550310009c000030100000213d0000000102200190000030100000c13d000000400010043f0000000001050019000000000001042d00000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000000010000190000379b0001043000030000000000020000000d02000039000000000102041a000000010310019000000001041002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b0000305b0000c13d000000400500043d0000000004650436000000000303004b0000304c0000613d000100000004001d000200000006001d000300000005001d000000000020043500000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e61011001c70000801002000039379937940000040f0000000102200190000030670000613d00000020020000390000000206000029000000000306004b0000000305000029000030500000613d000000000101043b0000000003000019000000010700002900000000020300190000000003720019000000000401041a000000000043043500000001011000390000002003200039000000000463004b000030400000413d0000005f01200039000000200200008a000000000221016f000030500000013d000001000200008a000000000121016f000000000014043500000040020000390000000001520019000000000221004b0000000002000019000000010200403900000e550310009c000030610000213d0000000102200190000030610000c13d000000400010043f0000000001050019000000000001042d00000e560100004100000000001004350000002201000039000000040010043f00000e57010000410000379b0001043000000e560100004100000000001004350000004101000039000000040010043f00000e57010000410000379b0001043000000000010000190000379b0001043000000e4f0110019700000000001004350000000901000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000307a0000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b000104300005000000000002000000000300041100000e4f03300198000030da0000613d000500000002001d00000e4f01100198000200000001001d000030eb0000613d000300000003001d00000000003004350000000901000039000400000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000030d80000613d0000000402000029000000000101043b000000000301041a0000000501000029000100000003001d000000000113004b000030fc0000413d00000003010000290000000000100435000000200020043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000030d80000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000020100002900000000001004350000000401000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000030d80000613d000000010200008a0000000504000029000000000324013f000000000101043b000000000201041a000000000332004b0000310d0000213d0000000002420019000000000021041b000000400100043d000000000041043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e8504000041000000030500002900000002060000293799378f0000040f0000000101200190000030d80000613d000000000001042d00000000010000190000379b00010430000000400200043d000500000002001d00000e6a0100004100000000001204350000000401200039379934030000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000500000002001d00000e6a0100004100000000001204350000000401200039379934100000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000500000002001d00000e6a01000041000000000012043500000004012000393799341d0000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b000104300001000000000002000100000002001d00000e4f0110019700000000001004350000000a01000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000031350000613d000000000101043b000000010200002900000e4f022001970000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000031350000613d000000000101043b000000000101041a000000000001042d00000000010000190000379b000104300003000000000002000000000300041100000e4f03300198000031750000613d000200000002001d00000e4f01100198000300000001001d000031860000613d000100000003001d00000000003004350000000a01000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000000304000029000031730000613d000000000101043b0000000000400435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000003060000290000000102200190000031730000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e970400004100000001050000293799378f0000040f0000000101200190000031730000613d000000000001042d00000000010000190000379b00010430000000400200043d000300000002001d00000e6a01000041000000000012043500000004012000393799342a0000040f0000000304000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000300000002001d00000e6a0100004100000000001204350000000401200039379934370000040f0000000304000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b000104300007000000000002000600000003001d000400000002001d00000e4f01100197000700000001001d00000000001004350000000a01000039000200000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000325b0000613d000000000101043b000000000200041100000e4f02200197000500000002001d0000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000325b0000613d000000000101043b000000000301041a000000010200008a000000000123004b000300000002001d000032000000613d0000000601000029000000000113004b000032850000413d0000000701000029000000000101004b000032960000613d000100000003001d0000000501000029000000000101004b000032a70000613d000000070100002900000000001004350000000201000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000325b0000613d000000000101043b00000005020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000325b0000613d000000060200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e9704000041000000070500002900000005060000293799378f0000040f0000000101200190000032030000c13d0000325b0000013d0000000701000029000000000101004b000032b80000613d000000040100002900000e4f01100198000400000001001d0000325d0000613d000000070100002900000000001004350000000901000039000500000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000325b0000613d0000000502000029000000000101043b000000000301041a0000000601000029000200000003001d000000000113004b0000326e0000413d00000007010000290000000000100435000000200020043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000325b0000613d000000060200002900000002030000290000000002230049000000000101043b000000000021041b000000040100002900000000001004350000000501000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f00000001022001900000325b0000613d00000006040000290000000302000029000000000324013f000000000101043b000000000201041a000000000332004b0000327f0000213d0000000002420019000000000021041b000000400100043d000000000041043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e8504000041000000070500002900000004060000293799378f0000040f00000001012001900000325b0000613d000000000001042d00000000010000190000379b00010430000000400200043d000700000002001d00000e6a0100004100000000001204350000000401200039379934100000040f0000000704000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000700000002001d00000e6a01000041000000000012043500000004012000393799341d0000040f0000000704000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b00010430000000400200043d000700000002001d00000e6a0100004100000000001204350000000401200039379934440000040f0000000704000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000700000002001d00000e6a01000041000000000012043500000004012000393799342a0000040f0000000704000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000700000002001d00000e6a0100004100000000001204350000000401200039379934370000040f0000000704000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000700000002001d00000e6a0100004100000000001204350000000401200039379934030000040f0000000704000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b000104300005000000000002000300000002001d000400000001001d000000000100041100000e4f01100197000500000001001d00000000001004350000000a01000039000200000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000033310000613d000000000101043b000000040200002900000e4f02200197000400000002001d0000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000033310000613d000000010200008a0000000303000029000000000223013f000000000101043b000000000301041a000000000123004b000033330000213d0000000501000029000000000101004b000033390000613d000100000003001d0000000401000029000000000101004b0000334a0000613d000000050100002900000000001004350000000201000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000033310000613d000000000101043b00000004020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000033310000613d000000030200002900000001030000290000000002230019000000000101043b000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e9704000041000000050500002900000004060000293799378f0000040f0000000101200190000033310000613d000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b00010430000000400200043d000500000002001d00000e6a01000041000000000012043500000004012000393799342a0000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000500000002001d00000e6a0100004100000000001204350000000401200039379934370000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000600210003900000eb6030000410000000000320435000000400210003900000eb7030000410000000000320435000000200210003900000025030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0005000000000002000300000002001d000400000001001d000000000100041100000e4f01100197000500000001001d00000000001004350000000a01000039000200000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000033ce0000613d000000000101043b000000040200002900000e4f02200197000400000002001d0000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000033ce0000613d000000000101043b000000000201041a0000000301000029000000000112004b000033d00000413d0000000501000029000000000101004b000033e10000613d000100000002001d0000000401000029000000000101004b000033f20000613d000000050100002900000000001004350000000201000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000033ce0000613d000000000101043b00000004020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000033ce0000613d000000030200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e9704000041000000050500002900000004060000293799378f0000040f0000000101200190000033ce0000613d000000000001042d00000000010000190000379b00010430000000400200043d000500000002001d00000e6a01000041000000000012043500000004012000393799335b0000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000500000002001d00000e6a01000041000000000012043500000004012000393799342a0000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000500000002001d00000e6a0100004100000000001204350000000401200039379934370000040f0000000504000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000600210003900000eb8030000410000000000320435000000400210003900000eb9030000410000000000320435000000200210003900000025030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000eba030000410000000000320435000000400210003900000ebb030000410000000000320435000000200210003900000023030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000ebc030000410000000000320435000000400210003900000ebd030000410000000000320435000000200210003900000026030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000ebe030000410000000000320435000000400210003900000ebf030000410000000000320435000000200210003900000024030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000ec0030000410000000000320435000000400210003900000ec1030000410000000000320435000000200210003900000022030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000400210003900000ec203000041000000000032043500000020021000390000001d030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0006000000000002000500000003001d000200000002001d0000000e02000039000000000202041a000000ff02200190000035910000c13d00000e4f02100197000000000100041100000e4f01100197000400000001001d000000000112004b000600000002001d000034bc0000613d00000000002004350000000a01000039000300000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b00000004020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b000000000301041a000000010100008a000000000113004b0000000602000029000034bc0000613d0000000501000029000000000113004b000035d20000413d000000000102004b000035e30000613d000100000003001d0000000401000029000000000101004b000035f40000613d00000000002004350000000301000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b00000004020000290000000000200435000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e9704000041000000060500002900000004060000293799378f0000040f0000000101200190000034be0000c13d000035890000013d000000000102004b000035b30000613d000000060100002900000000001004350000000901000039000400000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b000000000201041a0000000501000029000300000002001d000000000112004b000035a20000413d000000060100002900000000001004350000000401000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000050400002900000003020000290000000002420049000000000101043b000000000021041b0000000b01000039000000000201041a000000000342004b0000358b0000413d0000000002420049000000000021041b000000400100043d000000000041043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000030300003900000e8504000041000000060500002900000000060000193799378f0000040f0000000101200190000035890000613d000000060100002900000000001004350000001501000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b000000000101041a000000ff01100190000035870000c13d00000002010000290000ffff0110018f000600000001001d00000000001004350000001101000039000300000001001d000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b000000000101041a000400000001001d00000e8a01000041000000000010043900000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e8b011001c70000800b02000039379937940000040f0000000102200190000035890000613d000000040200002900000e8c3220012a000000000101043b000200000001001d00000e8c3110012a000000000121004b0000000501000029000400000001001d000035520000213d000000060100002900000000001004350000001001000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000010200008a0000000503000029000000000223013f000000000101043b000000000101041a000000000221004b0000358b0000213d0000000001310019000400000001001d000000060100002900000000001004350000000f01000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b000000000101041a0000000402000029000000000212004b000035c40000213d000000060100002900000000001004350000001001000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b0000000402000029000000000021041b000000060100002900000000001004350000000301000029000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000035890000613d000000000101043b0000000202000029000000000021041b0000000501000029000000000001042d00000000010000190000379b0001043000000e560100004100000000001004350000001101000039000000040010043f00000e57010000410000379b00010430000000400200043d000600000002001d00000e6a0100004100000000001204350000000401200039379936050000040f0000000604000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000600000002001d00000e6a01000041000000000012043500000004012000393799361c0000040f0000000604000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000600000002001d00000e6a01000041000000000012043500000004012000393799360f0000040f0000000604000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d00000024032000390000000404000029000000000043043500000ec30300004100000000003204350000000403200039000000000013043500000de80100004100000de80320009c0000000001024019000000400110021000000e91011001c70000379b00010430000000400200043d000600000002001d00000e6a0100004100000000001204350000000401200039379934440000040f0000000604000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000600000002001d00000e6a01000041000000000012043500000004012000393799342a0000040f0000000604000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000600000002001d00000e6a0100004100000000001204350000000401200039379934370000040f0000000604000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400210003900000ec4030000410000000000320435000000200210003900000010030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000600210003900000ec5030000410000000000320435000000400210003900000ec6030000410000000000320435000000200210003900000021030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000ec7030000410000000000320435000000400210003900000ec8030000410000000000320435000000200210003900000022030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000400210003900000ec903000041000000000032043500000020021000390000001f030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0002000000000002000200000002001d000000000200041a0000000003000411000000000223013f00000e4f02200198000036620000c13d0000ffff0110018f000100000001001d00000000001004350000000f01000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000036600000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000020300003900000eca0400004100000001050000293799378f0000040f0000000101200190000036600000613d000000000001042d00000000010000190000379b00010430000000400200043d000200000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000204000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b000104300002000000000002000200000002001d000000000200041a0000000003000411000000000223013f00000e4f02200198000036a20000c13d0000ffff0110018f000100000001001d00000000001004350000001201000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000036a00000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000020300003900000ecb0400004100000001050000293799378f0000040f0000000101200190000036a00000613d000000000001042d00000000010000190000379b00010430000000400200043d000200000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000204000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b000104300002000000000002000200000002001d000000000200041a0000000003000411000000000223013f00000e4f02200198000036e90000c13d00000e4f01100197000100000001001d00000000001004350000001501000039000000200010043f00000de801000041000000000200041400000de80320009c0000000001024019000000c00110021000000e63011001c70000801002000039379937940000040f0000000102200190000036e70000613d000000000101043b000000000201041a000001000300008a000000000232016f0000000203000029000000000303004b0000000003000019000000010300c039000000000232019f000000000021041b000000400100043d000000000031043500000de802000041000000000300041400000de80430009c000000000302801900000de80410009c00000000010280190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000020300003900000ecc0400004100000001050000293799378f0000040f0000000101200190000036e70000613d000000000001042d00000000010000190000379b00010430000000400200043d000200000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000204000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b000104300001000000000002000000000200041a0000000001000411000000000221013f00000e4f022001980000371c0000c13d0000000e02000039000000000302041a000000ff043001900000372d0000c13d000001000400008a000000000343016f00000001033001bf000000000032041b00000e4f01100197000000400200043d000000000012043500000de801000041000000000300041400000de80430009c000000000301801900000de80420009c00000000010240190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000010300003900000ecd040000413799378f0000040f00000001012001900000373e0000613d000000000001042d000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000100000002001d00000e6a0100004100000000001204350000000401200039379936050000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000000010000190000379b000104300001000000000002000000000200041a0000000001000411000000000221013f00000e4f02200198000037610000c13d0000000e02000039000000000302041a000000ff04300190000037720000613d000001000400008a000000000343016f000000000032041b00000e4f01100197000000400200043d000000000012043500000de801000041000000000300041400000de80430009c000000000301801900000de80420009c00000000010240190000004001100210000000c002300210000000000112019f00000e61011001c70000800d02000039000000010300003900000ece040000413799378f0000040f0000000101200190000037830000613d000000000001042d000000400200043d000100000002001d00000e6a010000410000000000120435000000040120003937992f400000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b00010430000000400200043d000100000002001d00000e6a0100004100000000001204350000000401200039379937850000040f0000000104000029000000000141004900000de80200004100000de80310009c000000000102801900000de80340009c000000000204401900000040022002100000006001100210000000000121019f0000379b0001043000000000010000190000379b00010430000000400210003900000ecf030000410000000000320435000000200210003900000014030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d00003792002104210000000102000039000000000001042d0000000002000019000000000001042d00003797002104230000000102000039000000000001042d0000000002000019000000000001042d00003799000004320000379a0001042e0000379b00010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000100000001000000000000000000000000000000000000000000000000000000000000000000000000008cfd8f5b00000000000000000000000000000000000000000000000000000000baf3292c00000000000000000000000000000000000000000000000000000000eab45d9b00000000000000000000000000000000000000000000000000000000ed629c5b00000000000000000000000000000000000000000000000000000000f5ecbdbb00000000000000000000000000000000000000000000000000000000f5ecbdbc00000000000000000000000000000000000000000000000000000000fc0c546a00000000000000000000000000000000000000000000000000000000fcd5508100000000000000000000000000000000000000000000000000000000ed629c5c00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000eb8d72b600000000000000000000000000000000000000000000000000000000eb8d72b700000000000000000000000000000000000000000000000000000000ecd8f21200000000000000000000000000000000000000000000000000000000eab45d9c00000000000000000000000000000000000000000000000000000000eaffd49a00000000000000000000000000000000000000000000000000000000d1deba1e00000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000df2a5b3b00000000000000000000000000000000000000000000000000000000e6a20ae600000000000000000000000000000000000000000000000000000000d1deba1f00000000000000000000000000000000000000000000000000000000d888296800000000000000000000000000000000000000000000000000000000ca39387b00000000000000000000000000000000000000000000000000000000ca39387c00000000000000000000000000000000000000000000000000000000cbed8b9c00000000000000000000000000000000000000000000000000000000baf3292d00000000000000000000000000000000000000000000000000000000c83330ce000000000000000000000000000000000000000000000000000000009f38369900000000000000000000000000000000000000000000000000000000a6c3d16400000000000000000000000000000000000000000000000000000000abe685cc00000000000000000000000000000000000000000000000000000000abe685cd00000000000000000000000000000000000000000000000000000000b353aaa700000000000000000000000000000000000000000000000000000000b9818be100000000000000000000000000000000000000000000000000000000a6c3d16500000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a4c51df5000000000000000000000000000000000000000000000000000000009f38369a00000000000000000000000000000000000000000000000000000000a40e27cb0000000000000000000000000000000000000000000000000000000095d89b40000000000000000000000000000000000000000000000000000000009b65e652000000000000000000000000000000000000000000000000000000009b65e653000000000000000000000000000000000000000000000000000000009bdb98120000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009b19251a000000000000000000000000000000000000000000000000000000009358928a000000000000000000000000000000000000000000000000000000009358928b00000000000000000000000000000000000000000000000000000000950c8a74000000000000000000000000000000000000000000000000000000008cfd8f5c000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000044770514000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000007533d787000000000000000000000000000000000000000000000000000000007bc03b8d000000000000000000000000000000000000000000000000000000007bc03b8e000000000000000000000000000000000000000000000000000000008456cb5900000000000000000000000000000000000000000000000000000000857749b0000000000000000000000000000000000000000000000000000000007533d7880000000000000000000000000000000000000000000000000000000079c0ad4b0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000005c975abb0000000000000000000000000000000000000000000000000000000066ad5c8a0000000000000000000000000000000000000000000000000000000051a2c388000000000000000000000000000000000000000000000000000000005a359dc4000000000000000000000000000000000000000000000000000000005a359dc5000000000000000000000000000000000000000000000000000000005b8c41e60000000000000000000000000000000000000000000000000000000051a2c3890000000000000000000000000000000000000000000000000000000053d6fd59000000000000000000000000000000000000000000000000000000004b104efe000000000000000000000000000000000000000000000000000000004b104eff000000000000000000000000000000000000000000000000000000004c42899a000000000000000000000000000000000000000000000000000000004477051500000000000000000000000000000000000000000000000000000000455ba27d0000000000000000000000000000000000000000000000000000000023b872dc00000000000000000000000000000000000000000000000000000000365260b3000000000000000000000000000000000000000000000000000000003d8b38f5000000000000000000000000000000000000000000000000000000003d8b38f6000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000042d65a8d00000000000000000000000000000000000000000000000000000000365260b4000000000000000000000000000000000000000000000000000000003950935100000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000035dff2bc0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002cdf0b9500000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000010ddb1360000000000000000000000000000000000000000000000000000000010ddb1370000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000bc66fbf0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000001d35670000000000000000000000000000000000000000000000000000000001ffc9a78000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000006984a9e800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc050616e63616b655377617020546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf43616b6500000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffff0000000000000000000000000000000000000000ffff00000000000000000000ffffffffffffffffffffffffffffffffffffffff0000020000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000002540be40002000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000010000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000004c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200006e747261637400000000000000000000000000000000000000000000000000004c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f08c379a00000000000000000000000000000000000000000000000000000000066ad5c8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0cf5ecbdbc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000cbed8b9c0000000000000000000000000000000000000000000000000000000007e0db170000000000000000000000000000000000000000000000000000000010ddb1370000000000000000000000000000000000000000000000000000000042d65a8d00000000000000000000000000000000000000000000000000000000fa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce4c7a4170703a206e6f20747275737465642070617468207265636f72640000005db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b4c7a4170703a20696e76616c6964206d696e476173000000000000000000000002000000000000000000000000000000000000600000000000000000000000009d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac0204c7a41707000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d75737420626561676500000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737364000000000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f61c264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e54f4654436f72653a2063616c6c6572206d757374206265204f4654436f726500ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf7fcf35da000000000000000000000000000000000000000000000000000000001584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a44f4654436f72653a20756e6b6e6f776e207061636b6574207479706500000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000015180eaffd49a00000000000000000000000000000000000000000000000000000000b8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd8849aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d6cc1d80700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000010000000000000000000000004f4654436f72653a20696e76616c6964207061796c6f6164000000000000000068616e206d696e416d6f756e7400000000000000000000000000000000000000426173654f4654576974684665653a20616d6f756e74206973206c65737320740000000000000000000000000000000000000000000000000000000000ff00008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925000000000000000000000000000000000000000000000000ffffffffffffff9fc580310000000000000000000000000000000000000000000000000000000000d81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a4f4654436f72653a20616d6f756e7420746f6f20736d616c6c0000000000000061207472757374656420736f75726365000000000000000000000000000000004c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f7420656d7074792e00000000000000000000000000000000000000000000000000004f4654436f72653a205f61646170746572506172616d73206d757374206265204c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000004c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000004c7a4170703a20696e76616c69642061646170746572506172616d73000000004f4654436f72653a20616d6f756e745344206f766572666c6f77000000000000010000000000000000000000000000000000000000000000000000000000000040a7bb10000000000000000000000000000000000000000000000000000000004e41544f520000000000000000000000000000000000000000000000000000004665653a20666565206270206d757374206265203c3d2042505f44454e4f4d49ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000d26030ef4a8c225ee12b646eb4466acb41fb96b6cd4660b22d0ba0124e7bdc740000000000000000000000000000000000000000000000000000000000010000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffdd9c9685af3e6dcb56d8f4b88d2595d4add6837a150034e7781c46b6dcf8aaab4665653a206665654f776e65722063616e6e6f74206265203078000000000000047912631afa564eebd3db2efe191a0dec62da1fede6bbbc1ffc89d87845b1b5746f416464726573735f6f75744f66426f756e64730000000000000000000000746f55696e74385f6f75744f66426f756e647300000000000000000000000000746f55696e7436345f6f75744f66426f756e6473000000000000000000000000746f427974657333325f6f75744f66426f756e647300000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657264647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f20616464726545524332303a20696e73756666696369656e7420616c6c6f77616e636500000059869195000000000000000000000000000000000000000000000000000000005061757361626c653a2070617573656400000000000000000000000000000000730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e45524332303a206d696e7420746f20746865207a65726f20616464726573730033d0fe6530e808b43711a6333a7509ab4601707b639f23fcb8aef05bb6602ae613aaa8bcd182e10a0da2842b57f639fd4182fa41a6c702fb2b8570da7b2911a5f6019ec0a78d156d249a1ec7579e2321f6ac7521d6e1d2eacf90ba4a184dcceb62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f742070617573656400000000000000000000000075be00b6a38cf95ca4c32b2bb9edde924c1c00f842159c13a22b9ce1850a6e4a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x0000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da
-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x9b896c0e23220469C7AE69cb4BbAE391eAa4C8da
-----Encoded View---------------
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.