ERC-20
Overview
Max Total Supply
653,827.870716354827726533 KACY
Holders
137
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
KacyOFT
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.0; import "@layerzerolabs/solidity-examples/contracts/token/oft/OFT.sol"; contract KacyOFT is OFT { constructor(address _lzEndpoint) OFT("Kassandra", "KACY", _lzEndpoint) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import "./IOFT.sol"; import "./OFTCore.sol"; // override decimal() function is needed contract OFT is OFTCore, ERC20, IOFT { constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) OFTCore(_lzEndpoint) {} function supportsInterface(bytes4 interfaceId) public view virtual override(OFTCore, IERC165) returns (bool) { return interfaceId == type(IOFT).interfaceId || interfaceId == type(IERC20).interfaceId || super.supportsInterface(interfaceId); } function token() public view virtual override returns (address) { return address(this); } function circulatingSupply() public view virtual override returns (uint) { return totalSupply(); } function _debitFrom(address _from, uint16, bytes memory, uint _amount) internal virtual override returns(uint) { address spender = _msgSender(); if (_from != spender) _spendAllowance(_from, spender, _amount); _burn(_from, _amount); return _amount; } function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns(uint) { _mint(_toAddress, _amount); return _amount; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "./IOFTCore.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @dev Interface of the OFT standard */ interface IOFT is IOFTCore, IERC20 { }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Interface of the IOFT core standard */ interface IOFTCore is IERC165 { /** * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`) * _dstChainId - L0 defined chain id to send tokens too * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain * _amount - amount of the tokens to transfer * _useZro - indicates to use zro to pay L0 fees * _adapterParam - flexible bytes array to indicate messaging adapter services in L0 */ function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); /** * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from` * `_from` the owner of token * `_dstChainId` the destination chain identifier * `_toAddress` can be any size depending on the `dstChainId`. * `_amount` the quantity of tokens in wei * `_refundAddress` the address LayerZero refunds if too much message fee is sent * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token) * `_adapterParams` is a flexible bytes array to indicate messaging adapter services */ function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; /** * @dev returns the circulating amount of tokens on current chain */ function circulatingSupply() external view returns (uint); /** * @dev returns the address of the ERC20 token */ function token() external view returns (address); /** * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`) * `_nonce` is the outbound nonce */ event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes _toAddress, uint _amount); /** * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain. * `_nonce` is the inbound nonce. */ event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount); event SetUseCustomAdapterParams(bool _useCustomAdapterParams); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../lzApp/NonblockingLzApp.sol"; import "./IOFTCore.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; abstract contract OFTCore is NonblockingLzApp, ERC165, IOFTCore { using BytesLib for bytes; uint public constant NO_EXTRA_GAS = 0; // packet type uint16 public constant PT_SEND = 0; bool public useCustomAdapterParams; constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {} function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IOFTCore).interfaceId || super.supportsInterface(interfaceId); } function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) { // mock the payload for sendFrom() bytes memory payload = abi.encode(PT_SEND, _toAddress, _amount); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) public payable virtual override { _send(_from, _dstChainId, _toAddress, _amount, _refundAddress, _zroPaymentAddress, _adapterParams); } function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner { useCustomAdapterParams = _useCustomAdapterParams; emit SetUseCustomAdapterParams(_useCustomAdapterParams); } function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { uint16 packetType; assembly { packetType := mload(add(_payload, 32)) } if (packetType == PT_SEND) { _sendAck(_srcChainId, _srcAddress, _nonce, _payload); } else { revert("OFTCore: unknown packet type"); } } function _send(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual { _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS); uint amount = _debitFrom(_from, _dstChainId, _toAddress, _amount); bytes memory lzPayload = abi.encode(PT_SEND, _toAddress, amount); _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, amount); } function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual { (, bytes memory toAddressBytes, uint amount) = abi.decode(_payload, (uint16, bytes, uint)); address to = toAddressBytes.toAddress(0); amount = _creditTo(_srcChainId, to, amount); emit ReceiveFromChain(_srcChainId, to, amount); } function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual { if (useCustomAdapterParams) { _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas); } else { require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty."); } } function _debitFrom(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount) internal virtual returns(uint); function _creditTo(uint16 _srcChainId, address _toAddress, uint _amount) internal virtual returns(uint); }
// 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.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/ILayerZeroReceiver.sol"; import "../interfaces/ILayerZeroUserApplicationConfig.sol"; import "../interfaces/ILayerZeroEndpoint.sol"; import "../util/BytesLib.sol"; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { using BytesLib for bytes; // ua can not send payload larger than this by default, but it can be changed by the ua owner uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000; ILayerZeroEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup; mapping(uint16 => uint) public payloadSizeLimitLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas); constructor(address _endpoint) { lzEndpoint = ILayerZeroEndpoint(_endpoint); } function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override { // lzReceive must be called by the endpoint for security require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller"); bytes memory trustedRemote = trustedRemoteLookup[_srcChainId]; // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote. require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract"); _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source"); _checkPayloadSize(_dstChainId, _payload.length); lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams); } function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual { uint providedGasLimit = _getGasLimit(_adapterParams); uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas; require(minGasLimit > 0, "LzApp: minGasLimit not set"); require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) { require(_adapterParams.length >= 34, "LzApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual { uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId]; if (payloadSizeLimit == 0) { // use default if not set payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT; } require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large"); } //---------------------------UserApplication config---------------------------------------- function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) { return lzEndpoint.getConfig(_version, _chainId, address(this), _configType); } // generic config for LayerZero user Application function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner { lzEndpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { lzEndpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { lzEndpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _srcChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_srcChainId] = _path; emit SetTrustedRemote(_srcChainId, _path); } function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this)); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; require(path.length != 0, "LzApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner { require(_minGas > 0, "LzApp: invalid minGas"); minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } // if the size is 0, it means default size limit function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner { payloadSizeLimitLookup[_dstChainId] = _size; } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } }
// 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.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: 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 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); }
// 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 (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 (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// 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 (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); }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620037ed380380620037ed833981016040819052620000349162000120565b604051806040016040528060098152602001684b617373616e64726160b81b815250604051806040016040528060048152602001634b41435960e01b815250828282828080620000936200008d620000cc60201b60201c565b620000d0565b6001600160a01b031660805250600a9050620000b08382620001f7565b50600b620000bf8282620001f7565b50505050505050620002c3565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156200013357600080fd5b81516001600160a01b03811681146200014b57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200017d57607f821691505b6020821081036200019e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f257600081815260208120601f850160051c81016020861015620001cd5750805b601f850160051c820191505b81811015620001ee57828155600101620001d9565b5050505b505050565b81516001600160401b0381111562000213576200021362000152565b6200022b8162000224845462000168565b84620001a4565b602080601f8311600181146200026357600084156200024a5750858301515b600019600386901b1c1916600185901b178555620001ee565b600085815260208120601f198616915b82811015620002945788860151825594840194600190910190840162000273565b5085821015620002b35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080516134d662000317600039600081816106fc0152818161087701528181610b9601528181610c5601528181610cf401528181610e91015281816113ca0152818161187501526122b201526134d66000f3fe6080604052600436106102715760003560e01c80637533d7881161014f578063baf3292d116100c1578063eab45d9c1161007a578063eab45d9c146107c7578063eb8d72b7146107e7578063ed629c5c14610807578063f2fde38b14610821578063f5ecbdbc14610841578063fc0c546a1461086157600080fd5b8063baf3292d1461071e578063c44618341461073e578063cbed8b9c14610754578063d1deba1f14610774578063dd62ed3e14610787578063df2a5b3b146107a757600080fd5b806395d89b411161011357806395d89b41146106555780639f38369a1461066a578063a457c2d71461068a578063a6c3d165146106aa578063a9059cbb146106ca578063b353aaa7146106ea57600080fd5b80637533d788146105965780638cfd8f5c146105b65780638da5cb5b146105ee5780639358928b14610620578063950c8a741461063557600080fd5b806339509351116101e85780634c42899a116101ac5780634c42899a146104a157806351905636146104c95780635b8c41e6146104dc57806366ad5c8a1461052b57806370a082311461054b578063715018a61461058157600080fd5b806339509351146103ff5780633d8b38f61461041f5780633f1f4fa41461043f57806342d65a8d1461046c578063447705151461048c57600080fd5b80630df374831161023a5780630df374831461032f57806310ddb1371461034f57806318160ddd1461036f57806323b872dd1461038e5780632a205e3d146103ae578063313ce567146103e357600080fd5b80621d35671461027657806301ffc9a71461029857806306fdde03146102cd57806307e0db17146102ef578063095ea7b31461030f575b600080fd5b34801561028257600080fd5b50610296610291366004612845565b610874565b005b3480156102a457600080fd5b506102b86102b33660046128da565b610aa5565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610ae3565b6040516102c49190612954565b3480156102fb57600080fd5b5061029661030a366004612967565b610b75565b34801561031b57600080fd5b506102b861032a366004612999565b610bfe565b34801561033b57600080fd5b5061029661034a3660046129c5565b610c16565b34801561035b57600080fd5b5061029661036a366004612967565b610c35565b34801561037b57600080fd5b506009545b6040519081526020016102c4565b34801561039a57600080fd5b506102b86103a93660046129e3565b610c8d565b3480156103ba57600080fd5b506103ce6103c9366004612a34565b610cb1565b604080519283526020830191909152016102c4565b3480156103ef57600080fd5b50604051601281526020016102c4565b34801561040b57600080fd5b506102b861041a366004612999565b610d84565b34801561042b57600080fd5b506102b861043a366004612ad3565b610da6565b34801561044b57600080fd5b5061038061045a366004612967565b60036020526000908152604090205481565b34801561047857600080fd5b50610296610487366004612ad3565b610e72565b34801561049857600080fd5b50610380600081565b3480156104ad57600080fd5b506104b6600081565b60405161ffff90911681526020016102c4565b6102966104d7366004612b27565b610ef8565b3480156104e857600080fd5b506103806104f7366004612c5d565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561053757600080fd5b50610296610546366004612845565b610f7d565b34801561055757600080fd5b50610380610566366004612cff565b6001600160a01b031660009081526007602052604090205490565b34801561058d57600080fd5b50610296611059565b3480156105a257600080fd5b506102e26105b1366004612967565b61106d565b3480156105c257600080fd5b506103806105d1366004612d1c565b600260209081526000928352604080842090915290825290205481565b3480156105fa57600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016102c4565b34801561062c57600080fd5b50610380611107565b34801561064157600080fd5b50600454610608906001600160a01b031681565b34801561066157600080fd5b506102e2611117565b34801561067657600080fd5b506102e2610685366004612967565b611126565b34801561069657600080fd5b506102b86106a5366004612999565b61123c565b3480156106b657600080fd5b506102966106c5366004612ad3565b6112b7565b3480156106d657600080fd5b506102b86106e5366004612999565b611340565b3480156106f657600080fd5b506106087f000000000000000000000000000000000000000000000000000000000000000081565b34801561072a57600080fd5b50610296610739366004612cff565b61134e565b34801561074a57600080fd5b5061038061271081565b34801561076057600080fd5b5061029661076f366004612d55565b6113ab565b610296610782366004612845565b611435565b34801561079357600080fd5b506103806107a2366004612dc7565b61164b565b3480156107b357600080fd5b506102966107c2366004612df5565b611676565b3480156107d357600080fd5b506102966107e2366004612e25565b611728565b3480156107f357600080fd5b50610296610802366004612ad3565b611771565b34801561081357600080fd5b506006546102b89060ff1681565b34801561082d57600080fd5b5061029661083c366004612cff565b6117cb565b34801561084d57600080fd5b506102e261085c366004612e40565b611844565b34801561086d57600080fd5b5030610608565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146108f15760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff86166000908152600160205260408120805461090f90612e91565b80601f016020809104026020016040519081016040528092919081815260200182805461093b90612e91565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b505050505090508051868690501480156109a3575060008151115b80156109cb5750805160208201206040516109c19088908890612ecb565b6040518091039020145b610a265760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b60648201526084016108e8565b610a9c8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506118f592505050565b50505050505050565b60006001600160e01b031982161580610ace57506001600160e01b031982166336372b0760e01b145b80610add5750610add8261196e565b92915050565b6060600a8054610af290612e91565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90612e91565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b610b7d6119a3565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610be357600080fd5b505af1158015610bf7573d6000803e3d6000fd5b5050505050565b600033610c0c8185856119fd565b5060019392505050565b610c1e6119a3565b61ffff909116600090815260036020526040902055565b610c3d6119a3565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610bc9565b600033610c9b858285611b21565b610ca6858585611b9b565b506001949350505050565b600080600080898989604051602001610ccd9493929190612f04565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090610d33908d90309086908c908c908c90600401612f33565b6040805180830381865afa158015610d4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d739190612f89565b925092505097509795505050505050565b600033610c0c818585610d97838361164b565b610da19190612fc3565b6119fd565b61ffff831660009081526001602052604081208054829190610dc790612e91565b80601f0160208091040260200160405190810160405280929190818152602001828054610df390612e91565b8015610e405780601f10610e1557610100808354040283529160200191610e40565b820191906000526020600020905b815481529060010190602001808311610e2357829003601f168201915b505050505090508383604051610e57929190612ecb565b60405180910390208180519060200120149150509392505050565b610e7a6119a3565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d90610eca90869086908690600401612fd6565b600060405180830381600087803b158015610ee457600080fd5b505af1158015610a9c573d6000803e3d6000fd5b610f72898989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528c93508b92508a918a908a9081908401838280828437600092019190915250611d4692505050565b505050505050505050565b333014610fdb5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b60648201526084016108e8565b6110518686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250611ded92505050565b505050505050565b6110616119a3565b61106b6000611e54565b565b6001602052600090815260409020805461108690612e91565b80601f01602080910402602001604051908101604052809291908181526020018280546110b290612e91565b80156110ff5780601f106110d4576101008083540402835291602001916110ff565b820191906000526020600020905b8154815290600101906020018083116110e257829003601f168201915b505050505081565b600061111260095490565b905090565b6060600b8054610af290612e91565b61ffff811660009081526001602052604081208054606092919061114990612e91565b80601f016020809104026020016040519081016040528092919081815260200182805461117590612e91565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b50505050509050805160000361121a5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f726400000060448201526064016108e8565b61123560006014835161122d9190612ff4565b839190611ea4565b9392505050565b6000338161124a828661164b565b9050838110156112aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e8565b610ca682868684036119fd565b6112bf6119a3565b8181306040516020016112d493929190613007565b60408051601f1981840301815291815261ffff85166000908152600160205220906112ff9082613073565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161133393929190612fd6565b60405180910390a1505050565b600033610c0c818585611b9b565b6113566119a3565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020015b60405180910390a150565b6113b36119a3565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c906114079088908890889088908890600401613132565b600060405180830381600087803b15801561142157600080fd5b505af1158015610f72573d6000803e3d6000fd5b61ffff861660009081526005602052604080822090516114589088908890612ecb565b90815260408051602092819003830190206001600160401b038716600090815292529020549050806114d85760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b60648201526084016108e8565b8083836040516114e9929190612ecb565b6040518091039020146115485760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b60648201526084016108e8565b61ffff8716600090815260056020526040808220905161156b9089908990612ecb565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252611603918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250611ded92505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e5878787878560405161163a95949392919061316b565b60405180910390a150505050505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b61167e6119a3565b600081116116c65760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b60448201526064016108e8565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611333565b6117306119a3565b6006805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a4906020016113a0565b6117796119a3565b61ffff831660009081526001602052604090206117978284836131a6565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161133393929190612fd6565b6117d36119a3565b6001600160a01b0381166118385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e8565b61184181611e54565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa1580156118c4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118ec91908101906132b2565b95945050505050565b6000806119585a60966366ad5c8a60e01b8989898960405160240161191d94939291906132e6565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190611fb1565b915091508161105157611051868686868561203b565b60006001600160e01b03198216630a72677560e11b1480610add57506301ffc9a760e01b6001600160e01b0319831614610add565b6000546001600160a01b0316331461106b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e8565b6001600160a01b038316611a5f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e8565b6001600160a01b038216611ac05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e8565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611b2d848461164b565b90506000198114611b955781811015611b885760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e8565b611b9584848484036119fd565b50505050565b6001600160a01b038316611bff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108e8565b6001600160a01b038216611c615760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108e8565b6001600160a01b03831660009081526007602052604090205481811015611cd95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108e8565b6001600160a01b0380851660008181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611d399086815260200190565b60405180910390a3611b95565b611d548660008360006120dd565b6000611d6288888888612157565b90506000808783604051602001611d7b93929190613324565b6040516020818303038152906040529050611d9a888287878734612189565b886001600160a01b03168861ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08985604051611dda929190613351565b60405180910390a3505050505050505050565b602081015161ffff8116611e0c57611e078585858561232e565b610bf7565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b657420747970650000000060448201526064016108e8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b606081611eb281601f612fc3565b1015611ef15760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b60448201526064016108e8565b611efb8284612fc3565b84511015611f3f5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b60448201526064016108e8565b606082158015611f5e5760405191506000825260208201604052611fa8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015611f97578051835260209283019201611f7f565b5050858452601f01601f1916604052505b50949350505050565b6000606060008060008661ffff166001600160401b03811115611fd657611fd6612bf0565b6040519080825280601f01601f191660200182016040528015612000576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115612022578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161206c9190613373565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906120c9908790879087908790879061338f565b60405180910390a15050505050565b505050565b60065460ff16156120f9576120f4848484846123b8565b611b95565b815115611b955760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b60648201526084016108e8565b6000336001600160a01b038616811461217557612175868285611b21565b61217f8684612497565b5090949350505050565b61ffff8616600090815260016020526040812080546121a790612e91565b80601f01602080910402602001604051908101604052809291908181526020018280546121d390612e91565b80156122205780601f106121f557610100808354040283529160200191612220565b820191906000526020600020905b81548152906001019060200180831161220357829003601f168201915b5050505050905080516000036122915760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b60648201526084016108e8565b61229c8787516125cb565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c58031009084906122f3908b9086908c908c908c908c906004016133ed565b6000604051808303818588803b15801561230c57600080fd5b505af1158015612320573d6000803e3d6000fd5b505050505050505050505050565b600080828060200190518101906123459190613447565b909350915060009050612358838261263c565b90506123658782846126a1565b9150806001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf846040516123a791815260200190565b60405180910390a350505050505050565b60006123c3836126b4565b61ffff8087166000908152600260209081526040808320938916835292905290812054919250906123f5908490612fc3565b9050600081116124475760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f742073657400000000000060448201526064016108e8565b808210156110515760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f77000000000060448201526064016108e8565b6001600160a01b0382166124f75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108e8565b6001600160a01b0382166000908152600760205260409020548181101561256b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108e8565b6001600160a01b03831660008181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff8216600090815260036020526040812054908190036125ec57506127105b808211156120d85760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676560448201526064016108e8565b6000612649826014612fc3565b835110156126915760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b60448201526064016108e8565b500160200151600160601b900490565b60006126ad8383612710565b5092915050565b60006022825110156127085760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d730000000060448201526064016108e8565b506022015190565b6001600160a01b0382166127665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108e8565b80600960008282546127789190612fc3565b90915550506001600160a01b0382166000818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b61ffff8116811461184157600080fd5b60008083601f8401126127f357600080fd5b5081356001600160401b0381111561280a57600080fd5b60208301915083602082850101111561282257600080fd5b9250929050565b80356001600160401b038116811461284057600080fd5b919050565b6000806000806000806080878903121561285e57600080fd5b8635612869816127d1565b955060208701356001600160401b038082111561288557600080fd5b6128918a838b016127e1565b90975095508591506128a560408a01612829565b945060608901359150808211156128bb57600080fd5b506128c889828a016127e1565b979a9699509497509295939492505050565b6000602082840312156128ec57600080fd5b81356001600160e01b03198116811461123557600080fd5b60005b8381101561291f578181015183820152602001612907565b50506000910152565b60008151808452612940816020860160208601612904565b601f01601f19169290920160200192915050565b6020815260006112356020830184612928565b60006020828403121561297957600080fd5b8135611235816127d1565b6001600160a01b038116811461184157600080fd5b600080604083850312156129ac57600080fd5b82356129b781612984565b946020939093013593505050565b600080604083850312156129d857600080fd5b82356129b7816127d1565b6000806000606084860312156129f857600080fd5b8335612a0381612984565b92506020840135612a1381612984565b929592945050506040919091013590565b8035801515811461284057600080fd5b600080600080600080600060a0888a031215612a4f57600080fd5b8735612a5a816127d1565b965060208801356001600160401b0380821115612a7657600080fd5b612a828b838c016127e1565b909850965060408a01359550869150612a9d60608b01612a24565b945060808a0135915080821115612ab357600080fd5b50612ac08a828b016127e1565b989b979a50959850939692959293505050565b600080600060408486031215612ae857600080fd5b8335612af3816127d1565b925060208401356001600160401b03811115612b0e57600080fd5b612b1a868287016127e1565b9497909650939450505050565b600080600080600080600080600060e08a8c031215612b4557600080fd5b8935612b5081612984565b985060208a0135612b60816127d1565b975060408a01356001600160401b0380821115612b7c57600080fd5b612b888d838e016127e1565b909950975060608c0135965060808c01359150612ba482612984565b90945060a08b013590612bb682612984565b90935060c08b01359080821115612bcc57600080fd5b50612bd98c828d016127e1565b915080935050809150509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612c2e57612c2e612bf0565b604052919050565b60006001600160401b03821115612c4f57612c4f612bf0565b50601f01601f191660200190565b600080600060608486031215612c7257600080fd5b8335612c7d816127d1565b925060208401356001600160401b03811115612c9857600080fd5b8401601f81018613612ca957600080fd5b8035612cbc612cb782612c36565b612c06565b818152876020838501011115612cd157600080fd5b81602084016020830137600060208383010152809450505050612cf660408501612829565b90509250925092565b600060208284031215612d1157600080fd5b813561123581612984565b60008060408385031215612d2f57600080fd5b8235612d3a816127d1565b91506020830135612d4a816127d1565b809150509250929050565b600080600080600060808688031215612d6d57600080fd5b8535612d78816127d1565b94506020860135612d88816127d1565b93506040860135925060608601356001600160401b03811115612daa57600080fd5b612db6888289016127e1565b969995985093965092949392505050565b60008060408385031215612dda57600080fd5b8235612de581612984565b91506020830135612d4a81612984565b600080600060608486031215612e0a57600080fd5b8335612e15816127d1565b92506020840135612a13816127d1565b600060208284031215612e3757600080fd5b61123582612a24565b60008060008060808587031215612e5657600080fd5b8435612e61816127d1565b93506020850135612e71816127d1565b92506040850135612e8181612984565b9396929550929360600135925050565b600181811c90821680612ea557607f821691505b602082108103612ec557634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff85168152606060208201526000612f22606083018587612edb565b905082604083015295945050505050565b61ffff871681526001600160a01b038616602082015260a060408201819052600090612f6190830187612928565b85151560608401528281036080840152612f7c818587612edb565b9998505050505050505050565b60008060408385031215612f9c57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052601160045260246000fd5b80820180821115610add57610add612fad565b61ffff841681526040602082015260006118ec604083018486612edb565b81810381811115610add57610add612fad565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156120d857600081815260208120601f850160051c810160208610156130545750805b601f850160051c820191505b8181101561105157828155600101613060565b81516001600160401b0381111561308c5761308c612bf0565b6130a08161309a8454612e91565b8461302d565b602080601f8311600181146130d557600084156130bd5750858301515b600019600386901b1c1916600185901b178555611051565b600085815260208120601f198616915b82811015613104578886015182559484019460019091019084016130e5565b50858210156131225787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff808816835280871660208401525084604083015260806060830152613160608083018486612edb565b979650505050505050565b61ffff86168152608060208201526000613189608083018688612edb565b6001600160401b0394909416604083015250606001529392505050565b6001600160401b038311156131bd576131bd612bf0565b6131d1836131cb8354612e91565b8361302d565b6000601f84116001811461320557600085156131ed5750838201355b600019600387901b1c1916600186901b178355610bf7565b600083815260209020601f19861690835b828110156132365786850135825560209485019460019092019101613216565b50868210156132535760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600082601f83011261327657600080fd5b8151613284612cb782612c36565b81815284602083860101111561329957600080fd5b6132aa826020830160208701612904565b949350505050565b6000602082840312156132c457600080fd5b81516001600160401b038111156132da57600080fd5b6132aa84828501613265565b61ffff851681526080602082015260006133036080830186612928565b6001600160401b038516604084015282810360608401526131608185612928565b61ffff841681526060602082015260006133416060830185612928565b9050826040830152949350505050565b6040815260006133646040830185612928565b90508260208301529392505050565b60008251613385818460208701612904565b9190910192915050565b61ffff8616815260a0602082015260006133ac60a0830187612928565b6001600160401b038616604084015282810360608401526133cd8186612928565b905082810360808401526133e18185612928565b98975050505050505050565b61ffff8716815260c06020820152600061340a60c0830188612928565b828103604084015261341c8188612928565b6001600160a01b0387811660608601528616608085015283810360a08501529050612f7c8185612928565b60008060006060848603121561345c57600080fd5b8351613467816127d1565b60208501519093506001600160401b0381111561348357600080fd5b61348f86828701613265565b92505060408401519050925092509256fea264697066735822122002df81639d90d406bce18089a8c350910d7d325f503fe2d1795dec4e2ee6f06c64736f6c634300081200330000000000000000000000003c2269811836af69497e5f486a85d7316753cf62
Deployed Bytecode
0x6080604052600436106102715760003560e01c80637533d7881161014f578063baf3292d116100c1578063eab45d9c1161007a578063eab45d9c146107c7578063eb8d72b7146107e7578063ed629c5c14610807578063f2fde38b14610821578063f5ecbdbc14610841578063fc0c546a1461086157600080fd5b8063baf3292d1461071e578063c44618341461073e578063cbed8b9c14610754578063d1deba1f14610774578063dd62ed3e14610787578063df2a5b3b146107a757600080fd5b806395d89b411161011357806395d89b41146106555780639f38369a1461066a578063a457c2d71461068a578063a6c3d165146106aa578063a9059cbb146106ca578063b353aaa7146106ea57600080fd5b80637533d788146105965780638cfd8f5c146105b65780638da5cb5b146105ee5780639358928b14610620578063950c8a741461063557600080fd5b806339509351116101e85780634c42899a116101ac5780634c42899a146104a157806351905636146104c95780635b8c41e6146104dc57806366ad5c8a1461052b57806370a082311461054b578063715018a61461058157600080fd5b806339509351146103ff5780633d8b38f61461041f5780633f1f4fa41461043f57806342d65a8d1461046c578063447705151461048c57600080fd5b80630df374831161023a5780630df374831461032f57806310ddb1371461034f57806318160ddd1461036f57806323b872dd1461038e5780632a205e3d146103ae578063313ce567146103e357600080fd5b80621d35671461027657806301ffc9a71461029857806306fdde03146102cd57806307e0db17146102ef578063095ea7b31461030f575b600080fd5b34801561028257600080fd5b50610296610291366004612845565b610874565b005b3480156102a457600080fd5b506102b86102b33660046128da565b610aa5565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610ae3565b6040516102c49190612954565b3480156102fb57600080fd5b5061029661030a366004612967565b610b75565b34801561031b57600080fd5b506102b861032a366004612999565b610bfe565b34801561033b57600080fd5b5061029661034a3660046129c5565b610c16565b34801561035b57600080fd5b5061029661036a366004612967565b610c35565b34801561037b57600080fd5b506009545b6040519081526020016102c4565b34801561039a57600080fd5b506102b86103a93660046129e3565b610c8d565b3480156103ba57600080fd5b506103ce6103c9366004612a34565b610cb1565b604080519283526020830191909152016102c4565b3480156103ef57600080fd5b50604051601281526020016102c4565b34801561040b57600080fd5b506102b861041a366004612999565b610d84565b34801561042b57600080fd5b506102b861043a366004612ad3565b610da6565b34801561044b57600080fd5b5061038061045a366004612967565b60036020526000908152604090205481565b34801561047857600080fd5b50610296610487366004612ad3565b610e72565b34801561049857600080fd5b50610380600081565b3480156104ad57600080fd5b506104b6600081565b60405161ffff90911681526020016102c4565b6102966104d7366004612b27565b610ef8565b3480156104e857600080fd5b506103806104f7366004612c5d565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561053757600080fd5b50610296610546366004612845565b610f7d565b34801561055757600080fd5b50610380610566366004612cff565b6001600160a01b031660009081526007602052604090205490565b34801561058d57600080fd5b50610296611059565b3480156105a257600080fd5b506102e26105b1366004612967565b61106d565b3480156105c257600080fd5b506103806105d1366004612d1c565b600260209081526000928352604080842090915290825290205481565b3480156105fa57600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016102c4565b34801561062c57600080fd5b50610380611107565b34801561064157600080fd5b50600454610608906001600160a01b031681565b34801561066157600080fd5b506102e2611117565b34801561067657600080fd5b506102e2610685366004612967565b611126565b34801561069657600080fd5b506102b86106a5366004612999565b61123c565b3480156106b657600080fd5b506102966106c5366004612ad3565b6112b7565b3480156106d657600080fd5b506102b86106e5366004612999565b611340565b3480156106f657600080fd5b506106087f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6281565b34801561072a57600080fd5b50610296610739366004612cff565b61134e565b34801561074a57600080fd5b5061038061271081565b34801561076057600080fd5b5061029661076f366004612d55565b6113ab565b610296610782366004612845565b611435565b34801561079357600080fd5b506103806107a2366004612dc7565b61164b565b3480156107b357600080fd5b506102966107c2366004612df5565b611676565b3480156107d357600080fd5b506102966107e2366004612e25565b611728565b3480156107f357600080fd5b50610296610802366004612ad3565b611771565b34801561081357600080fd5b506006546102b89060ff1681565b34801561082d57600080fd5b5061029661083c366004612cff565b6117cb565b34801561084d57600080fd5b506102e261085c366004612e40565b611844565b34801561086d57600080fd5b5030610608565b337f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b0316146108f15760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff86166000908152600160205260408120805461090f90612e91565b80601f016020809104026020016040519081016040528092919081815260200182805461093b90612e91565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b505050505090508051868690501480156109a3575060008151115b80156109cb5750805160208201206040516109c19088908890612ecb565b6040518091039020145b610a265760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b60648201526084016108e8565b610a9c8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506118f592505050565b50505050505050565b60006001600160e01b031982161580610ace57506001600160e01b031982166336372b0760e01b145b80610add5750610add8261196e565b92915050565b6060600a8054610af290612e91565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90612e91565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b610b7d6119a3565b6040516307e0db1760e01b815261ffff821660048201527f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610be357600080fd5b505af1158015610bf7573d6000803e3d6000fd5b5050505050565b600033610c0c8185856119fd565b5060019392505050565b610c1e6119a3565b61ffff909116600090815260036020526040902055565b610c3d6119a3565b6040516310ddb13760e01b815261ffff821660048201527f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b0316906310ddb13790602401610bc9565b600033610c9b858285611b21565b610ca6858585611b9b565b506001949350505050565b600080600080898989604051602001610ccd9493929190612f04565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6216906340a7bb1090610d33908d90309086908c908c908c90600401612f33565b6040805180830381865afa158015610d4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d739190612f89565b925092505097509795505050505050565b600033610c0c818585610d97838361164b565b610da19190612fc3565b6119fd565b61ffff831660009081526001602052604081208054829190610dc790612e91565b80601f0160208091040260200160405190810160405280929190818152602001828054610df390612e91565b8015610e405780601f10610e1557610100808354040283529160200191610e40565b820191906000526020600020905b815481529060010190602001808311610e2357829003601f168201915b505050505090508383604051610e57929190612ecb565b60405180910390208180519060200120149150509392505050565b610e7a6119a3565b6040516342d65a8d60e01b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6216906342d65a8d90610eca90869086908690600401612fd6565b600060405180830381600087803b158015610ee457600080fd5b505af1158015610a9c573d6000803e3d6000fd5b610f72898989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528c93508b92508a918a908a9081908401838280828437600092019190915250611d4692505050565b505050505050505050565b333014610fdb5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b60648201526084016108e8565b6110518686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250611ded92505050565b505050505050565b6110616119a3565b61106b6000611e54565b565b6001602052600090815260409020805461108690612e91565b80601f01602080910402602001604051908101604052809291908181526020018280546110b290612e91565b80156110ff5780601f106110d4576101008083540402835291602001916110ff565b820191906000526020600020905b8154815290600101906020018083116110e257829003601f168201915b505050505081565b600061111260095490565b905090565b6060600b8054610af290612e91565b61ffff811660009081526001602052604081208054606092919061114990612e91565b80601f016020809104026020016040519081016040528092919081815260200182805461117590612e91565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b50505050509050805160000361121a5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f726400000060448201526064016108e8565b61123560006014835161122d9190612ff4565b839190611ea4565b9392505050565b6000338161124a828661164b565b9050838110156112aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e8565b610ca682868684036119fd565b6112bf6119a3565b8181306040516020016112d493929190613007565b60408051601f1981840301815291815261ffff85166000908152600160205220906112ff9082613073565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161133393929190612fd6565b60405180910390a1505050565b600033610c0c818585611b9b565b6113566119a3565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020015b60405180910390a150565b6113b36119a3565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62169063cbed8b9c906114079088908890889088908890600401613132565b600060405180830381600087803b15801561142157600080fd5b505af1158015610f72573d6000803e3d6000fd5b61ffff861660009081526005602052604080822090516114589088908890612ecb565b90815260408051602092819003830190206001600160401b038716600090815292529020549050806114d85760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b60648201526084016108e8565b8083836040516114e9929190612ecb565b6040518091039020146115485760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b60648201526084016108e8565b61ffff8716600090815260056020526040808220905161156b9089908990612ecb565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252611603918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250611ded92505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e5878787878560405161163a95949392919061316b565b60405180910390a150505050505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b61167e6119a3565b600081116116c65760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b60448201526064016108e8565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611333565b6117306119a3565b6006805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a4906020016113a0565b6117796119a3565b61ffff831660009081526001602052604090206117978284836131a6565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161133393929190612fd6565b6117d36119a3565b6001600160a01b0381166118385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e8565b61184181611e54565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b03169063f5ecbdbc90608401600060405180830381865afa1580156118c4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118ec91908101906132b2565b95945050505050565b6000806119585a60966366ad5c8a60e01b8989898960405160240161191d94939291906132e6565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190611fb1565b915091508161105157611051868686868561203b565b60006001600160e01b03198216630a72677560e11b1480610add57506301ffc9a760e01b6001600160e01b0319831614610add565b6000546001600160a01b0316331461106b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e8565b6001600160a01b038316611a5f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e8565b6001600160a01b038216611ac05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e8565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611b2d848461164b565b90506000198114611b955781811015611b885760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e8565b611b9584848484036119fd565b50505050565b6001600160a01b038316611bff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108e8565b6001600160a01b038216611c615760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108e8565b6001600160a01b03831660009081526007602052604090205481811015611cd95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108e8565b6001600160a01b0380851660008181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611d399086815260200190565b60405180910390a3611b95565b611d548660008360006120dd565b6000611d6288888888612157565b90506000808783604051602001611d7b93929190613324565b6040516020818303038152906040529050611d9a888287878734612189565b886001600160a01b03168861ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08985604051611dda929190613351565b60405180910390a3505050505050505050565b602081015161ffff8116611e0c57611e078585858561232e565b610bf7565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b657420747970650000000060448201526064016108e8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b606081611eb281601f612fc3565b1015611ef15760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b60448201526064016108e8565b611efb8284612fc3565b84511015611f3f5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b60448201526064016108e8565b606082158015611f5e5760405191506000825260208201604052611fa8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015611f97578051835260209283019201611f7f565b5050858452601f01601f1916604052505b50949350505050565b6000606060008060008661ffff166001600160401b03811115611fd657611fd6612bf0565b6040519080825280601f01601f191660200182016040528015612000576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115612022578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161206c9190613373565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906120c9908790879087908790879061338f565b60405180910390a15050505050565b505050565b60065460ff16156120f9576120f4848484846123b8565b611b95565b815115611b955760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b60648201526084016108e8565b6000336001600160a01b038616811461217557612175868285611b21565b61217f8684612497565b5090949350505050565b61ffff8616600090815260016020526040812080546121a790612e91565b80601f01602080910402602001604051908101604052809291908181526020018280546121d390612e91565b80156122205780601f106121f557610100808354040283529160200191612220565b820191906000526020600020905b81548152906001019060200180831161220357829003601f168201915b5050505050905080516000036122915760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b60648201526084016108e8565b61229c8787516125cb565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62169063c58031009084906122f3908b9086908c908c908c908c906004016133ed565b6000604051808303818588803b15801561230c57600080fd5b505af1158015612320573d6000803e3d6000fd5b505050505050505050505050565b600080828060200190518101906123459190613447565b909350915060009050612358838261263c565b90506123658782846126a1565b9150806001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf846040516123a791815260200190565b60405180910390a350505050505050565b60006123c3836126b4565b61ffff8087166000908152600260209081526040808320938916835292905290812054919250906123f5908490612fc3565b9050600081116124475760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f742073657400000000000060448201526064016108e8565b808210156110515760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f77000000000060448201526064016108e8565b6001600160a01b0382166124f75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108e8565b6001600160a01b0382166000908152600760205260409020548181101561256b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108e8565b6001600160a01b03831660008181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff8216600090815260036020526040812054908190036125ec57506127105b808211156120d85760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676560448201526064016108e8565b6000612649826014612fc3565b835110156126915760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b60448201526064016108e8565b500160200151600160601b900490565b60006126ad8383612710565b5092915050565b60006022825110156127085760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d730000000060448201526064016108e8565b506022015190565b6001600160a01b0382166127665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108e8565b80600960008282546127789190612fc3565b90915550506001600160a01b0382166000818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b61ffff8116811461184157600080fd5b60008083601f8401126127f357600080fd5b5081356001600160401b0381111561280a57600080fd5b60208301915083602082850101111561282257600080fd5b9250929050565b80356001600160401b038116811461284057600080fd5b919050565b6000806000806000806080878903121561285e57600080fd5b8635612869816127d1565b955060208701356001600160401b038082111561288557600080fd5b6128918a838b016127e1565b90975095508591506128a560408a01612829565b945060608901359150808211156128bb57600080fd5b506128c889828a016127e1565b979a9699509497509295939492505050565b6000602082840312156128ec57600080fd5b81356001600160e01b03198116811461123557600080fd5b60005b8381101561291f578181015183820152602001612907565b50506000910152565b60008151808452612940816020860160208601612904565b601f01601f19169290920160200192915050565b6020815260006112356020830184612928565b60006020828403121561297957600080fd5b8135611235816127d1565b6001600160a01b038116811461184157600080fd5b600080604083850312156129ac57600080fd5b82356129b781612984565b946020939093013593505050565b600080604083850312156129d857600080fd5b82356129b7816127d1565b6000806000606084860312156129f857600080fd5b8335612a0381612984565b92506020840135612a1381612984565b929592945050506040919091013590565b8035801515811461284057600080fd5b600080600080600080600060a0888a031215612a4f57600080fd5b8735612a5a816127d1565b965060208801356001600160401b0380821115612a7657600080fd5b612a828b838c016127e1565b909850965060408a01359550869150612a9d60608b01612a24565b945060808a0135915080821115612ab357600080fd5b50612ac08a828b016127e1565b989b979a50959850939692959293505050565b600080600060408486031215612ae857600080fd5b8335612af3816127d1565b925060208401356001600160401b03811115612b0e57600080fd5b612b1a868287016127e1565b9497909650939450505050565b600080600080600080600080600060e08a8c031215612b4557600080fd5b8935612b5081612984565b985060208a0135612b60816127d1565b975060408a01356001600160401b0380821115612b7c57600080fd5b612b888d838e016127e1565b909950975060608c0135965060808c01359150612ba482612984565b90945060a08b013590612bb682612984565b90935060c08b01359080821115612bcc57600080fd5b50612bd98c828d016127e1565b915080935050809150509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612c2e57612c2e612bf0565b604052919050565b60006001600160401b03821115612c4f57612c4f612bf0565b50601f01601f191660200190565b600080600060608486031215612c7257600080fd5b8335612c7d816127d1565b925060208401356001600160401b03811115612c9857600080fd5b8401601f81018613612ca957600080fd5b8035612cbc612cb782612c36565b612c06565b818152876020838501011115612cd157600080fd5b81602084016020830137600060208383010152809450505050612cf660408501612829565b90509250925092565b600060208284031215612d1157600080fd5b813561123581612984565b60008060408385031215612d2f57600080fd5b8235612d3a816127d1565b91506020830135612d4a816127d1565b809150509250929050565b600080600080600060808688031215612d6d57600080fd5b8535612d78816127d1565b94506020860135612d88816127d1565b93506040860135925060608601356001600160401b03811115612daa57600080fd5b612db6888289016127e1565b969995985093965092949392505050565b60008060408385031215612dda57600080fd5b8235612de581612984565b91506020830135612d4a81612984565b600080600060608486031215612e0a57600080fd5b8335612e15816127d1565b92506020840135612a13816127d1565b600060208284031215612e3757600080fd5b61123582612a24565b60008060008060808587031215612e5657600080fd5b8435612e61816127d1565b93506020850135612e71816127d1565b92506040850135612e8181612984565b9396929550929360600135925050565b600181811c90821680612ea557607f821691505b602082108103612ec557634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff85168152606060208201526000612f22606083018587612edb565b905082604083015295945050505050565b61ffff871681526001600160a01b038616602082015260a060408201819052600090612f6190830187612928565b85151560608401528281036080840152612f7c818587612edb565b9998505050505050505050565b60008060408385031215612f9c57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052601160045260246000fd5b80820180821115610add57610add612fad565b61ffff841681526040602082015260006118ec604083018486612edb565b81810381811115610add57610add612fad565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156120d857600081815260208120601f850160051c810160208610156130545750805b601f850160051c820191505b8181101561105157828155600101613060565b81516001600160401b0381111561308c5761308c612bf0565b6130a08161309a8454612e91565b8461302d565b602080601f8311600181146130d557600084156130bd5750858301515b600019600386901b1c1916600185901b178555611051565b600085815260208120601f198616915b82811015613104578886015182559484019460019091019084016130e5565b50858210156131225787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff808816835280871660208401525084604083015260806060830152613160608083018486612edb565b979650505050505050565b61ffff86168152608060208201526000613189608083018688612edb565b6001600160401b0394909416604083015250606001529392505050565b6001600160401b038311156131bd576131bd612bf0565b6131d1836131cb8354612e91565b8361302d565b6000601f84116001811461320557600085156131ed5750838201355b600019600387901b1c1916600186901b178355610bf7565b600083815260209020601f19861690835b828110156132365786850135825560209485019460019092019101613216565b50868210156132535760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600082601f83011261327657600080fd5b8151613284612cb782612c36565b81815284602083860101111561329957600080fd5b6132aa826020830160208701612904565b949350505050565b6000602082840312156132c457600080fd5b81516001600160401b038111156132da57600080fd5b6132aa84828501613265565b61ffff851681526080602082015260006133036080830186612928565b6001600160401b038516604084015282810360608401526131608185612928565b61ffff841681526060602082015260006133416060830185612928565b9050826040830152949350505050565b6040815260006133646040830185612928565b90508260208301529392505050565b60008251613385818460208701612904565b9190910192915050565b61ffff8616815260a0602082015260006133ac60a0830187612928565b6001600160401b038616604084015282810360608401526133cd8186612928565b905082810360808401526133e18185612928565b98975050505050505050565b61ffff8716815260c06020820152600061340a60c0830188612928565b828103604084015261341c8188612928565b6001600160a01b0387811660608601528616608085015283810360a08501529050612f7c8185612928565b60008060006060848603121561345c57600080fd5b8351613467816127d1565b60208501519093506001600160401b0381111561348357600080fd5b61348f86828701613265565b92505060408401519050925092509256fea264697066735822122002df81639d90d406bce18089a8c350910d7d325f503fe2d1795dec4e2ee6f06c64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62
-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x3c2269811836af69497E5F486A85D7316753cf62
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62
Deployed Bytecode Sourcemap
142:105:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1254:753:4;;;;;;;;;;-1:-1:-1;1254:753:4;;;;;:::i;:::-;;:::i;:::-;;438:253:8;;;;;;;;;;-1:-1:-1;438:253:8;;;;;:::i;:::-;;:::i;:::-;;;2048:14:19;;2041:22;2023:41;;2011:2;1996:18;438:253:8;;;;;;;;2154:98:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4499:121:4:-;;;;;;;;;;-1:-1:-1;4499:121:4;;;;;:::i;:::-;;:::i;4431:197:13:-;;;;;;;;;;-1:-1:-1;4431:197:13;;;;;:::i;:::-;;:::i;6373:140:4:-;;;;;;;;;;-1:-1:-1;6373:140:4;;;;;:::i;:::-;;:::i;4626:127::-;;;;;;;;;;-1:-1:-1;4626:127:4;;;;;:::i;:::-;;:::i;3242:106:13:-;;;;;;;;;;-1:-1:-1;3329:12:13;;3242:106;;;4001:25:19;;;3989:2;3974:18;3242:106:13;3855:177:19;5190:286:13;;;;;;;;;;-1:-1:-1;5190:286:13;;;;;:::i;:::-;;:::i;728:423:9:-;;;;;;;;;;-1:-1:-1;728:423:9;;;;;:::i;:::-;;:::i;:::-;;;;5830:25:19;;;5886:2;5871:18;;5864:34;;;;5803:18;728:423:9;5656:248:19;3091:91:13;;;;;;;;;;-1:-1:-1;3091:91:13;;3173:2;6051:36:19;;6039:2;6024:18;3091:91:13;5909:184:19;5871:234:13;;;;;;;;;;-1:-1:-1;5871:234:13;;;;;:::i;:::-;;:::i;6608:247:4:-;;;;;;;;;;-1:-1:-1;6608:247:4;;;;;:::i;:::-;;:::i;808:53::-;;;;;;;;;;-1:-1:-1;808:53:4;;;;;:::i;:::-;;;;;;;;;;;;;;4759:176;;;;;;;;;;-1:-1:-1;4759:176:4;;;;;:::i;:::-;;:::i;293:37:9:-;;;;;;;;;;;;329:1;293:37;;356:34;;;;;;;;;;;;389:1;356:34;;;;;6819:6:19;6807:19;;;6789:38;;6777:2;6762:18;356:34:9;6645:188:19;1157:332:9;;;;;;:::i;:::-;;:::i;617:85:5:-;;;;;;;;;;-1:-1:-1;617:85:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1820:342;;;;;;;;;;-1:-1:-1;1820:342:5;;;;;:::i;:::-;;:::i;3406:125:13:-;;;;;;;;;;-1:-1:-1;3406:125:13;;;;;:::i;:::-;-1:-1:-1;;;;;3506:18:13;3480:7;3506:18;;;:9;:18;;;;;;;3406:125;1831:101:12;;;;;;;;;;;;;:::i;680:51:4:-;;;;;;;;;;-1:-1:-1;680:51:4;;;;;:::i;:::-;;:::i;737:65::-;;;;;;;;;;-1:-1:-1;737:65:4;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;1201:85:12;;;;;;;;;;-1:-1:-1;1247:7:12;1273:6;-1:-1:-1;;;;;1273:6:12;1201:85;;;-1:-1:-1;;;;;10890:32:19;;;10872:51;;10860:2;10845:18;1201:85:12;10726:203:19;804:110:8;;;;;;;;;;;;;:::i;867:23:4:-;;;;;;;;;;-1:-1:-1;867:23:4;;;;-1:-1:-1;;;;;867:23:4;;;2365:102:13;;;;;;;;;;;;;:::i;5563:326:4:-;;;;;;;;;;-1:-1:-1;5563:326:4;;;;;:::i;:::-;;:::i;6592:427:13:-;;;;;;;;;;-1:-1:-1;6592:427:13;;;;;:::i;:::-;;:::i;5279:278:4:-;;;;;;;;;;-1:-1:-1;5279:278:4;;;;;:::i;:::-;;:::i;3727:189:13:-;;;;;;;;;;-1:-1:-1;3727:189:13;;;;;:::i;:::-;;:::i;628:46:4:-;;;;;;;;;;;;;;;5895:133;;;;;;;;;;-1:-1:-1;5895:133:4;;;;;:::i;:::-;;:::i;566:55::-;;;;;;;;;;;;616:5;566:55;;4291:202;;;;;;;;;;-1:-1:-1;4291:202:4;;;;;:::i;:::-;;:::i;2343:757:5:-;;;;;;:::i;:::-;;:::i;3974:149:13:-;;;;;;;;;;-1:-1:-1;3974:149:13;;;;;:::i;:::-;;:::i;6034:280:4:-;;;;;;;;;;-1:-1:-1;6034:280:4;;;;;:::i;:::-;;:::i;1495:220:9:-;;;;;;;;;;-1:-1:-1;1495:220:9;;;;;:::i;:::-;;:::i;5078:195:4:-;;;;;;;;;;-1:-1:-1;5078:195:4;;;;;:::i;:::-;;:::i;397:34:9:-;;;;;;;;;;-1:-1:-1;397:34:9;;;;;;;;2081:198:12;;;;;;;;;;-1:-1:-1;2081:198:12;;;;;:::i;:::-;;:::i;4023:209:4:-;;;;;;;;;;-1:-1:-1;4023:209:4;;;;;:::i;:::-;;:::i;697:101:8:-;;;;;;;;;;-1:-1:-1;786:4:8;697:101;;1254:753:4;719:10:16;1492::4;-1:-1:-1;;;;;1468:35:4;;1460:78;;;;-1:-1:-1;;;1460:78:4;;13759:2:19;1460:78:4;;;13741:21:19;13798:2;13778:18;;;13771:30;13837:32;13817:18;;;13810:60;13887:18;;1460:78:4;;;;;;;;;1578:32;;;1549:26;1578:32;;;:19;:32;;;;;1549:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1782:13;:20;1760:11;;:18;;:42;:70;;;;;1829:1;1806:13;:20;:24;1760:70;:124;;;;-1:-1:-1;1860:24:4;;;;;;1834:22;;;;1844:11;;;;1834:22;:::i;:::-;;;;;;;;:50;1760:124;1752:175;;;;-1:-1:-1;;;1752:175:4;;14779:2:19;1752:175:4;;;14761:21:19;14818:2;14798:18;;;14791:30;14857:34;14837:18;;;14830:62;-1:-1:-1;;;14908:18:19;;;14901:36;14954:19;;1752:175:4;14577:402:19;1752:175:4;1938:62;1957:11;1970;;1938:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1938:62:4;;;;;;;;;;;;;;;;;;;;;;1983:6;;-1:-1:-1;1938:62:4;-1:-1:-1;1991:8:4;;;;;;1938:62;;1991:8;;;;1938:62;;;;;;;;;-1:-1:-1;1938:18:4;;-1:-1:-1;;;1938:62:4:i;:::-;1385:622;1254:753;;;;;;:::o;438:253:8:-;541:4;-1:-1:-1;;;;;;564:37:8;;;;:80;;-1:-1:-1;;;;;;;605:39:8;;-1:-1:-1;;;605:39:8;564:80;:120;;;;648:36;672:11;648:23;:36::i;:::-;557:127;438:253;-1:-1:-1;;438:253:8:o;2154:98:13:-;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4499:121:4:-;1094:13:12;:11;:13::i;:::-;4578:35:4::1;::::0;-1:-1:-1;;;4578:35:4;;6819:6:19;6807:19;;4578:35:4::1;::::0;::::1;6789:38:19::0;4578:10:4::1;-1:-1:-1::0;;;;;4578:25:4::1;::::0;::::1;::::0;6762:18:19;;4578:35:4::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;4499:121:::0;:::o;4431:197:13:-;4514:4;719:10:16;4568:32:13;719:10:16;4584:7:13;4593:6;4568:8;:32::i;:::-;-1:-1:-1;4617:4:13;;4431:197;-1:-1:-1;;;4431:197:13:o;6373:140:4:-;1094:13:12;:11;:13::i;:::-;6463:35:4::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;6373:140::o;4626:127::-;1094:13:12;:11;:13::i;:::-;4708:38:4::1;::::0;-1:-1:-1;;;4708:38:4;;6819:6:19;6807:19;;4708:38:4::1;::::0;::::1;6789::19::0;4708:10:4::1;-1:-1:-1::0;;;;;4708:28:4::1;::::0;::::1;::::0;6762:18:19;;4708:38:4::1;6645:188:19::0;5190:286:13;5317:4;719:10:16;5373:38:13;5389:4;719:10:16;5404:6:13;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;-1:-1:-1;5465:4:13;;5190:286;-1:-1:-1;;;;5190:286:13:o;728:423:9:-;897:14;913:11;979:20;389:1;1022:10;;1034:7;1002:40;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1002:40:9;;;;;;;;;;-1:-1:-1;;;1059:85:9;;1002:40;-1:-1:-1;;;;;;1059:10:9;:23;;;;:85;;1083:11;;1104:4;;1002:40;;1120:7;;1129:14;;;;1059:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1052:92;;;;;728:423;;;;;;;;;;:::o;5871:234:13:-;5959:4;719:10:16;6013:64:13;719:10:16;6029:7:13;6066:10;6038:25;719:10:16;6029:7:13;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;6608:247:4:-;6749:32;;;6704:4;6749:32;;;:19;:32;;;;;6720:61;;6704:4;;6749:32;6720:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6836:11;;6826:22;;;;;;;:::i;:::-;;;;;;;;6808:13;6798:24;;;;;;:50;6791:57;;;6608:247;;;;;:::o;4759:176::-;1094:13:12;:11;:13::i;:::-;4873:55:4::1;::::0;-1:-1:-1;;;4873:55:4;;-1:-1:-1;;;;;4873:10:4::1;:29;::::0;::::1;::::0;:55:::1;::::0;4903:11;;4916;;;;4873:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;1157:332:9::0;1384:98;1390:5;1397:11;1410:10;;1384:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1384:98:9;;;;;;;;;;;;;;;;;;;;;;1422:7;;-1:-1:-1;1431:14:9;;-1:-1:-1;1447:18:9;;1467:14;;;;;;1384:98;;1467:14;;;;1384:98;;;;;;;;;-1:-1:-1;1384:5:9;;-1:-1:-1;;;1384:98:9:i;:::-;1157:332;;;;;;;;;:::o;1820:342:5:-;719:10:16;2032:4:5;2008:29;2000:80;;;;-1:-1:-1;;;2000:80:5;;17375:2:19;2000:80:5;;;17357:21:19;17414:2;17394:18;;;17387:30;17453:34;17433:18;;;17426:62;-1:-1:-1;;;17504:18:19;;;17497:36;17550:19;;2000:80:5;17173:402:19;2000:80:5;2090:65;2112:11;2125;;2090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2090:65:5;;;;;;;;;;;;;;;;;;;;;;2138:6;;-1:-1:-1;2090:65:5;-1:-1:-1;2146:8:5;;;;;;2090:65;;2146:8;;;;2090:65;;;;;;;;;-1:-1:-1;2090:21:5;;-1:-1:-1;;;2090:65:5:i;:::-;1820:342;;;;;;:::o;1831:101:12:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;680:51:4:-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;804:110:8:-;871:4;894:13;3329:12:13;;;3242:106;894:13:8;887:20;;804:110;:::o;2365:102:13:-;2421:13;2453:7;2446:14;;;;;:::i;5563:326:4:-;5686:35;;;5666:17;5686:35;;;:19;:35;;;;;5666:55;;5642:12;;5666:17;5686:35;5666:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5739:4;:11;5754:1;5739:16;5731:58;;;;-1:-1:-1;;;5731:58:4;;17782:2:19;5731:58:4;;;17764:21:19;17821:2;17801:18;;;17794:30;17860:31;17840:18;;;17833:59;17909:18;;5731:58:4;17580:353:19;5731:58:4;5806:31;5817:1;5834:2;5820:4;:11;:16;;;;:::i;:::-;5806:4;;:31;:10;:31::i;:::-;5799:38;5563:326;-1:-1:-1;;;5563:326:4:o;6592:427:13:-;6685:4;719:10:16;6685:4:13;6766:25;719:10:16;6783:7:13;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:13;;18273:2:19;6801:85:13;;;18255:21:19;18312:2;18292:18;;;18285:30;18351:34;18331:18;;;18324:62;-1:-1:-1;;;18402:18:19;;;18395:35;18447:19;;6801:85:13;18071:401:19;6801:85:13;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;5279:278:4:-;1094:13:12;:11;:13::i;:::-;5450:14:4::1;;5474:4;5433:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;5433:47:4;;::::1;::::0;;;;;;5395:35:::1;::::0;::::1;;::::0;;;:19:::1;5433:47;5395:35:::0;;;:85:::1;::::0;:35;:85:::1;:::i;:::-;;5495:55;5519:14;5535;;5495:55;;;;;;;;:::i;:::-;;;;;;;;5279:278:::0;;;:::o;3727:189:13:-;3806:4;719:10:16;3860:28:13;719:10:16;3877:2:13;3881:6;3860:9;:28::i;5895:133:4:-;1094:13:12;:11;:13::i;:::-;5964:8:4::1;:20:::0;;-1:-1:-1;;;;;;5964:20:4::1;-1:-1:-1::0;;;;;5964:20:4;::::1;::::0;;::::1;::::0;;;5999:22:::1;::::0;10872:51:19;;;5999:22:4::1;::::0;10860:2:19;10845:18;5999:22:4::1;;;;;;;;5895:133:::0;:::o;4291:202::-;1094:13:12;:11;:13::i;:::-;4424:62:4::1;::::0;-1:-1:-1;;;4424:62:4;;-1:-1:-1;;;;;4424:10:4::1;:20;::::0;::::1;::::0;:62:::1;::::0;4445:8;;4455;;4465:11;;4478:7;;;;4424:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;2343:757:5::0;2552:27;;;2530:19;2552:27;;;:14;:27;;;;;;:40;;;;2580:11;;;;2552:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2552:48:5;;;;;;;;;;;;-1:-1:-1;2552:48:5;2610:73;;;;-1:-1:-1;;;2610:73:5;;21745:2:19;2610:73:5;;;21727:21:19;21784:2;21764:18;;;21757:30;21823:34;21803:18;;;21796:62;-1:-1:-1;;;21874:18:19;;;21867:33;21917:19;;2610:73:5;21543:399:19;2610:73:5;2724:11;2711:8;;2701:19;;;;;;;:::i;:::-;;;;;;;;:34;2693:80;;;;-1:-1:-1;;;2693:80:5;;22149:2:19;2693:80:5;;;22131:21:19;22188:2;22168:18;;;22161:30;22227:34;22207:18;;;22200:62;-1:-1:-1;;;22278:18:19;;;22271:31;22319:19;;2693:80:5;21947:397:19;2693:80:5;2819:27;;;2878:1;2819:27;;;:14;:27;;;;;;:40;;;;2847:11;;;;2819:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2819:48:5;;;;;;;;;;;;:61;;;;2947:65;;;;;;;;;;;;;;;;;;;2969:11;;2982;;2947:65;;;;;;2982:11;2947:65;;2982:11;2947:65;;;;;;;;;-1:-1:-1;;2947:65:5;;;;;;;;;;;;;;;;;;;;;;2995:6;;-1:-1:-1;2947:65:5;-1:-1:-1;3003:8:5;;;;;;2947:65;;3003:8;;;;2947:65;;;;;;;;;-1:-1:-1;2947:21:5;;-1:-1:-1;;;2947:65:5:i;:::-;3027:66;3047:11;3060;;3073:6;3081:11;3027:66;;;;;;;;;;:::i;:::-;;;;;;;;2476:624;2343:757;;;;;;:::o;3974:149:13:-;-1:-1:-1;;;;;4089:18:13;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149::o;6034:280:4:-;1094:13:12;:11;:13::i;:::-;6157:1:4::1;6147:7;:11;6139:45;;;::::0;-1:-1:-1;;;6139:45:4;;23049:2:19;6139:45:4::1;::::0;::::1;23031:21:19::0;23088:2;23068:18;;;23061:30;-1:-1:-1;;;23107:18:19;;;23100:51;23168:18;;6139:45:4::1;22847:345:19::0;6139:45:4::1;6194:28;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;6260:47;;23420:34:19;;;23470:18;;23463:43;;;;23522:18;;;23515:34;;;6260:47:4::1;::::0;23383:2:19;23368:18;6260:47:4::1;23197:358:19::0;1495:220:9;1094:13:12;:11;:13::i;:::-;1595:22:9::1;:48:::0;;-1:-1:-1;;1595:48:9::1;::::0;::::1;;::::0;;::::1;::::0;;;1658:50:::1;::::0;2023:41:19;;;1658:50:9::1;::::0;2011:2:19;1996:18;1658:50:9::1;1883:187:19::0;5078:195:4;1094:13:12;:11;:13::i;:::-;5175:32:4::1;::::0;::::1;;::::0;;;:19:::1;:32;::::0;;;;:40:::1;5210:5:::0;;5175:32;:40:::1;:::i;:::-;;5230:36;5247:11;5260:5;;5230:36;;;;;;;;:::i;2081:198:12:-:0;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:12;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:12;;24969:2:19;2161:73:12::1;::::0;::::1;24951:21:19::0;25008:2;24988:18;;;24981:30;25047:34;25027:18;;;25020:62;-1:-1:-1;;;25098:18:19;;;25091:36;25144:19;;2161:73:12::1;24767:402:19::0;2161:73:12::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;4023:209:4:-;4157:68;;-1:-1:-1;;;4157:68:4;;25411:6:19;25444:15;;;4157:68:4;;;25426:34:19;25496:15;;25476:18;;;25469:43;4206:4:4;25528:18:19;;;25521:60;25597:18;;;25590:34;;;4126:12:4;;4157:10;-1:-1:-1;;;;;4157:20:4;;;;25373:19:19;;4157:68:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4157:68:4;;;;;;;;;;;;:::i;:::-;4150:75;4023:209;-1:-1:-1;;;;;4023:209:4:o;980:508:5:-;1129:12;1143:19;1166:153;1200:9;1211:3;1239:34;;;1275:11;1288;1301:6;1309:8;1216:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1216:102:5;;;;;;;;;;;;;;-1:-1:-1;;;;;1216:102:5;-1:-1:-1;;;;;;1216:102:5;;;;;;;;;;1174:4;;1166:153;;:33;:153::i;:::-;1128:191;;;;1377:7;1372:110;;1400:71;1420:11;1433;1446:6;1454:8;1464:6;1400:19;:71::i;509:213:9:-;611:4;-1:-1:-1;;;;;;634:41:9;;-1:-1:-1;;;634:41:9;;:81;;-1:-1:-1;;;;;;;;;;937:40:17;;;679:36:9;829:155:17;1359:130:12;1247:7;1273:6;-1:-1:-1;;;;;1273:6:12;719:10:16;1422:23:12;1414:68;;;;-1:-1:-1;;;1414:68:12;;27185:2:19;1414:68:12;;;27167:21:19;;;27204:18;;;27197:30;27263:34;27243:18;;;27236:62;27315:18;;1414:68:12;26983:356:19;10504:370:13;-1:-1:-1;;;;;10635:19:13;;10627:68;;;;-1:-1:-1;;;10627:68:13;;27546:2:19;10627:68:13;;;27528:21:19;27585:2;27565:18;;;27558:30;27624:34;27604:18;;;27597:62;-1:-1:-1;;;27675:18:19;;;27668:34;27719:19;;10627:68:13;27344:400:19;10627:68:13;-1:-1:-1;;;;;10713:21:13;;10705:68;;;;-1:-1:-1;;;10705:68:13;;27951:2:19;10705:68:13;;;27933:21:19;27990:2;27970:18;;;27963:30;28029:34;28009:18;;;28002:62;-1:-1:-1;;;28080:18:19;;;28073:32;28122:19;;10705:68:13;27749:398:19;10705:68:13;-1:-1:-1;;;;;10784:18:13;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;4001:25:19;;;10835:32:13;;3974:18:19;10835:32:13;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;-1:-1:-1;;11351:16:13;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:13;;28354:2:19;11404:68:13;;;28336:21:19;28393:2;28373:18;;;28366:30;28432:31;28412:18;;;28405:59;28481:18;;11404:68:13;28152:353:19;11404:68:13;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11275:321;11155:441;;;:::o;7473:818::-;-1:-1:-1;;;;;7599:18:13;;7591:68;;;;-1:-1:-1;;;7591:68:13;;28712:2:19;7591:68:13;;;28694:21:19;28751:2;28731:18;;;28724:30;28790:34;28770:18;;;28763:62;-1:-1:-1;;;28841:18:19;;;28834:35;28886:19;;7591:68:13;28510:401:19;7591:68:13;-1:-1:-1;;;;;7677:16:13;;7669:64;;;;-1:-1:-1;;;7669:64:13;;29118:2:19;7669:64:13;;;29100:21:19;29157:2;29137:18;;;29130:30;29196:34;29176:18;;;29169:62;-1:-1:-1;;;29247:18:19;;;29240:33;29290:19;;7669:64:13;28916:399:19;7669:64:13;-1:-1:-1;;;;;7815:15:13;;7793:19;7815:15;;;:9;:15;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:13;;29522:2:19;7840:72:13;;;29504:21:19;29561:2;29541:18;;;29534:30;29600:34;29580:18;;;29573:62;-1:-1:-1;;;29651:18:19;;;29644:36;29697:19;;7840:72:13;29320:402:19;7840:72:13;-1:-1:-1;;;;;7946:15:13;;;;;;;:9;:15;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;;;;;7978:6;4001:25:19;;3989:2;3974:18;;3855:177;8210:26:13;;;;;;;;8247:37;12180:121;2165:605:9;2370:71;2390:11;389:1;2412:14;329:1;2370:19;:71::i;:::-;2452:11;2466:51;2477:5;2484:11;2497:10;2509:7;2466:10;:51::i;:::-;2452:65;;2528:22;389:1;2573:10;2585:6;2553:39;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2528:64;;2602:94;2610:11;2623:9;2634:14;2650:18;2670:14;2686:9;2602:7;:94::i;:::-;2737:5;-1:-1:-1;;;;;2712:51:9;2724:11;2712:51;;;2744:10;2756:6;2712:51;;;;;;;:::i;:::-;;;;;;;;2360:410;;2165:605;;;;;;;:::o;1721:438::-;1956:2;1942:17;;1936:24;1984:21;;;1980:173;;2021:52;2030:11;2043;2056:6;2064:8;2021;:52::i;:::-;1980:173;;;2104:38;;-1:-1:-1;;;2104:38:9;;30599:2:19;2104:38:9;;;30581:21:19;30638:2;30618:18;;;30611:30;30677;30657:18;;;30650:58;30725:18;;2104:38:9;30397:352:19;2433:187:12;2506:16;2525:6;;-1:-1:-1;;;;;2541:17:12;;;-1:-1:-1;;;;;;2541:17:12;;;;;;2573:40;;2525:6;;;;;;;2573:40;;2506:16;2573:40;2496:124;2433:187;:::o;8865:2712:10:-;8999:12;9051:7;9035:12;9051:7;9045:2;9035:12;:::i;:::-;:23;;9027:50;;;;-1:-1:-1;;;9027:50:10;;30956:2:19;9027:50:10;;;30938:21:19;30995:2;30975:18;;;30968:30;-1:-1:-1;;;31014:18:19;;;31007:44;31068:18;;9027:50:10;30754:338:19;9027:50:10;9112:16;9121:7;9112:6;:16;:::i;:::-;9095:6;:13;:33;;9087:63;;;;-1:-1:-1;;;9087:63:10;;31299:2:19;9087:63:10;;;31281:21:19;31338:2;31318:18;;;31311:30;-1:-1:-1;;;31357:18:19;;;31350:47;31414:18;;9087:63:10;31097:341:19;9087:63:10;9161:22;9224:15;;9252:1895;;;;11288:4;11282:11;11269:24;;11466:1;11455:9;11448:20;11514:4;11503:9;11499:20;11493:4;11486:34;9217:2317;;9252:1895;9426:4;9420:11;9407:24;;10053:2;10044:7;10040:16;10419:9;10412:17;10406:4;10402:28;10390:9;10379;10375:25;10371:60;10467:7;10463:2;10459:16;10711:6;10697:9;10690:17;10684:4;10680:28;10668:9;10660:6;10656:22;10652:57;10648:70;10493:417;10744:3;10740:2;10737:11;10493:417;;;10882:9;;10871:21;;10785:4;10777:13;;;;10817;10493:417;;;-1:-1:-1;;10928:26:10;;;11128:2;11111:11;-1:-1:-1;;11107:25:10;11101:4;11094:39;-1:-1:-1;9217:2317:10;-1:-1:-1;11561:9:10;8865:2712;-1:-1:-1;;;;8865:2712:10:o;1118:1240:11:-;1275:4;1281:12;1341:15;1366:13;1389:24;1426:8;1416:19;;-1:-1:-1;;;;;1416:19:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1416:19:11;;1389:46;;1904:1;1879;1846:9;1840:16;1812:4;1801:9;1797:20;1767:1;1733:7;1708:4;1690:239;1678:251;;1992:16;1981:27;;2036:8;2027:7;2024:21;2021:76;;;2075:8;2064:19;;2021:76;2178:7;2165:11;2158:28;2294:7;2291:1;2284:4;2271:11;2267:22;2252:50;2329:8;;;;-1:-1:-1;1118:1240:11;-1:-1:-1;;;;;;1118:1240:11:o;1494:320:5:-;1717:8;1707:19;;;;;;1656:14;:27;1671:11;1656:27;;;;;;;;;;;;;;;1684:11;1656:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1656:48:5;;;;;;;;;:70;;;;1741:66;;;;1755:11;;1768;;1697:6;;1789:8;;1799:7;;1741:66;:::i;:::-;;;;;;;;1494:320;;;;;:::o;12180:121:13:-;;;;:::o;3150:367:9:-;3291:22;;;;3287:224;;;3329:63;3344:11;3357:7;3366:14;3382:9;3329:14;:63::i;:::-;3287:224;;;3431:21;;:26;3423:77;;;;-1:-1:-1;;;3423:77:9;;32661:2:19;3423:77:9;;;32643:21:19;32700:2;32680:18;;;32673:30;32739:34;32719:18;;;32712:62;-1:-1:-1;;;32790:18:19;;;32783:36;32836:19;;3423:77:9;32459:402:19;920:285:8;1025:4;719:10:16;-1:-1:-1;;;;;1085:16:8;;;;1081:62;;1103:40;1119:5;1126:7;1135;1103:15;:40::i;:::-;1153:21;1159:5;1166:7;1153:5;:21::i;:::-;-1:-1:-1;1191:7:8;;920:285;-1:-1:-1;;;;920:285:8:o;2291:548:4:-;2513:32;;;2484:26;2513:32;;;:19;:32;;;;;2484:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2563:13;:20;2587:1;2563:25;2555:86;;;;-1:-1:-1;;;2555:86:4;;33068:2:19;2555:86:4;;;33050:21:19;33107:2;33087:18;;;33080:30;33146:34;33126:18;;;33119:62;-1:-1:-1;;;33197:18:19;;;33190:46;33253:19;;2555:86:4;32866:412:19;2555:86:4;2651:47;2669:11;2682:8;:15;2651:17;:47::i;:::-;2708:124;;-1:-1:-1;;;2708:124:4;;-1:-1:-1;;;;;2708:10:4;:15;;;;2731:10;;2708:124;;2743:11;;2756:13;;2771:8;;2781:14;;2797:18;;2817:14;;2708:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2474:365;2291:548;;;;;;:::o;2776:368:9:-;2889:27;2918:11;2944:8;2933:43;;;;;;;;;;;;:::i;:::-;2886:90;;-1:-1:-1;2886:90:9;-1:-1:-1;2987:10:9;;-1:-1:-1;3000:27:9;2886:90;2987:10;3000:24;:27::i;:::-;2987:40;;3047:34;3057:11;3070:2;3074:6;3047:9;:34::i;:::-;3038:43;;3126:2;-1:-1:-1;;;;;3096:41:9;3113:11;3096:41;;;3130:6;3096:41;;;;4001:25:19;;3989:2;3974:18;;3855:177;3096:41:9;;;;;;;;2876:268;;;2776:368;;;;:::o;2845:415:4:-;2980:21;3004:28;3017:14;3004:12;:28::i;:::-;3061;;;;3042:16;3061:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;;;2980:52;;-1:-1:-1;3042:16:4;3061:47;;3099:9;;3061:47;:::i;:::-;3042:66;;3140:1;3126:11;:15;3118:54;;;;-1:-1:-1;;;3118:54:4;;34857:2:19;3118:54:4;;;34839:21:19;34896:2;34876:18;;;34869:30;34935:28;34915:18;;;34908:56;34981:18;;3118:54:4;34655:350:19;3118:54:4;3210:11;3190:16;:31;;3182:71;;;;-1:-1:-1;;;3182:71:4;;35212:2:19;3182:71:4;;;35194:21:19;35251:2;35231:18;;;35224:30;35290:29;35270:18;;;35263:57;35337:18;;3182:71:4;35010:351:19;9422:659:13;-1:-1:-1;;;;;9505:21:13;;9497:67;;;;-1:-1:-1;;;9497:67:13;;35568:2:19;9497:67:13;;;35550:21:19;35607:2;35587:18;;;35580:30;35646:34;35626:18;;;35619:62;-1:-1:-1;;;35697:18:19;;;35690:31;35738:19;;9497:67:13;35366:397:19;9497:67:13;-1:-1:-1;;;;;9660:18:13;;9635:22;9660:18;;;:9;:18;;;;;;9696:24;;;;9688:71;;;;-1:-1:-1;;;9688:71:13;;35970:2:19;9688:71:13;;;35952:21:19;36009:2;35989:18;;;35982:30;36048:34;36028:18;;;36021:62;-1:-1:-1;;;36099:18:19;;;36092:32;36141:19;;9688:71:13;35768:398:19;9688:71:13;-1:-1:-1;;;;;9793:18:13;;;;;;:9;:18;;;;;;;;9814:23;;;9793:44;;9930:12;:22;;;;;;;9978:37;4001:25:19;;;9793:18:13;;;9978:37;;3974:18:19;9978:37:13;;;;;;;12180:121;;;:::o;3538:383:4:-;3660:35;;;3636:21;3660:35;;;:22;:35;;;;;;;3709:21;;;3705:123;;-1:-1:-1;616:5:4;3705:123;3861:16;3845:12;:32;;3837:77;;;;-1:-1:-1;;;3837:77:4;;36373:2:19;3837:77:4;;;36355:21:19;;;36392:18;;;36385:30;36451:34;36431:18;;;36424:62;36503:18;;3837:77:4;36171:356:19;11583:354:10;11662:7;11706:11;:6;11715:2;11706:11;:::i;:::-;11689:6;:13;:28;;11681:62;;;;-1:-1:-1;;;11681:62:10;;36734:2:19;11681:62:10;;;36716:21:19;36773:2;36753:18;;;36746:30;-1:-1:-1;;;36792:18:19;;;36785:51;36853:18;;11681:62:10;36532:345:19;11681:62:10;-1:-1:-1;11831:30:10;11847:4;11831:30;11825:37;-1:-1:-1;;;11821:71:10;;;11583:354::o;1211:168:8:-;1306:4;1322:26;1328:10;1340:7;1322:5;:26::i;:::-;-1:-1:-1;1365:7:8;1211:168;-1:-1:-1;;1211:168:8:o;3266:266:4:-;3348:13;3406:2;3381:14;:21;:27;;3373:68;;;;-1:-1:-1;;;3373:68:4;;37084:2:19;3373:68:4;;;37066:21:19;37123:2;37103:18;;;37096:30;37162;37142:18;;;37135:58;37210:18;;3373:68:4;36882:352:19;3373:68:4;-1:-1:-1;3512:2:4;3492:23;3486:30;;3266:266::o;8567:535:13:-;-1:-1:-1;;;;;8650:21:13;;8642:65;;;;-1:-1:-1;;;8642:65:13;;37441:2:19;8642:65:13;;;37423:21:19;37480:2;37460:18;;;37453:30;37519:33;37499:18;;;37492:61;37570:18;;8642:65:13;37239:355:19;8642:65:13;8794:6;8778:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8946:18:13;;;;;;:9;:18;;;;;;;;:28;;;;;;8999:37;4001:25:19;;;8999:37:13;;3974:18:19;8999:37:13;;;;;;;8567:535;;:::o;14:117:19:-;99:6;92:5;88:18;81:5;78:29;68:57;;121:1;118;111:12;136:347;187:8;197:6;251:3;244:4;236:6;232:17;228:27;218:55;;269:1;266;259:12;218:55;-1:-1:-1;292:20:19;;-1:-1:-1;;;;;324:30:19;;321:50;;;367:1;364;357:12;321:50;404:4;396:6;392:17;380:29;;456:3;449:4;440:6;432;428:19;424:30;421:39;418:59;;;473:1;470;463:12;418:59;136:347;;;;;:::o;488:171::-;555:20;;-1:-1:-1;;;;;604:30:19;;594:41;;584:69;;649:1;646;639:12;584:69;488:171;;;:::o;664:923::-;770:6;778;786;794;802;810;863:3;851:9;842:7;838:23;834:33;831:53;;;880:1;877;870:12;831:53;919:9;906:23;938:30;962:5;938:30;:::i;:::-;987:5;-1:-1:-1;1043:2:19;1028:18;;1015:32;-1:-1:-1;;;;;1096:14:19;;;1093:34;;;1123:1;1120;1113:12;1093:34;1162:58;1212:7;1203:6;1192:9;1188:22;1162:58;:::i;:::-;1239:8;;-1:-1:-1;1136:84:19;-1:-1:-1;1136:84:19;;-1:-1:-1;1293:37:19;1326:2;1311:18;;1293:37;:::i;:::-;1283:47;;1383:2;1372:9;1368:18;1355:32;1339:48;;1412:2;1402:8;1399:16;1396:36;;;1428:1;1425;1418:12;1396:36;;1467:60;1519:7;1508:8;1497:9;1493:24;1467:60;:::i;:::-;664:923;;;;-1:-1:-1;664:923:19;;-1:-1:-1;664:923:19;;1546:8;;664:923;-1:-1:-1;;;664:923:19:o;1592:286::-;1650:6;1703:2;1691:9;1682:7;1678:23;1674:32;1671:52;;;1719:1;1716;1709:12;1671:52;1745:23;;-1:-1:-1;;;;;;1797:32:19;;1787:43;;1777:71;;1844:1;1841;1834:12;2075:250;2160:1;2170:113;2184:6;2181:1;2178:13;2170:113;;;2260:11;;;2254:18;2241:11;;;2234:39;2206:2;2199:10;2170:113;;;-1:-1:-1;;2317:1:19;2299:16;;2292:27;2075:250::o;2330:271::-;2372:3;2410:5;2404:12;2437:6;2432:3;2425:19;2453:76;2522:6;2515:4;2510:3;2506:14;2499:4;2492:5;2488:16;2453:76;:::i;:::-;2583:2;2562:15;-1:-1:-1;;2558:29:19;2549:39;;;;2590:4;2545:50;;2330:271;-1:-1:-1;;2330:271:19:o;2606:220::-;2755:2;2744:9;2737:21;2718:4;2775:45;2816:2;2805:9;2801:18;2793:6;2775:45;:::i;2831:245::-;2889:6;2942:2;2930:9;2921:7;2917:23;2913:32;2910:52;;;2958:1;2955;2948:12;2910:52;2997:9;2984:23;3016:30;3040:5;3016:30;:::i;3081:131::-;-1:-1:-1;;;;;3156:31:19;;3146:42;;3136:70;;3202:1;3199;3192:12;3217:315;3285:6;3293;3346:2;3334:9;3325:7;3321:23;3317:32;3314:52;;;3362:1;3359;3352:12;3314:52;3401:9;3388:23;3420:31;3445:5;3420:31;:::i;:::-;3470:5;3522:2;3507:18;;;;3494:32;;-1:-1:-1;;;3217:315:19:o;3537:313::-;3604:6;3612;3665:2;3653:9;3644:7;3640:23;3636:32;3633:52;;;3681:1;3678;3671:12;3633:52;3720:9;3707:23;3739:30;3763:5;3739:30;:::i;4037:456::-;4114:6;4122;4130;4183:2;4171:9;4162:7;4158:23;4154:32;4151:52;;;4199:1;4196;4189:12;4151:52;4238:9;4225:23;4257:31;4282:5;4257:31;:::i;:::-;4307:5;-1:-1:-1;4364:2:19;4349:18;;4336:32;4377:33;4336:32;4377:33;:::i;:::-;4037:456;;4429:7;;-1:-1:-1;;;4483:2:19;4468:18;;;;4455:32;;4037:456::o;4498:160::-;4563:20;;4619:13;;4612:21;4602:32;;4592:60;;4648:1;4645;4638:12;4663:988;4776:6;4784;4792;4800;4808;4816;4824;4877:3;4865:9;4856:7;4852:23;4848:33;4845:53;;;4894:1;4891;4884:12;4845:53;4933:9;4920:23;4952:30;4976:5;4952:30;:::i;:::-;5001:5;-1:-1:-1;5057:2:19;5042:18;;5029:32;-1:-1:-1;;;;;5110:14:19;;;5107:34;;;5137:1;5134;5127:12;5107:34;5176:58;5226:7;5217:6;5206:9;5202:22;5176:58;:::i;:::-;5253:8;;-1:-1:-1;5150:84:19;-1:-1:-1;5335:2:19;5320:18;;5307:32;;-1:-1:-1;5150:84:19;;-1:-1:-1;5358:35:19;5389:2;5374:18;;5358:35;:::i;:::-;5348:45;;5446:3;5435:9;5431:19;5418:33;5402:49;;5476:2;5466:8;5463:16;5460:36;;;5492:1;5489;5482:12;5460:36;;5531:60;5583:7;5572:8;5561:9;5557:24;5531:60;:::i;:::-;4663:988;;;;-1:-1:-1;4663:988:19;;-1:-1:-1;4663:988:19;;;;5505:86;;-1:-1:-1;;;4663:988:19:o;6098:542::-;6176:6;6184;6192;6245:2;6233:9;6224:7;6220:23;6216:32;6213:52;;;6261:1;6258;6251:12;6213:52;6300:9;6287:23;6319:30;6343:5;6319:30;:::i;:::-;6368:5;-1:-1:-1;6424:2:19;6409:18;;6396:32;-1:-1:-1;;;;;6440:30:19;;6437:50;;;6483:1;6480;6473:12;6437:50;6522:58;6572:7;6563:6;6552:9;6548:22;6522:58;:::i;:::-;6098:542;;6599:8;;-1:-1:-1;6496:84:19;;-1:-1:-1;;;;6098:542:19:o;6838:1353::-;6980:6;6988;6996;7004;7012;7020;7028;7036;7044;7097:3;7085:9;7076:7;7072:23;7068:33;7065:53;;;7114:1;7111;7104:12;7065:53;7153:9;7140:23;7172:31;7197:5;7172:31;:::i;:::-;7222:5;-1:-1:-1;7279:2:19;7264:18;;7251:32;7292;7251;7292;:::i;:::-;7343:7;-1:-1:-1;7401:2:19;7386:18;;7373:32;-1:-1:-1;;;;;7454:14:19;;;7451:34;;;7481:1;7478;7471:12;7451:34;7520:58;7570:7;7561:6;7550:9;7546:22;7520:58;:::i;:::-;7597:8;;-1:-1:-1;7494:84:19;-1:-1:-1;7679:2:19;7664:18;;7651:32;;-1:-1:-1;7735:3:19;7720:19;;7707:33;;-1:-1:-1;7749:33:19;7707;7749;:::i;:::-;7801:7;;-1:-1:-1;7860:3:19;7845:19;;7832:33;;7874;7832;7874;:::i;:::-;7926:7;;-1:-1:-1;7986:3:19;7971:19;;7958:33;;8003:16;;;8000:36;;;8032:1;8029;8022:12;8000:36;;8071:60;8123:7;8112:8;8101:9;8097:24;8071:60;:::i;:::-;8045:86;;8150:8;8140:18;;;8177:8;8167:18;;;6838:1353;;;;;;;;;;;:::o;8196:127::-;8257:10;8252:3;8248:20;8245:1;8238:31;8288:4;8285:1;8278:15;8312:4;8309:1;8302:15;8328:275;8399:2;8393:9;8464:2;8445:13;;-1:-1:-1;;8441:27:19;8429:40;;-1:-1:-1;;;;;8484:34:19;;8520:22;;;8481:62;8478:88;;;8546:18;;:::i;:::-;8582:2;8575:22;8328:275;;-1:-1:-1;8328:275:19:o;8608:186::-;8656:4;-1:-1:-1;;;;;8681:6:19;8678:30;8675:56;;;8711:18;;:::i;:::-;-1:-1:-1;8777:2:19;8756:15;-1:-1:-1;;8752:29:19;8783:4;8748:40;;8608:186::o;8799:876::-;8883:6;8891;8899;8952:2;8940:9;8931:7;8927:23;8923:32;8920:52;;;8968:1;8965;8958:12;8920:52;9007:9;8994:23;9026:30;9050:5;9026:30;:::i;:::-;9075:5;-1:-1:-1;9131:2:19;9116:18;;9103:32;-1:-1:-1;;;;;9147:30:19;;9144:50;;;9190:1;9187;9180:12;9144:50;9213:22;;9266:4;9258:13;;9254:27;-1:-1:-1;9244:55:19;;9295:1;9292;9285:12;9244:55;9331:2;9318:16;9356:48;9372:31;9400:2;9372:31;:::i;:::-;9356:48;:::i;:::-;9427:2;9420:5;9413:17;9467:7;9462:2;9457;9453;9449:11;9445:20;9442:33;9439:53;;;9488:1;9485;9478:12;9439:53;9543:2;9538;9534;9530:11;9525:2;9518:5;9514:14;9501:45;9587:1;9582:2;9577;9570:5;9566:14;9562:23;9555:34;9608:5;9598:15;;;;;9632:37;9665:2;9654:9;9650:18;9632:37;:::i;:::-;9622:47;;8799:876;;;;;:::o;9862:247::-;9921:6;9974:2;9962:9;9953:7;9949:23;9945:32;9942:52;;;9990:1;9987;9980:12;9942:52;10029:9;10016:23;10048:31;10073:5;10048:31;:::i;10337:384::-;10403:6;10411;10464:2;10452:9;10443:7;10439:23;10435:32;10432:52;;;10480:1;10477;10470:12;10432:52;10519:9;10506:23;10538:30;10562:5;10538:30;:::i;:::-;10587:5;-1:-1:-1;10644:2:19;10629:18;;10616:32;10657;10616;10657;:::i;:::-;10708:7;10698:17;;;10337:384;;;;;:::o;11168:750::-;11263:6;11271;11279;11287;11295;11348:3;11336:9;11327:7;11323:23;11319:33;11316:53;;;11365:1;11362;11355:12;11316:53;11404:9;11391:23;11423:30;11447:5;11423:30;:::i;:::-;11472:5;-1:-1:-1;11529:2:19;11514:18;;11501:32;11542;11501;11542;:::i;:::-;11593:7;-1:-1:-1;11647:2:19;11632:18;;11619:32;;-1:-1:-1;11702:2:19;11687:18;;11674:32;-1:-1:-1;;;;;11718:30:19;;11715:50;;;11761:1;11758;11751:12;11715:50;11800:58;11850:7;11841:6;11830:9;11826:22;11800:58;:::i;:::-;11168:750;;;;-1:-1:-1;11168:750:19;;-1:-1:-1;11877:8:19;;11774:84;11168:750;-1:-1:-1;;;11168:750:19:o;11923:388::-;11991:6;11999;12052:2;12040:9;12031:7;12027:23;12023:32;12020:52;;;12068:1;12065;12058:12;12020:52;12107:9;12094:23;12126:31;12151:5;12126:31;:::i;:::-;12176:5;-1:-1:-1;12233:2:19;12218:18;;12205:32;12246:33;12205:32;12246:33;:::i;12316:452::-;12391:6;12399;12407;12460:2;12448:9;12439:7;12435:23;12431:32;12428:52;;;12476:1;12473;12466:12;12428:52;12515:9;12502:23;12534:30;12558:5;12534:30;:::i;:::-;12583:5;-1:-1:-1;12640:2:19;12625:18;;12612:32;12653;12612;12653;:::i;12773:180::-;12829:6;12882:2;12870:9;12861:7;12857:23;12853:32;12850:52;;;12898:1;12895;12888:12;12850:52;12921:26;12937:9;12921:26;:::i;12958:594::-;13042:6;13050;13058;13066;13119:3;13107:9;13098:7;13094:23;13090:33;13087:53;;;13136:1;13133;13126:12;13087:53;13175:9;13162:23;13194:30;13218:5;13194:30;:::i;:::-;13243:5;-1:-1:-1;13300:2:19;13285:18;;13272:32;13313;13272;13313;:::i;:::-;13364:7;-1:-1:-1;13423:2:19;13408:18;;13395:32;13436:33;13395:32;13436:33;:::i;:::-;12958:594;;;;-1:-1:-1;13488:7:19;;13542:2;13527:18;13514:32;;-1:-1:-1;;12958:594:19:o;13916:380::-;13995:1;13991:12;;;;14038;;;14059:61;;14113:4;14105:6;14101:17;14091:27;;14059:61;14166:2;14158:6;14155:14;14135:18;14132:38;14129:161;;14212:10;14207:3;14203:20;14200:1;14193:31;14247:4;14244:1;14237:15;14275:4;14272:1;14265:15;14129:161;;13916:380;;;:::o;14301:271::-;14484:6;14476;14471:3;14458:33;14440:3;14510:16;;14535:13;;;14510:16;14301:271;-1:-1:-1;14301:271:19:o;14984:266::-;15072:6;15067:3;15060:19;15124:6;15117:5;15110:4;15105:3;15101:14;15088:43;-1:-1:-1;15176:1:19;15151:16;;;15169:4;15147:27;;;15140:38;;;;15232:2;15211:15;;;-1:-1:-1;;15207:29:19;15198:39;;;15194:50;;14984:266::o;15255:397::-;15478:6;15470;15466:19;15455:9;15448:38;15522:2;15517;15506:9;15502:18;15495:30;15429:4;15542:61;15599:2;15588:9;15584:18;15576:6;15568;15542:61;:::i;:::-;15534:69;;15639:6;15634:2;15623:9;15619:18;15612:34;15255:397;;;;;;;:::o;15657:668::-;15948:6;15936:19;;15918:38;;-1:-1:-1;;;;;15992:32:19;;15987:2;15972:18;;15965:60;16012:3;16056:2;16041:18;;16034:31;;;-1:-1:-1;;16088:46:19;;16114:19;;16106:6;16088:46;:::i;:::-;16184:6;16177:14;16170:22;16165:2;16154:9;16150:18;16143:50;16242:9;16234:6;16230:22;16224:3;16213:9;16209:19;16202:51;16270:49;16312:6;16304;16296;16270:49;:::i;:::-;16262:57;15657:668;-1:-1:-1;;;;;;;;;15657:668:19:o;16330:245::-;16409:6;16417;16470:2;16458:9;16449:7;16445:23;16441:32;16438:52;;;16486:1;16483;16476:12;16438:52;-1:-1:-1;;16509:16:19;;16565:2;16550:18;;;16544:25;16509:16;;16544:25;;-1:-1:-1;16330:245:19:o;16580:127::-;16641:10;16636:3;16632:20;16629:1;16622:31;16672:4;16669:1;16662:15;16696:4;16693:1;16686:15;16712:125;16777:9;;;16798:10;;;16795:36;;;16811:18;;:::i;16842:326::-;17037:6;17029;17025:19;17014:9;17007:38;17081:2;17076;17065:9;17061:18;17054:30;16988:4;17101:61;17158:2;17147:9;17143:18;17135:6;17127;17101:61;:::i;17938:128::-;18005:9;;;18026:11;;;18023:37;;;18040:18;;:::i;18477:360::-;18688:6;18680;18675:3;18662:33;18758:2;18754:15;;;;-1:-1:-1;;18750:53:19;18714:16;;18739:65;;;18828:2;18820:11;;18477:360;-1:-1:-1;18477:360:19:o;18967:544::-;19068:2;19063:3;19060:11;19057:448;;;19104:1;19129:5;19125:2;19118:17;19174:4;19170:2;19160:19;19244:2;19232:10;19228:19;19225:1;19221:27;19215:4;19211:38;19280:4;19268:10;19265:20;19262:47;;;-1:-1:-1;19303:4:19;19262:47;19358:2;19353:3;19349:12;19346:1;19342:20;19336:4;19332:31;19322:41;;19413:82;19431:2;19424:5;19421:13;19413:82;;;19476:17;;;19457:1;19446:13;19413:82;;19687:1348;19811:3;19805:10;-1:-1:-1;;;;;19830:6:19;19827:30;19824:56;;;19860:18;;:::i;:::-;19889:96;19978:6;19938:38;19970:4;19964:11;19938:38;:::i;:::-;19932:4;19889:96;:::i;:::-;20040:4;;20104:2;20093:14;;20121:1;20116:662;;;;20822:1;20839:6;20836:89;;;-1:-1:-1;20891:19:19;;;20885:26;20836:89;-1:-1:-1;;19644:1:19;19640:11;;;19636:24;19632:29;19622:40;19668:1;19664:11;;;19619:57;20938:81;;20086:943;;20116:662;18914:1;18907:14;;;18951:4;18938:18;;-1:-1:-1;;20152:20:19;;;20269:236;20283:7;20280:1;20277:14;20269:236;;;20372:19;;;20366:26;20351:42;;20464:27;;;;20432:1;20420:14;;;;20299:19;;20269:236;;;20273:3;20533:6;20524:7;20521:19;20518:201;;;20594:19;;;20588:26;-1:-1:-1;;20677:1:19;20673:14;;;20689:3;20669:24;20665:37;20661:42;20646:58;20631:74;;20518:201;-1:-1:-1;;;;;20765:1:19;20749:14;;;20745:22;20732:36;;-1:-1:-1;19687:1348:19:o;21040:498::-;21240:4;21269:6;21314:2;21306:6;21302:15;21291:9;21284:34;21366:2;21358:6;21354:15;21349:2;21338:9;21334:18;21327:43;;21406:6;21401:2;21390:9;21386:18;21379:34;21449:3;21444:2;21433:9;21429:18;21422:31;21470:62;21527:3;21516:9;21512:19;21504:6;21496;21470:62;:::i;:::-;21462:70;21040:498;-1:-1:-1;;;;;;;21040:498:19:o;22349:493::-;22598:6;22590;22586:19;22575:9;22568:38;22642:3;22637:2;22626:9;22622:18;22615:31;22549:4;22663:62;22720:3;22709:9;22705:19;22697:6;22689;22663:62;:::i;:::-;-1:-1:-1;;;;;22761:31:19;;;;22756:2;22741:18;;22734:59;-1:-1:-1;22824:2:19;22809:18;22802:34;22655:70;22349:493;-1:-1:-1;;;22349:493:19:o;23560:1202::-;-1:-1:-1;;;;;23677:3:19;23674:27;23671:53;;;23704:18;;:::i;:::-;23733:93;23822:3;23782:38;23814:4;23808:11;23782:38;:::i;:::-;23776:4;23733:93;:::i;:::-;23852:1;23877:2;23872:3;23869:11;23894:1;23889:615;;;;24548:1;24565:3;24562:93;;;-1:-1:-1;24621:19:19;;;24608:33;24562:93;-1:-1:-1;;19644:1:19;19640:11;;;19636:24;19632:29;19622:40;19668:1;19664:11;;;19619:57;24668:78;;23862:894;;23889:615;18914:1;18907:14;;;18951:4;18938:18;;-1:-1:-1;;23925:17:19;;;24025:9;24047:229;24061:7;24058:1;24055:14;24047:229;;;24150:19;;;24137:33;24122:49;;24257:4;24242:20;;;;24210:1;24198:14;;;;24077:12;24047:229;;;24051:3;24304;24295:7;24292:16;24289:159;;;24428:1;24424:6;24418:3;24412;24409:1;24405:11;24401:21;24397:34;24393:39;24380:9;24375:3;24371:19;24358:33;24354:79;24346:6;24339:95;24289:159;;;24491:1;24485:3;24482:1;24478:11;24474:19;24468:4;24461:33;23862:894;;23560:1202;;;:::o;25635:441::-;25688:5;25741:3;25734:4;25726:6;25722:17;25718:27;25708:55;;25759:1;25756;25749:12;25708:55;25788:6;25782:13;25819:48;25835:31;25863:2;25835:31;:::i;25819:48::-;25892:2;25883:7;25876:19;25938:3;25931:4;25926:2;25918:6;25914:15;25910:26;25907:35;25904:55;;;25955:1;25952;25945:12;25904:55;25968:77;26042:2;26035:4;26026:7;26022:18;26015:4;26007:6;26003:17;25968:77;:::i;:::-;26063:7;25635:441;-1:-1:-1;;;;25635:441:19:o;26081:335::-;26160:6;26213:2;26201:9;26192:7;26188:23;26184:32;26181:52;;;26229:1;26226;26219:12;26181:52;26262:9;26256:16;-1:-1:-1;;;;;26287:6:19;26284:30;26281:50;;;26327:1;26324;26317:12;26281:50;26350:60;26402:7;26393:6;26382:9;26378:22;26350:60;:::i;26421:557::-;26678:6;26670;26666:19;26655:9;26648:38;26722:3;26717:2;26706:9;26702:18;26695:31;26629:4;26749:46;26790:3;26779:9;26775:19;26767:6;26749:46;:::i;:::-;-1:-1:-1;;;;;26835:6:19;26831:31;26826:2;26815:9;26811:18;26804:59;26911:9;26903:6;26899:22;26894:2;26883:9;26879:18;26872:50;26939:33;26965:6;26957;26939:33;:::i;29727:371::-;29940:6;29932;29928:19;29917:9;29910:38;29984:2;29979;29968:9;29964:18;29957:30;29891:4;30004:45;30045:2;30034:9;30030:18;30022:6;30004:45;:::i;:::-;29996:53;;30085:6;30080:2;30069:9;30065:18;30058:34;29727:371;;;;;;:::o;30103:289::-;30278:2;30267:9;30260:21;30241:4;30298:45;30339:2;30328:9;30324:18;30316:6;30298:45;:::i;:::-;30290:53;;30379:6;30374:2;30363:9;30359:18;30352:34;30103:289;;;;;:::o;31443:287::-;31572:3;31610:6;31604:13;31626:66;31685:6;31680:3;31673:4;31665:6;31661:17;31626:66;:::i;:::-;31708:16;;;;;31443:287;-1:-1:-1;;31443:287:19:o;31735:719::-;32038:6;32030;32026:19;32015:9;32008:38;32082:3;32077:2;32066:9;32062:18;32055:31;31989:4;32109:46;32150:3;32139:9;32135:19;32127:6;32109:46;:::i;:::-;-1:-1:-1;;;;;32195:6:19;32191:31;32186:2;32175:9;32171:18;32164:59;32271:9;32263:6;32259:22;32254:2;32243:9;32239:18;32232:50;32305:33;32331:6;32323;32305:33;:::i;:::-;32291:47;;32387:9;32379:6;32375:22;32369:3;32358:9;32354:19;32347:51;32415:33;32441:6;32433;32415:33;:::i;:::-;32407:41;31735:719;-1:-1:-1;;;;;;;;31735:719:19:o;33283:840::-;33632:6;33624;33620:19;33609:9;33602:38;33676:3;33671:2;33660:9;33656:18;33649:31;33583:4;33703:46;33744:3;33733:9;33729:19;33721:6;33703:46;:::i;:::-;33797:9;33789:6;33785:22;33780:2;33769:9;33765:18;33758:50;33831:33;33857:6;33849;33831:33;:::i;:::-;-1:-1:-1;;;;;33938:15:19;;;33933:2;33918:18;;33911:43;33991:15;;33985:3;33970:19;;33963:44;34044:22;;;33891:3;34023:19;;34016:51;33817:47;-1:-1:-1;34084:33:19;33817:47;34102:6;34084:33;:::i;34128:522::-;34224:6;34232;34240;34293:2;34281:9;34272:7;34268:23;34264:32;34261:52;;;34309:1;34306;34299:12;34261:52;34341:9;34335:16;34360:30;34384:5;34360:30;:::i;:::-;34458:2;34443:18;;34437:25;34409:5;;-1:-1:-1;;;;;;34474:30:19;;34471:50;;;34517:1;34514;34507:12;34471:50;34540:60;34592:7;34583:6;34572:9;34568:22;34540:60;:::i;:::-;34530:70;;;34640:2;34629:9;34625:18;34619:25;34609:35;;34128:522;;;;;:::o
Swarm Source
ipfs://02df81639d90d406bce18089a8c350910d7d325f503fe2d1795dec4e2ee6f06c
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.