ERC-20
NFT
Overview
Max Total Supply
10,000,000 MULLET
Holders
419 (0.00%)
Market
Price
$0.00 @ 0.000000 FTM
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.00096596632851231 MULLETValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Mullet
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2024-03-21 */ // File: hardhat/console.sol pragma solidity >=0.4.22 <0.9.0; library console { address constant CONSOLE_ADDRESS = 0x000000000000000000636F6e736F6c652e6c6f67; function _sendLogPayloadImplementation(bytes memory payload) internal view { address consoleAddress = CONSOLE_ADDRESS; /// @solidity memory-safe-assembly assembly { pop( staticcall( gas(), consoleAddress, add(payload, 32), mload(payload), 0, 0 ) ) } } function _castToPure( function(bytes memory) internal view fnIn ) internal pure returns (function(bytes memory) pure fnOut) { assembly { fnOut := fnIn } } function _sendLogPayload(bytes memory payload) internal pure { _castToPure(_sendLogPayloadImplementation)(payload); } function log() internal pure { _sendLogPayload(abi.encodeWithSignature("log()")); } function logInt(int256 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(int256)", p0)); } function logUint(uint256 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256)", p0)); } function logString(string memory p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function logBool(bool p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function logAddress(address p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function logBytes(bytes memory p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes)", p0)); } function logBytes1(bytes1 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0)); } function logBytes2(bytes2 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0)); } function logBytes3(bytes3 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0)); } function logBytes4(bytes4 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0)); } function logBytes5(bytes5 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0)); } function logBytes6(bytes6 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0)); } function logBytes7(bytes7 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0)); } function logBytes8(bytes8 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0)); } function logBytes9(bytes9 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0)); } function logBytes10(bytes10 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0)); } function logBytes11(bytes11 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0)); } function logBytes12(bytes12 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0)); } function logBytes13(bytes13 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0)); } function logBytes14(bytes14 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0)); } function logBytes15(bytes15 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0)); } function logBytes16(bytes16 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0)); } function logBytes17(bytes17 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0)); } function logBytes18(bytes18 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0)); } function logBytes19(bytes19 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0)); } function logBytes20(bytes20 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0)); } function logBytes21(bytes21 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0)); } function logBytes22(bytes22 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0)); } function logBytes23(bytes23 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0)); } function logBytes24(bytes24 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0)); } function logBytes25(bytes25 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0)); } function logBytes26(bytes26 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0)); } function logBytes27(bytes27 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0)); } function logBytes28(bytes28 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0)); } function logBytes29(bytes29 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0)); } function logBytes30(bytes30 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0)); } function logBytes31(bytes31 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0)); } function logBytes32(bytes32 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0)); } function log(uint256 p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256)", p0)); } function log(string memory p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function log(bool p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function log(address p0) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function log(uint256 p0, uint256 p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1)); } function log(uint256 p0, string memory p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1)); } function log(uint256 p0, bool p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1)); } function log(uint256 p0, address p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1)); } function log(string memory p0, uint256 p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1)); } function log(string memory p0, string memory p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1)); } function log(string memory p0, bool p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1)); } function log(string memory p0, address p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1)); } function log(bool p0, uint256 p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1)); } function log(bool p0, string memory p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1)); } function log(bool p0, bool p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1)); } function log(bool p0, address p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1)); } function log(address p0, uint256 p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1)); } function log(address p0, string memory p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1)); } function log(address p0, bool p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1)); } function log(address p0, address p1) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1)); } function log(uint256 p0, uint256 p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2)); } function log(uint256 p0, uint256 p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2)); } function log(uint256 p0, uint256 p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2)); } function log(uint256 p0, uint256 p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2)); } function log(uint256 p0, string memory p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2)); } function log(uint256 p0, string memory p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2)); } function log(uint256 p0, string memory p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2)); } function log(uint256 p0, string memory p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2)); } function log(uint256 p0, bool p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2)); } function log(uint256 p0, bool p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2)); } function log(uint256 p0, bool p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2)); } function log(uint256 p0, bool p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2)); } function log(uint256 p0, address p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2)); } function log(uint256 p0, address p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2)); } function log(uint256 p0, address p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2)); } function log(uint256 p0, address p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2)); } function log(string memory p0, uint256 p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2)); } function log(string memory p0, uint256 p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2)); } function log(string memory p0, uint256 p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2)); } function log(string memory p0, uint256 p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2)); } function log(string memory p0, string memory p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2)); } function log(string memory p0, string memory p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2)); } function log(string memory p0, string memory p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2)); } function log(string memory p0, string memory p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2)); } function log(string memory p0, bool p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2)); } function log(string memory p0, bool p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2)); } function log(string memory p0, bool p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2)); } function log(string memory p0, bool p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2)); } function log(string memory p0, address p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2)); } function log(string memory p0, address p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2)); } function log(string memory p0, address p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2)); } function log(string memory p0, address p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2)); } function log(bool p0, uint256 p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2)); } function log(bool p0, uint256 p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2)); } function log(bool p0, uint256 p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2)); } function log(bool p0, uint256 p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2)); } function log(bool p0, string memory p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2)); } function log(bool p0, string memory p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2)); } function log(bool p0, string memory p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2)); } function log(bool p0, string memory p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2)); } function log(bool p0, bool p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2)); } function log(bool p0, bool p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2)); } function log(bool p0, bool p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2)); } function log(bool p0, bool p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2)); } function log(bool p0, address p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2)); } function log(bool p0, address p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2)); } function log(bool p0, address p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2)); } function log(bool p0, address p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2)); } function log(address p0, uint256 p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2)); } function log(address p0, uint256 p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2)); } function log(address p0, uint256 p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2)); } function log(address p0, uint256 p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2)); } function log(address p0, string memory p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2)); } function log(address p0, string memory p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2)); } function log(address p0, string memory p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2)); } function log(address p0, string memory p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2)); } function log(address p0, bool p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2)); } function log(address p0, bool p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2)); } function log(address p0, bool p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2)); } function log(address p0, bool p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2)); } function log(address p0, address p1, uint256 p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2)); } function log(address p0, address p1, string memory p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2)); } function log(address p0, address p1, bool p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2)); } function log(address p0, address p1, address p2) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2)); } function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3)); } function log(uint256 p0, uint256 p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3)); } function log(uint256 p0, string memory p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3)); } function log(uint256 p0, bool p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3)); } function log(uint256 p0, address p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint256 p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3)); } function log(bool p0, uint256 p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3)); } function log(address p0, uint256 p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3)); } function log(address p0, address p1, uint256 p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3)); } function log(address p0, address p1, uint256 p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3)); } function log(address p0, address p1, uint256 p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, uint256 p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, uint256 p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, string memory p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, bool p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, address p3) internal pure { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3)); } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/interfaces/IERC5267.sol // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.0; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); } // File: @openzeppelin/contracts/utils/StorageSlot.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } } // File: @openzeppelin/contracts/utils/ShortStrings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol) pragma solidity ^0.8.8; // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | // | length | 0x BB | type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); /// @solidity memory-safe-assembly assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(_FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } } // File: @openzeppelin/contracts/utils/cryptography/EIP712.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.8; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * _Available since v3.4._ * * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {EIP-5267}. * * _Available since v4.9._ */ function eip712Domain() public view virtual override returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _name.toStringWithFallback(_nameFallback), _version.toStringWithFallback(_versionFallback), block.chainid, address(this), bytes32(0), new uint256[](0) ); } } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol // OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @inheritdoc IERC20Permit */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @inheritdoc IERC20Permit */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @inheritdoc IERC20Permit */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/Legendary.sol /** $MULLET is the first philosophy-driven token on Fantom chain. A symbol of wealth, audacity and perseverance. A light in the darkness of the crypto world. A haven for the rebels and the dreamers. WAGMI ▄▄▄▄███▄▄▄▄ ███ █▄ ▄█ ▄█ ▄████████ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ▀█████████▄ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ▀███▀▀██ ███ ███ ███ ███ ███ ███ ███ ▄███▄▄▄ ███ ▀ ███ ███ ███ ███ ███ ███ ███ ▀▀███▀▀▀ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▄ ███ ███ ███ ███ ███ ███ ███▌ ▄ ███▌ ▄ ███ ███ ███ ▀█ ███ █▀ ████████▀ █████▄▄██ █████▄▄██ ██████████ ▄████▀ Website: https://mullet.money/ Telegram: https://t.me/mullettonftm Twitter: https://twitter.com/mulletOnFtm You can buy and sell $MULLET on Spooky Swap. Buy: https://spooky.fi/#/swap */ pragma solidity ^0.8.20; contract Mullet is ERC20, ERC20Burnable, ERC20Permit, Ownable { // Burn address address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; // Treasury address address public treasuryAddress; // Marketing address address public marketingAddress; // LP address to take taxes address public lpAddress; // Burner address address public burnerAddress; // Staking address address public stakingAddress; // Anti-whale system // // Excluded addresses from antiWhale mapping(address => bool) private _excludedFromAntiWhale; uint256 private constant MAX_HOLDING_PERCENT = 2; // 2% of total supply uint256 private constant MAX_TRANSFER_PERCENT = 1; // 1% of total supply uint256 public buyTaxRate; // % uint256 public sellTaxRate; // % uint256 public treasuryShare; // % on tax amount to send to treasury uint256 public marketingShare; // % on tax amount to send to marketing // Excluded addresses from tax mapping(address => bool) private _isTaxExempt; bool public isTradingEnabled = false; // trading state control constructor( address[] memory addresses, // treasuryAddress, marketingAddress, lpAddress, burnerAddress, stakingAddress uint256[] memory percents // buyTax, sellTax, treasuryshare, marketingshare ) ERC20("Mullet", "MULLET") ERC20Permit("Mullet") Ownable() { require(addresses.length == 5, "Invalid address argument"); require(percents.length == 4, "Invalid percent argument"); require(percents[0] <= 99 && percents[1] <= 99, "Too hight tax"); treasuryAddress = addresses[0]; marketingAddress = addresses[1]; lpAddress = addresses[2]; burnerAddress = addresses[3]; stakingAddress = addresses[4]; buyTaxRate = percents[0]; sellTaxRate = percents[1]; treasuryShare = percents[2]; marketingShare = percents[3]; _excludedFromAntiWhale[treasuryAddress] = true; _excludedFromAntiWhale[marketingAddress] = true; _excludedFromAntiWhale[burnerAddress] = true; _excludedFromAntiWhale[stakingAddress] = true; _excludedFromAntiWhale[msg.sender] = true; _excludedFromAntiWhale[address(0)] = true; _excludedFromAntiWhale[address(this)] = true; _excludedFromAntiWhale[BURN_ADDRESS] = true; _isTaxExempt[treasuryAddress] = true; _isTaxExempt[marketingAddress] = true; _isTaxExempt[msg.sender] = true; _mint(msg.sender, 10000000 * 10 ** decimals()); } function _transfer( address from, address to, uint256 amount ) internal virtual override { if (from == owner()) { super._transfer(from, to, amount); return; } console.log(isTradingEnabled); console.log((!isTradingEnabled && _isTaxExempt[from])); console.log( isTradingEnabled || (!isTradingEnabled && _isTaxExempt[from]) ); require( isTradingEnabled || (!isTradingEnabled && _isTaxExempt[from]), "Trading is disabled" ); if (!_excludedFromAntiWhale[to]) { console.log(to); console.log("is not excluded"); uint256 totalSupply_ = totalSupply(); _checkMaxHolding(to, amount, totalSupply_); _checkMaxTransfer(amount, totalSupply_); } uint256 taxAmount = 0; uint256 transferAmount = amount; if ( (!_isTaxExempt[to] && from == lpAddress) || (!_isTaxExempt[from] && to == lpAddress) ) { console.log("!!! tax !!!"); uint256 taxRate = 0; if (to == lpAddress) { taxRate = sellTaxRate; } else if (from == lpAddress) { taxRate = buyTaxRate; } taxAmount = (amount * taxRate) / 100; transferAmount = amount - taxAmount; uint256 treasuryAmount = (taxAmount * treasuryShare) / 100; uint256 marketingAmount = taxAmount - treasuryAmount; if (treasuryAmount > 0) { console.log("sending to Treasury"); super._transfer(from, treasuryAddress, treasuryAmount); } if (marketingAmount > 0) { console.log("sending to Marketing"); super._transfer(from, marketingAddress, marketingAmount); } } super._transfer(from, to, transferAmount); } // enable trading, cannot go back function enableTrading() public onlyOwner { isTradingEnabled = true; } // Anti-whale functions function addToExcludedFromAntiWhale(address account) public onlyOwner { _excludedFromAntiWhale[account] = true; } function removeFromExcludedFromAntiWhale(address account) public onlyOwner { _excludedFromAntiWhale[account] = false; } function isExcludedFromAntiWhale( address account ) public view returns (bool) { return _excludedFromAntiWhale[account]; } function isTaxExempt(address account) public view returns (bool) { return _isTaxExempt[account]; } function getMaxHoldingPercent() public pure returns (uint256) { return MAX_HOLDING_PERCENT; } function _checkMaxHolding( address to, uint256 amount, uint256 totalSupply_ ) internal view { if (to != address(0) && to != address(this)) { uint256 maxHolding = (totalSupply_ * MAX_HOLDING_PERCENT) / 100; require( balanceOf(to) + amount <= maxHolding, "Anti-Whale: Exceeds maximum holding limit" ); } } function _checkMaxTransfer( uint256 amount, uint256 totalSupply_ ) internal pure { uint256 maxTransfer = (totalSupply_ * MAX_TRANSFER_PERCENT) / 100; require( amount <= maxTransfer, "Anti-Whale: Transfer amount exceeds the maximum transfer amount" ); } // Tax functions function setTaxRates( uint256 newBuyTaxRate, uint256 newSellTaxRate ) public onlyOwner { require(newBuyTaxRate <= 60 && newSellTaxRate <= 60, "Too high tax"); buyTaxRate = newBuyTaxRate; sellTaxRate = newSellTaxRate; } function setTaxExemption(address account, bool exempt) public onlyOwner { _isTaxExempt[account] = exempt; } function setLPAddress(address newLPAddress) public onlyOwner { lpAddress = newLPAddress; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"percents","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","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":"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":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToExcludedFromAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxRate","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":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxHoldingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"address","name":"account","type":"address"}],"name":"isExcludedFromAntiWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isTaxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingShare","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":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromExcludedFromAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newLPAddress","type":"address"}],"name":"setLPAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setTaxExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTaxRate","type":"uint256"},{"internalType":"uint256","name":"newSellTaxRate","type":"uint256"}],"name":"setTaxRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101606040526000601560006101000a81548160ff0219169083151502179055503480156200002d57600080fd5b506040516200595138038062005951833981810160405281019062000053919062001107565b6040518060400160405280600681526020017f4d756c6c65740000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d756c6c657400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d554c4c4554000000000000000000000000000000000000000000000000000081525081600390816200013d9190620013cd565b5080600490816200014f9190620013cd565b5050506200016860058362000a8e60201b90919060201c565b61012081815250506200018660068262000a8e60201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a08181525050620001c562000ae660201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620002236200021762000b4360201b60201c565b62000b4b60201b60201c565b60058251146200026a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002619062001515565b60405180910390fd5b6004815114620002b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a89062001587565b60405180910390fd5b606381600081518110620002ca57620002c9620015a9565b5b602002602001015111158015620003005750606381600181518110620002f557620002f4620015a9565b5b602002602001015111155b62000342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003399062001628565b60405180910390fd5b81600081518110620003595762000358620015a9565b5b6020026020010151600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600181518110620003b857620003b7620015a9565b5b6020026020010151600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600281518110620004175762000416620015a9565b5b6020026020010151600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600381518110620004765762000475620015a9565b5b6020026020010151600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600481518110620004d557620004d4620015a9565b5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600081518110620005345762000533620015a9565b5b602002602001015160108190555080600181518110620005595762000558620015a9565b5b6020026020010151601181905550806002815181106200057e576200057d620015a9565b5b602002602001015160128190555080600381518110620005a357620005a2620015a9565b5b60200260200101516013819055506001600f6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160146000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160146000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000a863362000a5c62000c1160201b60201c565b600a62000a6a9190620017da565b6298968062000a7a91906200182b565b62000c1a60201b60201c565b505062001b0d565b600060208351101562000ab45762000aac8362000d8760201b60201c565b905062000ae0565b8262000ac68362000df460201b60201c565b600001908162000ad79190620013cd565b5060ff60001b90505b92915050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e05161010051463060405160200162000b28959493929190620018b3565b60405160208183030381529060405280519060200120905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c839062001960565b60405180910390fd5b62000ca06000838362000dfe60201b60201c565b806002600082825462000cb4919062001982565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d679190620019bd565b60405180910390a362000d836000838362000e0360201b60201c565b5050565b600080829050601f8151111562000dd757826040517f305a27a900000000000000000000000000000000000000000000000000000000815260040162000dce919062001a47565b60405180910390fd5b80518162000de59062001a9d565b60001c1760001b915050919050565b6000819050919050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000e6c8262000e21565b810181811067ffffffffffffffff8211171562000e8e5762000e8d62000e32565b5b80604052505050565b600062000ea362000e08565b905062000eb1828262000e61565b919050565b600067ffffffffffffffff82111562000ed45762000ed362000e32565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f178262000eea565b9050919050565b62000f298162000f0a565b811462000f3557600080fd5b50565b60008151905062000f498162000f1e565b92915050565b600062000f6662000f608462000eb6565b62000e97565b9050808382526020820190506020840283018581111562000f8c5762000f8b62000ee5565b5b835b8181101562000fb9578062000fa4888262000f38565b84526020840193505060208101905062000f8e565b5050509392505050565b600082601f83011262000fdb5762000fda62000e1c565b5b815162000fed84826020860162000f4f565b91505092915050565b600067ffffffffffffffff82111562001014576200101362000e32565b5b602082029050602081019050919050565b6000819050919050565b6200103a8162001025565b81146200104657600080fd5b50565b6000815190506200105a816200102f565b92915050565b600062001077620010718462000ff6565b62000e97565b905080838252602082019050602084028301858111156200109d576200109c62000ee5565b5b835b81811015620010ca5780620010b5888262001049565b8452602084019350506020810190506200109f565b5050509392505050565b600082601f830112620010ec57620010eb62000e1c565b5b8151620010fe84826020860162001060565b91505092915050565b6000806040838503121562001121576200112062000e12565b5b600083015167ffffffffffffffff81111562001142576200114162000e17565b5b620011508582860162000fc3565b925050602083015167ffffffffffffffff81111562001174576200117362000e17565b5b6200118285828601620010d4565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011df57607f821691505b602082108103620011f557620011f462001197565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200125f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001220565b6200126b868362001220565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620012ae620012a8620012a28462001025565b62001283565b62001025565b9050919050565b6000819050919050565b620012ca836200128d565b620012e2620012d982620012b5565b8484546200122d565b825550505050565b600090565b620012f9620012ea565b62001306818484620012bf565b505050565b5b818110156200132e5762001322600082620012ef565b6001810190506200130c565b5050565b601f8211156200137d576200134781620011fb565b620013528462001210565b8101602085101562001362578190505b6200137a620013718562001210565b8301826200130b565b50505b505050565b600082821c905092915050565b6000620013a26000198460080262001382565b1980831691505092915050565b6000620013bd83836200138f565b9150826002028217905092915050565b620013d8826200118c565b67ffffffffffffffff811115620013f457620013f362000e32565b5b620014008254620011c6565b6200140d82828562001332565b600060209050601f83116001811462001445576000841562001430578287015190505b6200143c8582620013af565b865550620014ac565b601f1984166200145586620011fb565b60005b828110156200147f5784890151825560018201915060208501945060208101905062001458565b868310156200149f57848901516200149b601f8916826200138f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f496e76616c6964206164647265737320617267756d656e740000000000000000600082015250565b6000620014fd601883620014b4565b91506200150a82620014c5565b602082019050919050565b600060208201905081810360008301526200153081620014ee565b9050919050565b7f496e76616c69642070657263656e7420617267756d656e740000000000000000600082015250565b60006200156f601883620014b4565b91506200157c8262001537565b602082019050919050565b60006020820190508181036000830152620015a28162001560565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f6f2068696768742074617800000000000000000000000000000000000000600082015250565b600062001610600d83620014b4565b91506200161d82620015d8565b602082019050919050565b60006020820190508181036000830152620016438162001601565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620016d857808604811115620016b057620016af6200164a565b5b6001851615620016c05780820291505b8081029050620016d08562001679565b945062001690565b94509492505050565b600082620016f35760019050620017c6565b81620017035760009050620017c6565b81600181146200171c576002811462001727576200175d565b6001915050620017c6565b60ff8411156200173c576200173b6200164a565b5b8360020a9150848211156200175657620017556200164a565b5b50620017c6565b5060208310610133831016604e8410600b8410161715620017975782820a9050838111156200179157620017906200164a565b5b620017c6565b620017a6848484600162001686565b92509050818404811115620017c057620017bf6200164a565b5b81810290505b9392505050565b600060ff82169050919050565b6000620017e78262001025565b9150620017f483620017cd565b9250620018237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620016e1565b905092915050565b6000620018388262001025565b9150620018458362001025565b9250828202620018558162001025565b915082820484148315176200186f576200186e6200164a565b5b5092915050565b6000819050919050565b6200188b8162001876565b82525050565b6200189c8162001025565b82525050565b620018ad8162000f0a565b82525050565b600060a082019050620018ca600083018862001880565b620018d9602083018762001880565b620018e8604083018662001880565b620018f7606083018562001891565b620019066080830184620018a2565b9695505050505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001948601f83620014b4565b9150620019558262001910565b602082019050919050565b600060208201905081810360008301526200197b8162001939565b9050919050565b60006200198f8262001025565b91506200199c8362001025565b9250828201905080821115620019b757620019b66200164a565b5b92915050565b6000602082019050620019d4600083018462001891565b92915050565b60005b83811015620019fa578082015181840152602081019050620019dd565b60008484015250505050565b600062001a13826200118c565b62001a1f8185620014b4565b935062001a31818560208601620019da565b62001a3c8162000e21565b840191505092915050565b6000602082019050818103600083015262001a63818462001a06565b905092915050565b600081519050919050565b6000819050602082019050919050565b600062001a94825162001876565b80915050919050565b600062001aaa8262001a6b565b8262001ab68462001a76565b905062001ac38162001a86565b9250602082101562001b065762001b017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080262001220565b831692505b5050919050565b60805160a05160c05160e051610100516101205161014051613de962001b686000396000610bd201526000610b9e015260006125bf0152600061259e01526000611ac601526000611b1c01526000611b450152613de96000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80637a351a1d1161013b578063a9059cbb116100b8578063dd62ed3e1161007c578063dd62ed3e146106d9578063dda09a9e14610709578063e6293e2314610725578063f2fde38b14610743578063fccc28131461075f57610248565b8063a9059cbb14610635578063b64e3c7414610665578063c5f956af14610681578063d505accf1461069f578063d7b4be24146106bb57610248565b806395d89b41116100ff57806395d89b411461058d5780639911ce2b146105ab5780639b4dc8cc146105c9578063a457c2d7146105e7578063a5ece9411461061757610248565b80637a351a1d146104f55780637ecebe001461051157806384b0196e146105415780638a8c523c146105655780638da5cb5b1461056f57610248565b80633644e515116101c957806370a082311161018d57806370a0823114610465578063715018a614610495578063760d595e1461049f5780637796ff37146104bb57806379cc6790146104d957610248565b80633644e515146103c157806339509351146103df57806342966c681461040f5780635cb23e121461042b578063691f224f1461044757610248565b806318160ddd1161021057806318160ddd1461030757806323b872dd1461032557806324024efd14610355578063269f534c14610373578063313ce567146103a357610248565b8063064a59d01461024d57806306fdde031461026b57806309218ee714610289578063095ea7b3146102a757806316c2be6b146102d7575b600080fd5b61025561077d565b60405161026291906129e7565b60405180910390f35b610273610790565b6040516102809190612a92565b60405180910390f35b610291610822565b60405161029e9190612acd565b60405180910390f35b6102c160048036038101906102bc9190612b77565b610828565b6040516102ce91906129e7565b60405180910390f35b6102f160048036038101906102ec9190612bb7565b61084b565b6040516102fe91906129e7565b60405180910390f35b61030f6108a1565b60405161031c9190612acd565b60405180910390f35b61033f600480360381019061033a9190612be4565b6108ab565b60405161034c91906129e7565b60405180910390f35b61035d6108da565b60405161036a9190612acd565b60405180910390f35b61038d60048036038101906103889190612bb7565b6108e0565b60405161039a91906129e7565b60405180910390f35b6103ab610936565b6040516103b89190612c53565b60405180910390f35b6103c961093f565b6040516103d69190612c87565b60405180910390f35b6103f960048036038101906103f49190612b77565b61094e565b60405161040691906129e7565b60405180910390f35b61042960048036038101906104249190612ca2565b610985565b005b61044560048036038101906104409190612ccf565b610999565b005b61044f610a04565b60405161045c9190612acd565b60405180910390f35b61047f600480360381019061047a9190612bb7565b610a0a565b60405161048c9190612acd565b60405180910390f35b61049d610a52565b005b6104b960048036038101906104b49190612bb7565b610a66565b005b6104c3610ac9565b6040516104d09190612acd565b60405180910390f35b6104f360048036038101906104ee9190612b77565b610acf565b005b61050f600480360381019061050a9190612bb7565b610aef565b005b61052b60048036038101906105269190612bb7565b610b3b565b6040516105389190612acd565b60405180910390f35b610549610b8b565b60405161055c9796959493929190612e17565b60405180910390f35b61056d610c8d565b005b610577610cb2565b6040516105849190612e9b565b60405180910390f35b610595610cdc565b6040516105a29190612a92565b60405180910390f35b6105b3610d6e565b6040516105c09190612acd565b60405180910390f35b6105d1610d77565b6040516105de9190612e9b565b60405180910390f35b61060160048036038101906105fc9190612b77565b610d9d565b60405161060e91906129e7565b60405180910390f35b61061f610e14565b60405161062c9190612e9b565b60405180910390f35b61064f600480360381019061064a9190612b77565b610e3a565b60405161065c91906129e7565b60405180910390f35b61067f600480360381019061067a9190612ee2565b610e5d565b005b610689610ec0565b6040516106969190612e9b565b60405180910390f35b6106b960048036038101906106b49190612f7a565b610ee6565b005b6106c3611028565b6040516106d09190612e9b565b60405180910390f35b6106f360048036038101906106ee919061301c565b61104e565b6040516107009190612acd565b60405180910390f35b610723600480360381019061071e9190612bb7565b6110d5565b005b61072d611138565b60405161073a9190612e9b565b60405180910390f35b61075d60048036038101906107589190612bb7565b61115e565b005b6107676111e1565b6040516107749190612e9b565b60405180910390f35b601560009054906101000a900460ff1681565b60606003805461079f9061308b565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb9061308b565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b5050505050905090565b60135481565b6000806108336111e7565b90506108408185856111ef565b600191505092915050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600254905090565b6000806108b66111e7565b90506108c38582856113b8565b6108ce858585611444565b60019150509392505050565b60115481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006012905090565b6000610949611ac2565b905090565b6000806109596111e7565b905061097a81858561096b858961104e565b61097591906130eb565b6111ef565b600191505092915050565b6109966109906111e7565b82611b79565b50565b6109a1611d46565b603c82111580156109b35750603c8111155b6109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e99061316b565b60405180910390fd5b81601081905550806011819055505050565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a5a611d46565b610a646000611dc4565b565b610a6e611d46565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60125481565b610ae182610adb6111e7565b836113b8565b610aeb8282611b79565b5050565b610af7611d46565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b84600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e8a565b9050919050565b600060608060008060006060610bcb60057f0000000000000000000000000000000000000000000000000000000000000000611e9890919063ffffffff16565b610bff60067f0000000000000000000000000000000000000000000000000000000000000000611e9890919063ffffffff16565b46306000801b600067ffffffffffffffff811115610c2057610c1f61318b565b5b604051908082528060200260200182016040528015610c4e5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b610c95611d46565b6001601560006101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ceb9061308b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d179061308b565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b5050505050905090565b60006002905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610da86111e7565b90506000610db6828661104e565b905083811015610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061322c565b60405180910390fd5b610e0882868684036111ef565b60019250505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610e456111e7565b9050610e52818585611444565b600191505092915050565b610e65611d46565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b83421115610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613298565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610f588c611f48565b89604051602001610f6e969594939291906132b8565b6040516020818303038152906040528051906020012090506000610f9182611fa6565b90506000610fa182878787611fc0565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890613365565b60405180910390fd5b61101c8a8a8a6111ef565b50505050505050505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110dd611d46565b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611166611d46565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906133f7565b60405180910390fd5b6111de81611dc4565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613489565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061351b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113ab9190612acd565b60405180910390a3505050565b60006113c4848461104e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461143e5781811015611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613587565b60405180910390fd5b61143d84848484036111ef565b5b50505050565b61144c610cb2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361148e57611489838383611feb565b611abd565b6114a6601560009054906101000a900460ff16612261565b611514601560009054906101000a900460ff1615801561150f5750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612261565b611599601560009054906101000a900460ff16806115945750601560009054906101000a900460ff161580156115935750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b612261565b601560009054906101000a900460ff16806116165750601560009054906101000a900460ff161580156116155750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c906135f3565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611710576116af826122fa565b6116ed6040518060400160405280600f81526020017f6973206e6f74206578636c756465640000000000000000000000000000000000815250612393565b60006116f76108a1565b905061170483838361242c565b61170e8282612514565b505b600080829050601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117bd5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061186b5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561186a5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b5b15611aaf576118ae6040518060400160405280600b81526020017f2121212074617820212121000000000000000000000000000000000000000000815250612393565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361190f57601154905061196b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361196a5760105490505b5b606481856119799190613613565b6119839190613684565b9250828461199191906136b5565b915060006064601254856119a59190613613565b6119af9190613684565b9050600081856119bf91906136b5565b90506000821115611a3657611a086040518060400160405280601381526020017f73656e64696e6720746f20547265617375727900000000000000000000000000815250612393565b611a3588600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611feb565b5b6000811115611aab57611a7d6040518060400160405280601481526020017f73656e64696e6720746f204d61726b6574696e67000000000000000000000000815250612393565b611aaa88600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611feb565b5b5050505b611aba858583611feb565b50505b505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015611b3e57507f000000000000000000000000000000000000000000000000000000000000000046145b15611b6b577f00000000000000000000000000000000000000000000000000000000000000009050611b76565b611b73612579565b90505b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf9061375b565b60405180910390fd5b611bf48260008361260f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c71906137ed565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d2d9190612acd565b60405180910390a3611d4183600084612614565b505050565b611d4e6111e7565b73ffffffffffffffffffffffffffffffffffffffff16611d6c610cb2565b73ffffffffffffffffffffffffffffffffffffffff1614611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613859565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b606060ff60001b8314611eb557611eae83612619565b9050611f42565b818054611ec19061308b565b80601f0160208091040260200160405190810160405280929190818152602001828054611eed9061308b565b8015611f3a5780601f10611f0f57610100808354040283529160200191611f3a565b820191906000526020600020905b815481529060010190602001808311611f1d57829003601f168201915b505050505090505b92915050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611f9581611e8a565b9150611fa08161268d565b50919050565b6000611fb9611fb3611ac2565b836126a3565b9050919050565b6000806000611fd1878787876126e4565b91509150611fde816127c6565b8192505050949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361205a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612051906138eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c09061397d565b60405180910390fd5b6120d483838361260f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190613a0f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122489190612acd565b60405180910390a361225b848484612614565b50505050565b6122f78160405160240161227591906129e7565b6040516020818303038152906040527f32458eed000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061292c565b50565b6123908160405160240161230e9190612e9b565b6040516020818303038152906040527f2c2ecbc2000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061292c565b50565b612429816040516024016123a79190612a92565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061292c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561249557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561250f57600060646002836124ab9190613613565b6124b59190613684565b905080836124c286610a0a565b6124cc91906130eb565b111561250d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250490613aa1565b60405180910390fd5b505b505050565b600060646001836125259190613613565b61252f9190613684565b905080831115612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90613b33565b60405180910390fd5b505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000046306040516020016125f4959493929190613b53565b60405160208183030381529060405280519060200120905090565b505050565b505050565b6060600061262683612946565b90506000602067ffffffffffffffff8111156126455761264461318b565b5b6040519080825280601f01601f1916602001820160405280156126775781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b6001816000016000828254019250508190555050565b60006040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561271f5760006003915091506127bd565b6000600187878787604051600081526020016040526040516127449493929190613ba6565b6020604051602081039080840390855afa158015612766573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127b4576000600192509250506127bd565b80600092509250505b94509492505050565b600060048111156127da576127d9613beb565b5b8160048111156127ed576127ec613beb565b5b0315612929576001600481111561280757612806613beb565b5b81600481111561281a57612819613beb565b5b0361285a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285190613c66565b60405180910390fd5b6002600481111561286e5761286d613beb565b5b81600481111561288157612880613beb565b5b036128c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b890613cd2565b60405180910390fd5b600360048111156128d5576128d4613beb565b5b8160048111156128e8576128e7613beb565b5b03612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f90613d64565b60405180910390fd5b5b50565b6129438161293b6129966129b7565b63ffffffff16565b50565b60008060ff8360001c169050601f81111561298d576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b6129c2819050919050565b6129ca613d84565b565b60008115159050919050565b6129e1816129cc565b82525050565b60006020820190506129fc60008301846129d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a3c578082015181840152602081019050612a21565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a6482612a02565b612a6e8185612a0d565b9350612a7e818560208601612a1e565b612a8781612a48565b840191505092915050565b60006020820190508181036000830152612aac8184612a59565b905092915050565b6000819050919050565b612ac781612ab4565b82525050565b6000602082019050612ae26000830184612abe565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b1882612aed565b9050919050565b612b2881612b0d565b8114612b3357600080fd5b50565b600081359050612b4581612b1f565b92915050565b612b5481612ab4565b8114612b5f57600080fd5b50565b600081359050612b7181612b4b565b92915050565b60008060408385031215612b8e57612b8d612ae8565b5b6000612b9c85828601612b36565b9250506020612bad85828601612b62565b9150509250929050565b600060208284031215612bcd57612bcc612ae8565b5b6000612bdb84828501612b36565b91505092915050565b600080600060608486031215612bfd57612bfc612ae8565b5b6000612c0b86828701612b36565b9350506020612c1c86828701612b36565b9250506040612c2d86828701612b62565b9150509250925092565b600060ff82169050919050565b612c4d81612c37565b82525050565b6000602082019050612c686000830184612c44565b92915050565b6000819050919050565b612c8181612c6e565b82525050565b6000602082019050612c9c6000830184612c78565b92915050565b600060208284031215612cb857612cb7612ae8565b5b6000612cc684828501612b62565b91505092915050565b60008060408385031215612ce657612ce5612ae8565b5b6000612cf485828601612b62565b9250506020612d0585828601612b62565b9150509250929050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b612d4481612d0f565b82525050565b612d5381612b0d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d8e81612ab4565b82525050565b6000612da08383612d85565b60208301905092915050565b6000602082019050919050565b6000612dc482612d59565b612dce8185612d64565b9350612dd983612d75565b8060005b83811015612e0a578151612df18882612d94565b9750612dfc83612dac565b925050600181019050612ddd565b5085935050505092915050565b600060e082019050612e2c600083018a612d3b565b8181036020830152612e3e8189612a59565b90508181036040830152612e528188612a59565b9050612e616060830187612abe565b612e6e6080830186612d4a565b612e7b60a0830185612c78565b81810360c0830152612e8d8184612db9565b905098975050505050505050565b6000602082019050612eb06000830184612d4a565b92915050565b612ebf816129cc565b8114612eca57600080fd5b50565b600081359050612edc81612eb6565b92915050565b60008060408385031215612ef957612ef8612ae8565b5b6000612f0785828601612b36565b9250506020612f1885828601612ecd565b9150509250929050565b612f2b81612c37565b8114612f3657600080fd5b50565b600081359050612f4881612f22565b92915050565b612f5781612c6e565b8114612f6257600080fd5b50565b600081359050612f7481612f4e565b92915050565b600080600080600080600060e0888a031215612f9957612f98612ae8565b5b6000612fa78a828b01612b36565b9750506020612fb88a828b01612b36565b9650506040612fc98a828b01612b62565b9550506060612fda8a828b01612b62565b9450506080612feb8a828b01612f39565b93505060a0612ffc8a828b01612f65565b92505060c061300d8a828b01612f65565b91505092959891949750929550565b6000806040838503121561303357613032612ae8565b5b600061304185828601612b36565b925050602061305285828601612b36565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130a357607f821691505b6020821081036130b6576130b561305c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f682612ab4565b915061310183612ab4565b9250828201905080821115613119576131186130bc565b5b92915050565b7f546f6f2068696768207461780000000000000000000000000000000000000000600082015250565b6000613155600c83612a0d565b91506131608261311f565b602082019050919050565b6000602082019050818103600083015261318481613148565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613216602583612a0d565b9150613221826131ba565b604082019050919050565b6000602082019050818103600083015261324581613209565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000613282601d83612a0d565b915061328d8261324c565b602082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b600060c0820190506132cd6000830189612c78565b6132da6020830188612d4a565b6132e76040830187612d4a565b6132f46060830186612abe565b6133016080830185612abe565b61330e60a0830184612abe565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b600061334f601e83612a0d565b915061335a82613319565b602082019050919050565b6000602082019050818103600083015261337e81613342565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133e1602683612a0d565b91506133ec82613385565b604082019050919050565b60006020820190508181036000830152613410816133d4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613473602483612a0d565b915061347e82613417565b604082019050919050565b600060208201905081810360008301526134a281613466565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613505602283612a0d565b9150613510826134a9565b604082019050919050565b60006020820190508181036000830152613534816134f8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613571601d83612a0d565b915061357c8261353b565b602082019050919050565b600060208201905081810360008301526135a081613564565b9050919050565b7f54726164696e672069732064697361626c656400000000000000000000000000600082015250565b60006135dd601383612a0d565b91506135e8826135a7565b602082019050919050565b6000602082019050818103600083015261360c816135d0565b9050919050565b600061361e82612ab4565b915061362983612ab4565b925082820261363781612ab4565b9150828204841483151761364e5761364d6130bc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061368f82612ab4565b915061369a83612ab4565b9250826136aa576136a9613655565b5b828204905092915050565b60006136c082612ab4565b91506136cb83612ab4565b92508282039050818111156136e3576136e26130bc565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613745602183612a0d565b9150613750826136e9565b604082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006137d7602283612a0d565b91506137e28261377b565b604082019050919050565b60006020820190508181036000830152613806816137ca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613843602083612a0d565b915061384e8261380d565b602082019050919050565b6000602082019050818103600083015261387281613836565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006138d5602583612a0d565b91506138e082613879565b604082019050919050565b60006020820190508181036000830152613904816138c8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613967602383612a0d565b91506139728261390b565b604082019050919050565b600060208201905081810360008301526139968161395a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006139f9602683612a0d565b9150613a048261399d565b604082019050919050565b60006020820190508181036000830152613a28816139ec565b9050919050565b7f416e74692d5768616c653a2045786365656473206d6178696d756d20686f6c6460008201527f696e67206c696d69740000000000000000000000000000000000000000000000602082015250565b6000613a8b602983612a0d565b9150613a9682613a2f565b604082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f416e74692d5768616c653a205472616e7366657220616d6f756e74206578636560008201527f65647320746865206d6178696d756d207472616e7366657220616d6f756e7400602082015250565b6000613b1d603f83612a0d565b9150613b2882613ac1565b604082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b600060a082019050613b686000830188612c78565b613b756020830187612c78565b613b826040830186612c78565b613b8f6060830185612abe565b613b9c6080830184612d4a565b9695505050505050565b6000608082019050613bbb6000830187612c78565b613bc86020830186612c44565b613bd56040830185612c78565b613be26060830184612c78565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613c50601883612a0d565b9150613c5b82613c1a565b602082019050919050565b60006020820190508181036000830152613c7f81613c43565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613cbc601f83612a0d565b9150613cc782613c86565b602082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4e602283612a0d565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fdfea2646970667358221220fa3038fb26236a1706e941fccb33aaa92dcb29a7318af665c7eec268783aad4264736f6c6343000818003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000500000000000000000000000027707a88e2f3acd71fdc3f40a31fff102d5083a5000000000000000000000000bf2b7dfe9a1c26922f435196cd0a4a6a3f2ecbf7000000000000000000000000a6ad18c2ac47803e193f75c3677b14bf19b9488300000000000000000000000095db7a616ff625499aa58f06396eef7b48849216000000000000000000000000b49c4751a9d20c070eb4f7f320d74da1d5d1539b00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102485760003560e01c80637a351a1d1161013b578063a9059cbb116100b8578063dd62ed3e1161007c578063dd62ed3e146106d9578063dda09a9e14610709578063e6293e2314610725578063f2fde38b14610743578063fccc28131461075f57610248565b8063a9059cbb14610635578063b64e3c7414610665578063c5f956af14610681578063d505accf1461069f578063d7b4be24146106bb57610248565b806395d89b41116100ff57806395d89b411461058d5780639911ce2b146105ab5780639b4dc8cc146105c9578063a457c2d7146105e7578063a5ece9411461061757610248565b80637a351a1d146104f55780637ecebe001461051157806384b0196e146105415780638a8c523c146105655780638da5cb5b1461056f57610248565b80633644e515116101c957806370a082311161018d57806370a0823114610465578063715018a614610495578063760d595e1461049f5780637796ff37146104bb57806379cc6790146104d957610248565b80633644e515146103c157806339509351146103df57806342966c681461040f5780635cb23e121461042b578063691f224f1461044757610248565b806318160ddd1161021057806318160ddd1461030757806323b872dd1461032557806324024efd14610355578063269f534c14610373578063313ce567146103a357610248565b8063064a59d01461024d57806306fdde031461026b57806309218ee714610289578063095ea7b3146102a757806316c2be6b146102d7575b600080fd5b61025561077d565b60405161026291906129e7565b60405180910390f35b610273610790565b6040516102809190612a92565b60405180910390f35b610291610822565b60405161029e9190612acd565b60405180910390f35b6102c160048036038101906102bc9190612b77565b610828565b6040516102ce91906129e7565b60405180910390f35b6102f160048036038101906102ec9190612bb7565b61084b565b6040516102fe91906129e7565b60405180910390f35b61030f6108a1565b60405161031c9190612acd565b60405180910390f35b61033f600480360381019061033a9190612be4565b6108ab565b60405161034c91906129e7565b60405180910390f35b61035d6108da565b60405161036a9190612acd565b60405180910390f35b61038d60048036038101906103889190612bb7565b6108e0565b60405161039a91906129e7565b60405180910390f35b6103ab610936565b6040516103b89190612c53565b60405180910390f35b6103c961093f565b6040516103d69190612c87565b60405180910390f35b6103f960048036038101906103f49190612b77565b61094e565b60405161040691906129e7565b60405180910390f35b61042960048036038101906104249190612ca2565b610985565b005b61044560048036038101906104409190612ccf565b610999565b005b61044f610a04565b60405161045c9190612acd565b60405180910390f35b61047f600480360381019061047a9190612bb7565b610a0a565b60405161048c9190612acd565b60405180910390f35b61049d610a52565b005b6104b960048036038101906104b49190612bb7565b610a66565b005b6104c3610ac9565b6040516104d09190612acd565b60405180910390f35b6104f360048036038101906104ee9190612b77565b610acf565b005b61050f600480360381019061050a9190612bb7565b610aef565b005b61052b60048036038101906105269190612bb7565b610b3b565b6040516105389190612acd565b60405180910390f35b610549610b8b565b60405161055c9796959493929190612e17565b60405180910390f35b61056d610c8d565b005b610577610cb2565b6040516105849190612e9b565b60405180910390f35b610595610cdc565b6040516105a29190612a92565b60405180910390f35b6105b3610d6e565b6040516105c09190612acd565b60405180910390f35b6105d1610d77565b6040516105de9190612e9b565b60405180910390f35b61060160048036038101906105fc9190612b77565b610d9d565b60405161060e91906129e7565b60405180910390f35b61061f610e14565b60405161062c9190612e9b565b60405180910390f35b61064f600480360381019061064a9190612b77565b610e3a565b60405161065c91906129e7565b60405180910390f35b61067f600480360381019061067a9190612ee2565b610e5d565b005b610689610ec0565b6040516106969190612e9b565b60405180910390f35b6106b960048036038101906106b49190612f7a565b610ee6565b005b6106c3611028565b6040516106d09190612e9b565b60405180910390f35b6106f360048036038101906106ee919061301c565b61104e565b6040516107009190612acd565b60405180910390f35b610723600480360381019061071e9190612bb7565b6110d5565b005b61072d611138565b60405161073a9190612e9b565b60405180910390f35b61075d60048036038101906107589190612bb7565b61115e565b005b6107676111e1565b6040516107749190612e9b565b60405180910390f35b601560009054906101000a900460ff1681565b60606003805461079f9061308b565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb9061308b565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b5050505050905090565b60135481565b6000806108336111e7565b90506108408185856111ef565b600191505092915050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600254905090565b6000806108b66111e7565b90506108c38582856113b8565b6108ce858585611444565b60019150509392505050565b60115481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006012905090565b6000610949611ac2565b905090565b6000806109596111e7565b905061097a81858561096b858961104e565b61097591906130eb565b6111ef565b600191505092915050565b6109966109906111e7565b82611b79565b50565b6109a1611d46565b603c82111580156109b35750603c8111155b6109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e99061316b565b60405180910390fd5b81601081905550806011819055505050565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a5a611d46565b610a646000611dc4565b565b610a6e611d46565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60125481565b610ae182610adb6111e7565b836113b8565b610aeb8282611b79565b5050565b610af7611d46565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b84600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e8a565b9050919050565b600060608060008060006060610bcb60057f4d756c6c65740000000000000000000000000000000000000000000000000006611e9890919063ffffffff16565b610bff60067f3100000000000000000000000000000000000000000000000000000000000001611e9890919063ffffffff16565b46306000801b600067ffffffffffffffff811115610c2057610c1f61318b565b5b604051908082528060200260200182016040528015610c4e5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b610c95611d46565b6001601560006101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ceb9061308b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d179061308b565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b5050505050905090565b60006002905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610da86111e7565b90506000610db6828661104e565b905083811015610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061322c565b60405180910390fd5b610e0882868684036111ef565b60019250505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610e456111e7565b9050610e52818585611444565b600191505092915050565b610e65611d46565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b83421115610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613298565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610f588c611f48565b89604051602001610f6e969594939291906132b8565b6040516020818303038152906040528051906020012090506000610f9182611fa6565b90506000610fa182878787611fc0565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890613365565b60405180910390fd5b61101c8a8a8a6111ef565b50505050505050505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110dd611d46565b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611166611d46565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906133f7565b60405180910390fd5b6111de81611dc4565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613489565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061351b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113ab9190612acd565b60405180910390a3505050565b60006113c4848461104e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461143e5781811015611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613587565b60405180910390fd5b61143d84848484036111ef565b5b50505050565b61144c610cb2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361148e57611489838383611feb565b611abd565b6114a6601560009054906101000a900460ff16612261565b611514601560009054906101000a900460ff1615801561150f5750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612261565b611599601560009054906101000a900460ff16806115945750601560009054906101000a900460ff161580156115935750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b612261565b601560009054906101000a900460ff16806116165750601560009054906101000a900460ff161580156116155750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c906135f3565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611710576116af826122fa565b6116ed6040518060400160405280600f81526020017f6973206e6f74206578636c756465640000000000000000000000000000000000815250612393565b60006116f76108a1565b905061170483838361242c565b61170e8282612514565b505b600080829050601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117bd5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061186b5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561186a5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b5b15611aaf576118ae6040518060400160405280600b81526020017f2121212074617820212121000000000000000000000000000000000000000000815250612393565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361190f57601154905061196b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361196a5760105490505b5b606481856119799190613613565b6119839190613684565b9250828461199191906136b5565b915060006064601254856119a59190613613565b6119af9190613684565b9050600081856119bf91906136b5565b90506000821115611a3657611a086040518060400160405280601381526020017f73656e64696e6720746f20547265617375727900000000000000000000000000815250612393565b611a3588600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611feb565b5b6000811115611aab57611a7d6040518060400160405280601481526020017f73656e64696e6720746f204d61726b6574696e67000000000000000000000000815250612393565b611aaa88600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611feb565b5b5050505b611aba858583611feb565b50505b505050565b60007f0000000000000000000000009e91a31a7a8a33b645855c5af018882ef1a32c3a73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015611b3e57507f00000000000000000000000000000000000000000000000000000000000000fa46145b15611b6b577fe654f4e8defade8f40796d4782d189560463cbc9464a5a0e2ce41eca8e33a22a9050611b76565b611b73612579565b90505b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf9061375b565b60405180910390fd5b611bf48260008361260f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c71906137ed565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d2d9190612acd565b60405180910390a3611d4183600084612614565b505050565b611d4e6111e7565b73ffffffffffffffffffffffffffffffffffffffff16611d6c610cb2565b73ffffffffffffffffffffffffffffffffffffffff1614611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613859565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b606060ff60001b8314611eb557611eae83612619565b9050611f42565b818054611ec19061308b565b80601f0160208091040260200160405190810160405280929190818152602001828054611eed9061308b565b8015611f3a5780601f10611f0f57610100808354040283529160200191611f3a565b820191906000526020600020905b815481529060010190602001808311611f1d57829003601f168201915b505050505090505b92915050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611f9581611e8a565b9150611fa08161268d565b50919050565b6000611fb9611fb3611ac2565b836126a3565b9050919050565b6000806000611fd1878787876126e4565b91509150611fde816127c6565b8192505050949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361205a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612051906138eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c09061397d565b60405180910390fd5b6120d483838361260f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190613a0f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122489190612acd565b60405180910390a361225b848484612614565b50505050565b6122f78160405160240161227591906129e7565b6040516020818303038152906040527f32458eed000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061292c565b50565b6123908160405160240161230e9190612e9b565b6040516020818303038152906040527f2c2ecbc2000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061292c565b50565b612429816040516024016123a79190612a92565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061292c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561249557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561250f57600060646002836124ab9190613613565b6124b59190613684565b905080836124c286610a0a565b6124cc91906130eb565b111561250d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250490613aa1565b60405180910390fd5b505b505050565b600060646001836125259190613613565b61252f9190613684565b905080831115612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90613b33565b60405180910390fd5b505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fd42653df0c28329a60d09f94acbdb8d50b2d18d49c84d4a6807ad38e5058c70e7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646306040516020016125f4959493929190613b53565b60405160208183030381529060405280519060200120905090565b505050565b505050565b6060600061262683612946565b90506000602067ffffffffffffffff8111156126455761264461318b565b5b6040519080825280601f01601f1916602001820160405280156126775781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b6001816000016000828254019250508190555050565b60006040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561271f5760006003915091506127bd565b6000600187878787604051600081526020016040526040516127449493929190613ba6565b6020604051602081039080840390855afa158015612766573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127b4576000600192509250506127bd565b80600092509250505b94509492505050565b600060048111156127da576127d9613beb565b5b8160048111156127ed576127ec613beb565b5b0315612929576001600481111561280757612806613beb565b5b81600481111561281a57612819613beb565b5b0361285a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285190613c66565b60405180910390fd5b6002600481111561286e5761286d613beb565b5b81600481111561288157612880613beb565b5b036128c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b890613cd2565b60405180910390fd5b600360048111156128d5576128d4613beb565b5b8160048111156128e8576128e7613beb565b5b03612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f90613d64565b60405180910390fd5b5b50565b6129438161293b6129966129b7565b63ffffffff16565b50565b60008060ff8360001c169050601f81111561298d576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b6129c2819050919050565b6129ca613d84565b565b60008115159050919050565b6129e1816129cc565b82525050565b60006020820190506129fc60008301846129d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a3c578082015181840152602081019050612a21565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a6482612a02565b612a6e8185612a0d565b9350612a7e818560208601612a1e565b612a8781612a48565b840191505092915050565b60006020820190508181036000830152612aac8184612a59565b905092915050565b6000819050919050565b612ac781612ab4565b82525050565b6000602082019050612ae26000830184612abe565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b1882612aed565b9050919050565b612b2881612b0d565b8114612b3357600080fd5b50565b600081359050612b4581612b1f565b92915050565b612b5481612ab4565b8114612b5f57600080fd5b50565b600081359050612b7181612b4b565b92915050565b60008060408385031215612b8e57612b8d612ae8565b5b6000612b9c85828601612b36565b9250506020612bad85828601612b62565b9150509250929050565b600060208284031215612bcd57612bcc612ae8565b5b6000612bdb84828501612b36565b91505092915050565b600080600060608486031215612bfd57612bfc612ae8565b5b6000612c0b86828701612b36565b9350506020612c1c86828701612b36565b9250506040612c2d86828701612b62565b9150509250925092565b600060ff82169050919050565b612c4d81612c37565b82525050565b6000602082019050612c686000830184612c44565b92915050565b6000819050919050565b612c8181612c6e565b82525050565b6000602082019050612c9c6000830184612c78565b92915050565b600060208284031215612cb857612cb7612ae8565b5b6000612cc684828501612b62565b91505092915050565b60008060408385031215612ce657612ce5612ae8565b5b6000612cf485828601612b62565b9250506020612d0585828601612b62565b9150509250929050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b612d4481612d0f565b82525050565b612d5381612b0d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d8e81612ab4565b82525050565b6000612da08383612d85565b60208301905092915050565b6000602082019050919050565b6000612dc482612d59565b612dce8185612d64565b9350612dd983612d75565b8060005b83811015612e0a578151612df18882612d94565b9750612dfc83612dac565b925050600181019050612ddd565b5085935050505092915050565b600060e082019050612e2c600083018a612d3b565b8181036020830152612e3e8189612a59565b90508181036040830152612e528188612a59565b9050612e616060830187612abe565b612e6e6080830186612d4a565b612e7b60a0830185612c78565b81810360c0830152612e8d8184612db9565b905098975050505050505050565b6000602082019050612eb06000830184612d4a565b92915050565b612ebf816129cc565b8114612eca57600080fd5b50565b600081359050612edc81612eb6565b92915050565b60008060408385031215612ef957612ef8612ae8565b5b6000612f0785828601612b36565b9250506020612f1885828601612ecd565b9150509250929050565b612f2b81612c37565b8114612f3657600080fd5b50565b600081359050612f4881612f22565b92915050565b612f5781612c6e565b8114612f6257600080fd5b50565b600081359050612f7481612f4e565b92915050565b600080600080600080600060e0888a031215612f9957612f98612ae8565b5b6000612fa78a828b01612b36565b9750506020612fb88a828b01612b36565b9650506040612fc98a828b01612b62565b9550506060612fda8a828b01612b62565b9450506080612feb8a828b01612f39565b93505060a0612ffc8a828b01612f65565b92505060c061300d8a828b01612f65565b91505092959891949750929550565b6000806040838503121561303357613032612ae8565b5b600061304185828601612b36565b925050602061305285828601612b36565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130a357607f821691505b6020821081036130b6576130b561305c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f682612ab4565b915061310183612ab4565b9250828201905080821115613119576131186130bc565b5b92915050565b7f546f6f2068696768207461780000000000000000000000000000000000000000600082015250565b6000613155600c83612a0d565b91506131608261311f565b602082019050919050565b6000602082019050818103600083015261318481613148565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613216602583612a0d565b9150613221826131ba565b604082019050919050565b6000602082019050818103600083015261324581613209565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000613282601d83612a0d565b915061328d8261324c565b602082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b600060c0820190506132cd6000830189612c78565b6132da6020830188612d4a565b6132e76040830187612d4a565b6132f46060830186612abe565b6133016080830185612abe565b61330e60a0830184612abe565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b600061334f601e83612a0d565b915061335a82613319565b602082019050919050565b6000602082019050818103600083015261337e81613342565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133e1602683612a0d565b91506133ec82613385565b604082019050919050565b60006020820190508181036000830152613410816133d4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613473602483612a0d565b915061347e82613417565b604082019050919050565b600060208201905081810360008301526134a281613466565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613505602283612a0d565b9150613510826134a9565b604082019050919050565b60006020820190508181036000830152613534816134f8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613571601d83612a0d565b915061357c8261353b565b602082019050919050565b600060208201905081810360008301526135a081613564565b9050919050565b7f54726164696e672069732064697361626c656400000000000000000000000000600082015250565b60006135dd601383612a0d565b91506135e8826135a7565b602082019050919050565b6000602082019050818103600083015261360c816135d0565b9050919050565b600061361e82612ab4565b915061362983612ab4565b925082820261363781612ab4565b9150828204841483151761364e5761364d6130bc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061368f82612ab4565b915061369a83612ab4565b9250826136aa576136a9613655565b5b828204905092915050565b60006136c082612ab4565b91506136cb83612ab4565b92508282039050818111156136e3576136e26130bc565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613745602183612a0d565b9150613750826136e9565b604082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006137d7602283612a0d565b91506137e28261377b565b604082019050919050565b60006020820190508181036000830152613806816137ca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613843602083612a0d565b915061384e8261380d565b602082019050919050565b6000602082019050818103600083015261387281613836565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006138d5602583612a0d565b91506138e082613879565b604082019050919050565b60006020820190508181036000830152613904816138c8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613967602383612a0d565b91506139728261390b565b604082019050919050565b600060208201905081810360008301526139968161395a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006139f9602683612a0d565b9150613a048261399d565b604082019050919050565b60006020820190508181036000830152613a28816139ec565b9050919050565b7f416e74692d5768616c653a2045786365656473206d6178696d756d20686f6c6460008201527f696e67206c696d69740000000000000000000000000000000000000000000000602082015250565b6000613a8b602983612a0d565b9150613a9682613a2f565b604082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f416e74692d5768616c653a205472616e7366657220616d6f756e74206578636560008201527f65647320746865206d6178696d756d207472616e7366657220616d6f756e7400602082015250565b6000613b1d603f83612a0d565b9150613b2882613ac1565b604082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b600060a082019050613b686000830188612c78565b613b756020830187612c78565b613b826040830186612c78565b613b8f6060830185612abe565b613b9c6080830184612d4a565b9695505050505050565b6000608082019050613bbb6000830187612c78565b613bc86020830186612c44565b613bd56040830185612c78565b613be26060830184612c78565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613c50601883612a0d565b9150613c5b82613c1a565b602082019050919050565b60006020820190508181036000830152613c7f81613c43565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613cbc601f83612a0d565b9150613cc782613c86565b602082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4e602283612a0d565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fdfea2646970667358221220fa3038fb26236a1706e941fccb33aaa92dcb29a7318af665c7eec268783aad4264736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000500000000000000000000000027707a88e2f3acd71fdc3f40a31fff102d5083a5000000000000000000000000bf2b7dfe9a1c26922f435196cd0a4a6a3f2ecbf7000000000000000000000000a6ad18c2ac47803e193f75c3677b14bf19b9488300000000000000000000000095db7a616ff625499aa58f06396eef7b48849216000000000000000000000000b49c4751a9d20c070eb4f7f320d74da1d5d1539b00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000032
-----Decoded View---------------
Arg [0] : addresses (address[]): 0x27707A88e2f3aCD71FDC3F40A31fFf102d5083a5,0xbf2b7dFE9A1C26922f435196Cd0a4a6A3F2ecbF7,0xa6AD18C2aC47803E193F75c3677b14BF19B94883,0x95dB7A616fF625499Aa58f06396eef7B48849216,0xb49c4751A9d20C070EB4f7f320D74DA1d5D1539b
Arg [1] : percents (uint256[]): 50,50,50,50
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 00000000000000000000000027707a88e2f3acd71fdc3f40a31fff102d5083a5
Arg [4] : 000000000000000000000000bf2b7dfe9a1c26922f435196cd0a4a6a3f2ecbf7
Arg [5] : 000000000000000000000000a6ad18c2ac47803e193f75c3677b14bf19b94883
Arg [6] : 00000000000000000000000095db7a616ff625499aa58f06396eef7b48849216
Arg [7] : 000000000000000000000000b49c4751a9d20c070eb4f7f320d74da1d5d1539b
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000032
Deployed Bytecode Sourcemap
144367:6867:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145475:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;127300:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;145307:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;129660:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;149678:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128429:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;130441:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;145193:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;149520:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128271:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;141069:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131111:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;142119:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;150717:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;145156:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128600:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;120755:103;;;:::i;:::-;;149379:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;145233:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;142529:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;151127:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;140828:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;113261:657;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;149121:84;;;:::i;:::-;;120114:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;127519:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;149798:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;144713:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131852:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;144642:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128933:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;150998:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;144579:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;140124:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;144826:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;129189:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;149244:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;144767:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;121013:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;144457:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;145475:36;;;;;;;;;;;;;:::o;127300:100::-;127354:13;127387:5;127380:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127300:100;:::o;145307:29::-;;;;:::o;129660:201::-;129743:4;129760:13;129776:12;:10;:12::i;:::-;129760:28;;129799:32;129808:5;129815:7;129824:6;129799:8;:32::i;:::-;129849:4;129842:11;;;129660:201;;;;:::o;149678:112::-;149737:4;149761:12;:21;149774:7;149761:21;;;;;;;;;;;;;;;;;;;;;;;;;149754:28;;149678:112;;;:::o;128429:108::-;128490:7;128517:12;;128510:19;;128429:108;:::o;130441:261::-;130538:4;130555:15;130573:12;:10;:12::i;:::-;130555:30;;130596:38;130612:4;130618:7;130627:6;130596:15;:38::i;:::-;130645:27;130655:4;130661:2;130665:6;130645:9;:27::i;:::-;130690:4;130683:11;;;130441:261;;;;;:::o;145193:26::-;;;;:::o;149520:150::-;149607:4;149631:22;:31;149654:7;149631:31;;;;;;;;;;;;;;;;;;;;;;;;;149624:38;;149520:150;;;:::o;128271:93::-;128329:5;128354:2;128347:9;;128271:93;:::o;141069:115::-;141129:7;141156:20;:18;:20::i;:::-;141149:27;;141069:115;:::o;131111:238::-;131199:4;131216:13;131232:12;:10;:12::i;:::-;131216:28;;131255:64;131264:5;131271:7;131308:10;131280:25;131290:5;131297:7;131280:9;:25::i;:::-;:38;;;;:::i;:::-;131255:8;:64::i;:::-;131337:4;131330:11;;;131111:238;;;;:::o;142119:91::-;142175:27;142181:12;:10;:12::i;:::-;142195:6;142175:5;:27::i;:::-;142119:91;:::o;150717:273::-;120000:13;:11;:13::i;:::-;150863:2:::1;150846:13;:19;;:43;;;;;150887:2;150869:14;:20;;150846:43;150838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;150930:13;150917:10;:26;;;;150968:14;150954:11;:28;;;;150717:273:::0;;:::o;145156:25::-;;;;:::o;128600:127::-;128674:7;128701:9;:18;128711:7;128701:18;;;;;;;;;;;;;;;;128694:25;;128600:127;;;:::o;120755:103::-;120000:13;:11;:13::i;:::-;120820:30:::1;120847:1;120820:18;:30::i;:::-;120755:103::o:0;149379:133::-;120000:13;:11;:13::i;:::-;149499:5:::1;149465:22;:31;149488:7;149465:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;149379:133:::0;:::o;145233:28::-;;;;:::o;142529:164::-;142606:46;142622:7;142631:12;:10;:12::i;:::-;142645:6;142606:15;:46::i;:::-;142663:22;142669:7;142678:6;142663:5;:22::i;:::-;142529:164;;:::o;151127:104::-;120000:13;:11;:13::i;:::-;151211:12:::1;151199:9;;:24;;;;;;;;;;;;;;;;;;151127:104:::0;:::o;140828:128::-;140897:7;140924:24;:7;:14;140932:5;140924:14;;;;;;;;;;;;;;;:22;:24::i;:::-;140917:31;;140828:128;;;:::o;113261:657::-;113382:13;113410:18;113443:21;113479:15;113509:25;113549:12;113576:27;113684:41;113711:13;113684:5;:26;;:41;;;;:::i;:::-;113740:47;113770:16;113740:8;:29;;:47;;;;:::i;:::-;113802:13;113838:4;113866:1;113858:10;;113897:1;113883:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113631:279;;;;;;;;;;;;;;;;;;;;;113261:657;;;;;;;:::o;149121:84::-;120000:13;:11;:13::i;:::-;149193:4:::1;149174:16;;:23;;;;;;;;;;;;;;;;;;149121:84::o:0;120114:87::-;120160:7;120187:6;;;;;;;;;;;120180:13;;120114:87;:::o;127519:104::-;127575:13;127608:7;127601:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127519:104;:::o;149798:107::-;149851:7;145046:1;149871:26;;149798:107;:::o;144713:24::-;;;;;;;;;;;;;:::o;131852:436::-;131945:4;131962:13;131978:12;:10;:12::i;:::-;131962:28;;132001:24;132028:25;132038:5;132045:7;132028:9;:25::i;:::-;132001:52;;132092:15;132072:16;:35;;132064:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;132185:60;132194:5;132201:7;132229:15;132210:16;:34;132185:8;:60::i;:::-;132276:4;132269:11;;;;131852:436;;;;:::o;144642:31::-;;;;;;;;;;;;;:::o;128933:193::-;129012:4;129029:13;129045:12;:10;:12::i;:::-;129029:28;;129068;129078:5;129085:2;129089:6;129068:9;:28::i;:::-;129114:4;129107:11;;;128933:193;;;;:::o;150998:121::-;120000:13;:11;:13::i;:::-;151105:6:::1;151081:12;:21;151094:7;151081:21;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;150998:121:::0;;:::o;144579:30::-;;;;;;;;;;;;;:::o;140124:645::-;140368:8;140349:15;:27;;140341:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;140423:18;139306:95;140483:5;140490:7;140499:5;140506:16;140516:5;140506:9;:16::i;:::-;140524:8;140454:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;140444:90;;;;;;140423:111;;140547:12;140562:28;140579:10;140562:16;:28::i;:::-;140547:43;;140603:14;140620:28;140634:4;140640:1;140643;140646;140620:13;:28::i;:::-;140603:45;;140677:5;140667:15;;:6;:15;;;140659:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;140730:31;140739:5;140746:7;140755:5;140730:8;:31::i;:::-;140330:439;;;140124:645;;;;;;;:::o;144826:29::-;;;;;;;;;;;;;:::o;129189:151::-;129278:7;129305:11;:18;129317:5;129305:18;;;;;;;;;;;;;;;:27;129324:7;129305:27;;;;;;;;;;;;;;;;129298:34;;129189:151;;;;:::o;149244:127::-;120000:13;:11;:13::i;:::-;149359:4:::1;149325:22;:31;149348:7;149325:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;149244:127:::0;:::o;144767:28::-;;;;;;;;;;;;;:::o;121013:201::-;120000:13;:11;:13::i;:::-;121122:1:::1;121102:22;;:8;:22;;::::0;121094:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;121178:28;121197:8;121178:18;:28::i;:::-;121013:201:::0;:::o;144457:90::-;144505:42;144457:90;:::o;118558:98::-;118611:7;118638:10;118631:17;;118558:98;:::o;135845:346::-;135964:1;135947:19;;:5;:19;;;135939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;136045:1;136026:21;;:7;:21;;;136018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;136129:6;136099:11;:18;136111:5;136099:18;;;;;;;;;;;;;;;:27;136118:7;136099:27;;;;;;;;;;;;;;;:36;;;;136167:7;136151:32;;136160:5;136151:32;;;136176:6;136151:32;;;;;;:::i;:::-;;;;;;;;135845:346;;;:::o;136482:419::-;136583:24;136610:25;136620:5;136627:7;136610:9;:25::i;:::-;136583:52;;136670:17;136650:16;:37;136646:248;;136732:6;136712:16;:26;;136704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;136816:51;136825:5;136832:7;136860:6;136841:16;:25;136816:8;:51::i;:::-;136646:248;136572:329;136482:419;;;:::o;147040:2034::-;147184:7;:5;:7::i;:::-;147176:15;;:4;:15;;;147172:102;;147208:33;147224:4;147230:2;147234:6;147208:15;:33::i;:::-;147256:7;;147172:102;147286:29;147298:16;;;;;;;;;;;147286:11;:29::i;:::-;147326:54;147340:16;;;;;;;;;;;147339:17;:39;;;;;147360:12;:18;147373:4;147360:18;;;;;;;;;;;;;;;;;;;;;;;;;147339:39;147326:11;:54::i;:::-;147391:98;147417:16;;;;;;;;;;;:61;;;;147439:16;;;;;;;;;;;147438:17;:39;;;;;147459:12;:18;147472:4;147459:18;;;;;;;;;;;;;;;;;;;;;;;;;147438:39;147417:61;147391:11;:98::i;:::-;147522:16;;;;;;;;;;;:61;;;;147544:16;;;;;;;;;;;147543:17;:39;;;;;147564:12;:18;147577:4;147564:18;;;;;;;;;;;;;;;;;;;;;;;;;147543:39;147522:61;147500:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;147648:22;:26;147671:2;147648:26;;;;;;;;;;;;;;;;;;;;;;;;;147643:282;;147691:15;147703:2;147691:11;:15::i;:::-;147721:30;;;;;;;;;;;;;;;;;;:11;:30::i;:::-;147766:20;147789:13;:11;:13::i;:::-;147766:36;;147817:42;147834:2;147838:6;147846:12;147817:16;:42::i;:::-;147874:39;147892:6;147900:12;147874:17;:39::i;:::-;147676:249;147643:282;147935:17;147967:22;147992:6;147967:31;;148031:12;:16;148044:2;148031:16;;;;;;;;;;;;;;;;;;;;;;;;;148030:17;:38;;;;;148059:9;;;;;;;;;;;148051:17;;:4;:17;;;148030:38;148029:97;;;;148088:12;:18;148101:4;148088:18;;;;;;;;;;;;;;;;;;;;;;;;;148087:19;:38;;;;;148116:9;;;;;;;;;;;148110:15;;:2;:15;;;148087:38;148029:97;148011:1002;;;148153:26;;;;;;;;;;;;;;;;;;:11;:26::i;:::-;148194:15;148238:9;;;;;;;;;;;148232:15;;:2;:15;;;148228:161;;148278:11;;148268:21;;148228:161;;;148323:9;;;;;;;;;;;148315:17;;:4;:17;;;148311:78;;148363:10;;148353:20;;148311:78;148228:161;148438:3;148427:7;148418:6;:16;;;;:::i;:::-;148417:24;;;;:::i;:::-;148405:36;;148482:9;148473:6;:18;;;;:::i;:::-;148456:35;;148508:22;148563:3;148546:13;;148534:9;:25;;;;:::i;:::-;148533:33;;;;:::i;:::-;148508:58;;148581:23;148619:14;148607:9;:26;;;;:::i;:::-;148581:52;;148671:1;148654:14;:18;148650:166;;;148693:34;;;;;;;;;;;;;;;;;;:11;:34::i;:::-;148746:54;148762:4;148768:15;;;;;;;;;;;148785:14;148746:15;:54::i;:::-;148650:166;148854:1;148836:15;:19;148832:170;;;148876:35;;;;;;;;;;;;;;;;;;:11;:35::i;:::-;148930:56;148946:4;148952:16;;;;;;;;;;;148970:15;148930;:56::i;:::-;148832:170;148138:875;;;148011:1002;149025:41;149041:4;149047:2;149051:14;149025:15;:41::i;:::-;147161:1913;;147040:2034;;;;:::o;111899:268::-;111952:7;111993:11;111976:28;;111984:4;111976:28;;;:63;;;;;112025:14;112008:13;:31;111976:63;111972:188;;;112063:22;112056:29;;;;111972:188;112125:23;:21;:23::i;:::-;112118:30;;111899:268;;:::o;134732:675::-;134835:1;134816:21;;:7;:21;;;134808:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;134888:49;134909:7;134926:1;134930:6;134888:20;:49::i;:::-;134950:22;134975:9;:18;134985:7;134975:18;;;;;;;;;;;;;;;;134950:43;;135030:6;135012:14;:24;;135004:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;135149:6;135132:14;:23;135111:9;:18;135121:7;135111:18;;;;;;;;;;;;;;;:44;;;;135266:6;135250:12;;:22;;;;;;;;;;;135327:1;135301:37;;135310:7;135301:37;;;135331:6;135301:37;;;;;;:::i;:::-;;;;;;;;135351:48;135371:7;135388:1;135392:6;135351:19;:48::i;:::-;134797:610;134732:675;;:::o;120279:132::-;120354:12;:10;:12::i;:::-;120343:23;;:7;:5;:7::i;:::-;:23;;;120335:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;120279:132::o;121374:191::-;121448:16;121467:6;;;;;;;;;;;121448:25;;121493:8;121484:6;;:17;;;;;;;;;;;;;;;;;;121548:8;121517:40;;121538:8;121517:40;;;;;;;;;;;;121437:128;121374:191;:::o;71428:114::-;71493:7;71520;:14;;;71513:21;;71428:114;;;:::o;80557:274::-;80651:13;78502:66;80710:18;;80700:5;80681:47;80677:147;;80752:15;80761:5;80752:8;:15::i;:::-;80745:22;;;;80677:147;80807:5;80800:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80557:274;;;;;:::o;141322:207::-;141382:15;141410:30;141443:7;:14;141451:5;141443:14;;;;;;;;;;;;;;;141410:47;;141478:15;:5;:13;:15::i;:::-;141468:25;;141504:17;:5;:15;:17::i;:::-;141399:130;141322:207;;;:::o;112999:167::-;113076:7;113103:55;113125:20;:18;:20::i;:::-;113147:10;113103:21;:55::i;:::-;113096:62;;112999:167;;;:::o;105578:236::-;105663:7;105684:17;105703:18;105725:25;105736:4;105742:1;105745;105748;105725:10;:25::i;:::-;105683:67;;;;105761:18;105773:5;105761:11;:18::i;:::-;105797:9;105790:16;;;;105578:236;;;;;;:::o;132758:806::-;132871:1;132855:18;;:4;:18;;;132847:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;132948:1;132934:16;;:2;:16;;;132926:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;133003:38;133024:4;133030:2;133034:6;133003:20;:38::i;:::-;133054:19;133076:9;:15;133086:4;133076:15;;;;;;;;;;;;;;;;133054:37;;133125:6;133110:11;:21;;133102:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;133242:6;133228:11;:20;133210:9;:15;133220:4;133210:15;;;;;;;;;;;;;;;:38;;;;133445:6;133428:9;:13;133438:2;133428:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;133495:2;133480:26;;133489:4;133480:26;;;133499:6;133480:26;;;;;;:::i;:::-;;;;;;;;133519:37;133539:4;133545:2;133549:6;133519:19;:37::i;:::-;132836:728;132758:806;;;:::o;6397:112::-;6444:57;6497:2;6460:40;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6444:15;:57::i;:::-;6397:112;:::o;6517:118::-;6567:60;6623:2;6583:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6567:15;:60::i;:::-;6517:118;:::o;6266:123::-;6322:59;6377:2;6338:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6322:15;:59::i;:::-;6266:123;:::o;149913:431::-;150066:1;150052:16;;:2;:16;;;;:39;;;;;150086:4;150072:19;;:2;:19;;;;150052:39;150048:289;;;150108:18;150168:3;145046:1;150130:12;:34;;;;:::i;:::-;150129:42;;;;:::i;:::-;150108:63;;150238:10;150228:6;150212:13;150222:2;150212:9;:13::i;:::-;:22;;;;:::i;:::-;:36;;150186:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;150093:244;150048:289;149913:431;;;:::o;150352:333::-;150467:19;150529:3;145124:1;150490:12;:35;;;;:::i;:::-;150489:43;;;;:::i;:::-;150467:65;;150575:11;150565:6;:21;;150543:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;150456:229;150352:333;;:::o;112175:182::-;112230:7;110091:95;112290:11;112303:14;112319:13;112342:4;112267:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;112257:92;;;;;;112250:99;;112175:182;:::o;137501:91::-;;;;:::o;138196:90::-;;;;:::o;79211:415::-;79270:13;79296:11;79310:16;79321:4;79310:10;:16::i;:::-;79296:30;;79416:17;79447:2;79436:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79416:34;;79541:3;79536;79529:16;79582:4;79575;79570:3;79566:14;79559:28;79615:3;79608:10;;;;79211:415;;;:::o;71550:127::-;71657:1;71639:7;:14;;;:19;;;;;;;;;;;71550:127;:::o;107362:406::-;107455:12;107565:4;107559:11;107596:10;107591:3;107584:23;107644:15;107637:4;107632:3;107628:14;107621:39;107697:10;107690:4;107685:3;107681:14;107674:34;107745:4;107740:3;107730:20;107722:28;;107533:228;107362:406;;;;:::o;103962:1477::-;104050:7;104059:12;104984:66;104979:1;104971:10;;:79;104967:163;;;105083:1;105087:30;105067:51;;;;;;104967:163;105227:14;105244:24;105254:4;105260:1;105263;105266;105244:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105227:41;;105301:1;105283:20;;:6;:20;;;105279:103;;105336:1;105340:29;105320:50;;;;;;;105279:103;105402:6;105410:20;105394:37;;;;;103962:1477;;;;;;;;:::o;99422:521::-;99500:20;99491:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;99487:449;99537:7;99487:449;99598:29;99589:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;99585:351;;99644:34;;;;;;;;;;:::i;:::-;;;;;;;;99585:351;99709:35;99700:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;99696:240;;99761:41;;;;;;;;;;:::i;:::-;;;;;;;;99696:240;99833:30;99824:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;99820:116;;99880:44;;;;;;;;;;:::i;:::-;;;;;;;;99820:116;99422:521;;:::o;884:131::-;956:51;999:7;956:42;968:29;956:11;:42::i;:::-;:51;;:::i;:::-;884:131;:::o;79703:251::-;79764:7;79784:14;79837:4;79828;79801:33;;:40;79784:57;;79865:2;79856:6;:11;79852:71;;;79891:20;;;;;;;;;;;;;;79852:71;79940:6;79933:13;;;79703:251;;;:::o;188:478::-;274:22;137:42;274:40;;613:1;589;558:7;552:14;526:2;517:7;513:16;476:14;448:5;415:218;393:255;378:281;188:478;:::o;674:202::-;775:33;854:4;845:13;;674:202;;;:::o;-1:-1:-1:-;;;:::i;:::-;:::o;7:90:1:-;41:7;84:5;77:13;70:21;59:32;;7:90;;;:::o;103:109::-;184:21;199:5;184:21;:::i;:::-;179:3;172:34;103:109;;:::o;218:210::-;305:4;343:2;332:9;328:18;320:26;;356:65;418:1;407:9;403:17;394:6;356:65;:::i;:::-;218:210;;;;:::o;434:99::-;486:6;520:5;514:12;504:22;;434:99;;;:::o;539:169::-;623:11;657:6;652:3;645:19;697:4;692:3;688:14;673:29;;539:169;;;;:::o;714:246::-;795:1;805:113;819:6;816:1;813:13;805:113;;;904:1;899:3;895:11;889:18;885:1;880:3;876:11;869:39;841:2;838:1;834:10;829:15;;805:113;;;952:1;943:6;938:3;934:16;927:27;776:184;714:246;;;:::o;966:102::-;1007:6;1058:2;1054:7;1049:2;1042:5;1038:14;1034:28;1024:38;;966:102;;;:::o;1074:377::-;1162:3;1190:39;1223:5;1190:39;:::i;:::-;1245:71;1309:6;1304:3;1245:71;:::i;:::-;1238:78;;1325:65;1383:6;1378:3;1371:4;1364:5;1360:16;1325:65;:::i;:::-;1415:29;1437:6;1415:29;:::i;:::-;1410:3;1406:39;1399:46;;1166:285;1074:377;;;;:::o;1457:313::-;1570:4;1608:2;1597:9;1593:18;1585:26;;1657:9;1651:4;1647:20;1643:1;1632:9;1628:17;1621:47;1685:78;1758:4;1749:6;1685:78;:::i;:::-;1677:86;;1457:313;;;;:::o;1776:77::-;1813:7;1842:5;1831:16;;1776:77;;;:::o;1859:118::-;1946:24;1964:5;1946:24;:::i;:::-;1941:3;1934:37;1859:118;;:::o;1983:222::-;2076:4;2114:2;2103:9;2099:18;2091:26;;2127:71;2195:1;2184:9;2180:17;2171:6;2127:71;:::i;:::-;1983:222;;;;:::o;2292:117::-;2401:1;2398;2391:12;2538:126;2575:7;2615:42;2608:5;2604:54;2593:65;;2538:126;;;:::o;2670:96::-;2707:7;2736:24;2754:5;2736:24;:::i;:::-;2725:35;;2670:96;;;:::o;2772:122::-;2845:24;2863:5;2845:24;:::i;:::-;2838:5;2835:35;2825:63;;2884:1;2881;2874:12;2825:63;2772:122;:::o;2900:139::-;2946:5;2984:6;2971:20;2962:29;;3000:33;3027:5;3000:33;:::i;:::-;2900:139;;;;:::o;3045:122::-;3118:24;3136:5;3118:24;:::i;:::-;3111:5;3108:35;3098:63;;3157:1;3154;3147:12;3098:63;3045:122;:::o;3173:139::-;3219:5;3257:6;3244:20;3235:29;;3273:33;3300:5;3273:33;:::i;:::-;3173:139;;;;:::o;3318:474::-;3386:6;3394;3443:2;3431:9;3422:7;3418:23;3414:32;3411:119;;;3449:79;;:::i;:::-;3411:119;3569:1;3594:53;3639:7;3630:6;3619:9;3615:22;3594:53;:::i;:::-;3584:63;;3540:117;3696:2;3722:53;3767:7;3758:6;3747:9;3743:22;3722:53;:::i;:::-;3712:63;;3667:118;3318:474;;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:77::-;5225:7;5254:5;5243:16;;5188:77;;;:::o;5271:118::-;5358:24;5376:5;5358:24;:::i;:::-;5353:3;5346:37;5271:118;;:::o;5395:222::-;5488:4;5526:2;5515:9;5511:18;5503:26;;5539:71;5607:1;5596:9;5592:17;5583:6;5539:71;:::i;:::-;5395:222;;;;:::o;5623:329::-;5682:6;5731:2;5719:9;5710:7;5706:23;5702:32;5699:119;;;5737:79;;:::i;:::-;5699:119;5857:1;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5828:117;5623:329;;;;:::o;5958:474::-;6026:6;6034;6083:2;6071:9;6062:7;6058:23;6054:32;6051:119;;;6089:79;;:::i;:::-;6051:119;6209:1;6234:53;6279:7;6270:6;6259:9;6255:22;6234:53;:::i;:::-;6224:63;;6180:117;6336:2;6362:53;6407:7;6398:6;6387:9;6383:22;6362:53;:::i;:::-;6352:63;;6307:118;5958:474;;;;;:::o;6438:149::-;6474:7;6514:66;6507:5;6503:78;6492:89;;6438:149;;;:::o;6593:115::-;6678:23;6695:5;6678:23;:::i;:::-;6673:3;6666:36;6593:115;;:::o;6714:118::-;6801:24;6819:5;6801:24;:::i;:::-;6796:3;6789:37;6714:118;;:::o;6838:114::-;6905:6;6939:5;6933:12;6923:22;;6838:114;;;:::o;6958:184::-;7057:11;7091:6;7086:3;7079:19;7131:4;7126:3;7122:14;7107:29;;6958:184;;;;:::o;7148:132::-;7215:4;7238:3;7230:11;;7268:4;7263:3;7259:14;7251:22;;7148:132;;;:::o;7286:108::-;7363:24;7381:5;7363:24;:::i;:::-;7358:3;7351:37;7286:108;;:::o;7400:179::-;7469:10;7490:46;7532:3;7524:6;7490:46;:::i;:::-;7568:4;7563:3;7559:14;7545:28;;7400:179;;;;:::o;7585:113::-;7655:4;7687;7682:3;7678:14;7670:22;;7585:113;;;:::o;7734:732::-;7853:3;7882:54;7930:5;7882:54;:::i;:::-;7952:86;8031:6;8026:3;7952:86;:::i;:::-;7945:93;;8062:56;8112:5;8062:56;:::i;:::-;8141:7;8172:1;8157:284;8182:6;8179:1;8176:13;8157:284;;;8258:6;8252:13;8285:63;8344:3;8329:13;8285:63;:::i;:::-;8278:70;;8371:60;8424:6;8371:60;:::i;:::-;8361:70;;8217:224;8204:1;8201;8197:9;8192:14;;8157:284;;;8161:14;8457:3;8450:10;;7858:608;;;7734:732;;;;:::o;8472:1215::-;8821:4;8859:3;8848:9;8844:19;8836:27;;8873:69;8939:1;8928:9;8924:17;8915:6;8873:69;:::i;:::-;8989:9;8983:4;8979:20;8974:2;8963:9;8959:18;8952:48;9017:78;9090:4;9081:6;9017:78;:::i;:::-;9009:86;;9142:9;9136:4;9132:20;9127:2;9116:9;9112:18;9105:48;9170:78;9243:4;9234:6;9170:78;:::i;:::-;9162:86;;9258:72;9326:2;9315:9;9311:18;9302:6;9258:72;:::i;:::-;9340:73;9408:3;9397:9;9393:19;9384:6;9340:73;:::i;:::-;9423;9491:3;9480:9;9476:19;9467:6;9423:73;:::i;:::-;9544:9;9538:4;9534:20;9528:3;9517:9;9513:19;9506:49;9572:108;9675:4;9666:6;9572:108;:::i;:::-;9564:116;;8472:1215;;;;;;;;;;:::o;9693:222::-;9786:4;9824:2;9813:9;9809:18;9801:26;;9837:71;9905:1;9894:9;9890:17;9881:6;9837:71;:::i;:::-;9693:222;;;;:::o;9921:116::-;9991:21;10006:5;9991:21;:::i;:::-;9984:5;9981:32;9971:60;;10027:1;10024;10017:12;9971:60;9921:116;:::o;10043:133::-;10086:5;10124:6;10111:20;10102:29;;10140:30;10164:5;10140:30;:::i;:::-;10043:133;;;;:::o;10182:468::-;10247:6;10255;10304:2;10292:9;10283:7;10279:23;10275:32;10272:119;;;10310:79;;:::i;:::-;10272:119;10430:1;10455:53;10500:7;10491:6;10480:9;10476:22;10455:53;:::i;:::-;10445:63;;10401:117;10557:2;10583:50;10625:7;10616:6;10605:9;10601:22;10583:50;:::i;:::-;10573:60;;10528:115;10182:468;;;;;:::o;10656:118::-;10727:22;10743:5;10727:22;:::i;:::-;10720:5;10717:33;10707:61;;10764:1;10761;10754:12;10707:61;10656:118;:::o;10780:135::-;10824:5;10862:6;10849:20;10840:29;;10878:31;10903:5;10878:31;:::i;:::-;10780:135;;;;:::o;10921:122::-;10994:24;11012:5;10994:24;:::i;:::-;10987:5;10984:35;10974:63;;11033:1;11030;11023:12;10974:63;10921:122;:::o;11049:139::-;11095:5;11133:6;11120:20;11111:29;;11149:33;11176:5;11149:33;:::i;:::-;11049:139;;;;:::o;11194:1199::-;11305:6;11313;11321;11329;11337;11345;11353;11402:3;11390:9;11381:7;11377:23;11373:33;11370:120;;;11409:79;;:::i;:::-;11370:120;11529:1;11554:53;11599:7;11590:6;11579:9;11575:22;11554:53;:::i;:::-;11544:63;;11500:117;11656:2;11682:53;11727:7;11718:6;11707:9;11703:22;11682:53;:::i;:::-;11672:63;;11627:118;11784:2;11810:53;11855:7;11846:6;11835:9;11831:22;11810:53;:::i;:::-;11800:63;;11755:118;11912:2;11938:53;11983:7;11974:6;11963:9;11959:22;11938:53;:::i;:::-;11928:63;;11883:118;12040:3;12067:51;12110:7;12101:6;12090:9;12086:22;12067:51;:::i;:::-;12057:61;;12011:117;12167:3;12194:53;12239:7;12230:6;12219:9;12215:22;12194:53;:::i;:::-;12184:63;;12138:119;12296:3;12323:53;12368:7;12359:6;12348:9;12344:22;12323:53;:::i;:::-;12313:63;;12267:119;11194:1199;;;;;;;;;;:::o;12399:474::-;12467:6;12475;12524:2;12512:9;12503:7;12499:23;12495:32;12492:119;;;12530:79;;:::i;:::-;12492:119;12650:1;12675:53;12720:7;12711:6;12700:9;12696:22;12675:53;:::i;:::-;12665:63;;12621:117;12777:2;12803:53;12848:7;12839:6;12828:9;12824:22;12803:53;:::i;:::-;12793:63;;12748:118;12399:474;;;;;:::o;12879:180::-;12927:77;12924:1;12917:88;13024:4;13021:1;13014:15;13048:4;13045:1;13038:15;13065:320;13109:6;13146:1;13140:4;13136:12;13126:22;;13193:1;13187:4;13183:12;13214:18;13204:81;;13270:4;13262:6;13258:17;13248:27;;13204:81;13332:2;13324:6;13321:14;13301:18;13298:38;13295:84;;13351:18;;:::i;:::-;13295:84;13116:269;13065:320;;;:::o;13391:180::-;13439:77;13436:1;13429:88;13536:4;13533:1;13526:15;13560:4;13557:1;13550:15;13577:191;13617:3;13636:20;13654:1;13636:20;:::i;:::-;13631:25;;13670:20;13688:1;13670:20;:::i;:::-;13665:25;;13713:1;13710;13706:9;13699:16;;13734:3;13731:1;13728:10;13725:36;;;13741:18;;:::i;:::-;13725:36;13577:191;;;;:::o;13774:162::-;13914:14;13910:1;13902:6;13898:14;13891:38;13774:162;:::o;13942:366::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;13942:366;;;:::o;14314:419::-;14480:4;14518:2;14507:9;14503:18;14495:26;;14567:9;14561:4;14557:20;14553:1;14542:9;14538:17;14531:47;14595:131;14721:4;14595:131;:::i;:::-;14587:139;;14314:419;;;:::o;14739:180::-;14787:77;14784:1;14777:88;14884:4;14881:1;14874:15;14908:4;14905:1;14898:15;14925:224;15065:34;15061:1;15053:6;15049:14;15042:58;15134:7;15129:2;15121:6;15117:15;15110:32;14925:224;:::o;15155:366::-;15297:3;15318:67;15382:2;15377:3;15318:67;:::i;:::-;15311:74;;15394:93;15483:3;15394:93;:::i;:::-;15512:2;15507:3;15503:12;15496:19;;15155:366;;;:::o;15527:419::-;15693:4;15731:2;15720:9;15716:18;15708:26;;15780:9;15774:4;15770:20;15766:1;15755:9;15751:17;15744:47;15808:131;15934:4;15808:131;:::i;:::-;15800:139;;15527:419;;;:::o;15952:179::-;16092:31;16088:1;16080:6;16076:14;16069:55;15952:179;:::o;16137:366::-;16279:3;16300:67;16364:2;16359:3;16300:67;:::i;:::-;16293:74;;16376:93;16465:3;16376:93;:::i;:::-;16494:2;16489:3;16485:12;16478:19;;16137:366;;;:::o;16509:419::-;16675:4;16713:2;16702:9;16698:18;16690:26;;16762:9;16756:4;16752:20;16748:1;16737:9;16733:17;16726:47;16790:131;16916:4;16790:131;:::i;:::-;16782:139;;16509:419;;;:::o;16934:775::-;17167:4;17205:3;17194:9;17190:19;17182:27;;17219:71;17287:1;17276:9;17272:17;17263:6;17219:71;:::i;:::-;17300:72;17368:2;17357:9;17353:18;17344:6;17300:72;:::i;:::-;17382;17450:2;17439:9;17435:18;17426:6;17382:72;:::i;:::-;17464;17532:2;17521:9;17517:18;17508:6;17464:72;:::i;:::-;17546:73;17614:3;17603:9;17599:19;17590:6;17546:73;:::i;:::-;17629;17697:3;17686:9;17682:19;17673:6;17629:73;:::i;:::-;16934:775;;;;;;;;;:::o;17715:180::-;17855:32;17851:1;17843:6;17839:14;17832:56;17715:180;:::o;17901:366::-;18043:3;18064:67;18128:2;18123:3;18064:67;:::i;:::-;18057:74;;18140:93;18229:3;18140:93;:::i;:::-;18258:2;18253:3;18249:12;18242:19;;17901:366;;;:::o;18273:419::-;18439:4;18477:2;18466:9;18462:18;18454:26;;18526:9;18520:4;18516:20;18512:1;18501:9;18497:17;18490:47;18554:131;18680:4;18554:131;:::i;:::-;18546:139;;18273:419;;;:::o;18698:225::-;18838:34;18834:1;18826:6;18822:14;18815:58;18907:8;18902:2;18894:6;18890:15;18883:33;18698:225;:::o;18929:366::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:419::-;19467:4;19505:2;19494:9;19490:18;19482:26;;19554:9;19548:4;19544:20;19540:1;19529:9;19525:17;19518:47;19582:131;19708:4;19582:131;:::i;:::-;19574:139;;19301:419;;;:::o;19726:223::-;19866:34;19862:1;19854:6;19850:14;19843:58;19935:6;19930:2;19922:6;19918:15;19911:31;19726:223;:::o;19955:366::-;20097:3;20118:67;20182:2;20177:3;20118:67;:::i;:::-;20111:74;;20194:93;20283:3;20194:93;:::i;:::-;20312:2;20307:3;20303:12;20296:19;;19955:366;;;:::o;20327:419::-;20493:4;20531:2;20520:9;20516:18;20508:26;;20580:9;20574:4;20570:20;20566:1;20555:9;20551:17;20544:47;20608:131;20734:4;20608:131;:::i;:::-;20600:139;;20327:419;;;:::o;20752:221::-;20892:34;20888:1;20880:6;20876:14;20869:58;20961:4;20956:2;20948:6;20944:15;20937:29;20752:221;:::o;20979:366::-;21121:3;21142:67;21206:2;21201:3;21142:67;:::i;:::-;21135:74;;21218:93;21307:3;21218:93;:::i;:::-;21336:2;21331:3;21327:12;21320:19;;20979:366;;;:::o;21351:419::-;21517:4;21555:2;21544:9;21540:18;21532:26;;21604:9;21598:4;21594:20;21590:1;21579:9;21575:17;21568:47;21632:131;21758:4;21632:131;:::i;:::-;21624:139;;21351:419;;;:::o;21776:179::-;21916:31;21912:1;21904:6;21900:14;21893:55;21776:179;:::o;21961:366::-;22103:3;22124:67;22188:2;22183:3;22124:67;:::i;:::-;22117:74;;22200:93;22289:3;22200:93;:::i;:::-;22318:2;22313:3;22309:12;22302:19;;21961:366;;;:::o;22333:419::-;22499:4;22537:2;22526:9;22522:18;22514:26;;22586:9;22580:4;22576:20;22572:1;22561:9;22557:17;22550:47;22614:131;22740:4;22614:131;:::i;:::-;22606:139;;22333:419;;;:::o;22758:169::-;22898:21;22894:1;22886:6;22882:14;22875:45;22758:169;:::o;22933:366::-;23075:3;23096:67;23160:2;23155:3;23096:67;:::i;:::-;23089:74;;23172:93;23261:3;23172:93;:::i;:::-;23290:2;23285:3;23281:12;23274:19;;22933:366;;;:::o;23305:419::-;23471:4;23509:2;23498:9;23494:18;23486:26;;23558:9;23552:4;23548:20;23544:1;23533:9;23529:17;23522:47;23586:131;23712:4;23586:131;:::i;:::-;23578:139;;23305:419;;;:::o;23730:410::-;23770:7;23793:20;23811:1;23793:20;:::i;:::-;23788:25;;23827:20;23845:1;23827:20;:::i;:::-;23822:25;;23882:1;23879;23875:9;23904:30;23922:11;23904:30;:::i;:::-;23893:41;;24083:1;24074:7;24070:15;24067:1;24064:22;24044:1;24037:9;24017:83;23994:139;;24113:18;;:::i;:::-;23994:139;23778:362;23730:410;;;;:::o;24146:180::-;24194:77;24191:1;24184:88;24291:4;24288:1;24281:15;24315:4;24312:1;24305:15;24332:185;24372:1;24389:20;24407:1;24389:20;:::i;:::-;24384:25;;24423:20;24441:1;24423:20;:::i;:::-;24418:25;;24462:1;24452:35;;24467:18;;:::i;:::-;24452:35;24509:1;24506;24502:9;24497:14;;24332:185;;;;:::o;24523:194::-;24563:4;24583:20;24601:1;24583:20;:::i;:::-;24578:25;;24617:20;24635:1;24617:20;:::i;:::-;24612:25;;24661:1;24658;24654:9;24646:17;;24685:1;24679:4;24676:11;24673:37;;;24690:18;;:::i;:::-;24673:37;24523:194;;;;:::o;24723:220::-;24863:34;24859:1;24851:6;24847:14;24840:58;24932:3;24927:2;24919:6;24915:15;24908:28;24723:220;:::o;24949:366::-;25091:3;25112:67;25176:2;25171:3;25112:67;:::i;:::-;25105:74;;25188:93;25277:3;25188:93;:::i;:::-;25306:2;25301:3;25297:12;25290:19;;24949:366;;;:::o;25321:419::-;25487:4;25525:2;25514:9;25510:18;25502:26;;25574:9;25568:4;25564:20;25560:1;25549:9;25545:17;25538:47;25602:131;25728:4;25602:131;:::i;:::-;25594:139;;25321:419;;;:::o;25746:221::-;25886:34;25882:1;25874:6;25870:14;25863:58;25955:4;25950:2;25942:6;25938:15;25931:29;25746:221;:::o;25973:366::-;26115:3;26136:67;26200:2;26195:3;26136:67;:::i;:::-;26129:74;;26212:93;26301:3;26212:93;:::i;:::-;26330:2;26325:3;26321:12;26314:19;;25973:366;;;:::o;26345:419::-;26511:4;26549:2;26538:9;26534:18;26526:26;;26598:9;26592:4;26588:20;26584:1;26573:9;26569:17;26562:47;26626:131;26752:4;26626:131;:::i;:::-;26618:139;;26345:419;;;:::o;26770:182::-;26910:34;26906:1;26898:6;26894:14;26887:58;26770:182;:::o;26958:366::-;27100:3;27121:67;27185:2;27180:3;27121:67;:::i;:::-;27114:74;;27197:93;27286:3;27197:93;:::i;:::-;27315:2;27310:3;27306:12;27299:19;;26958:366;;;:::o;27330:419::-;27496:4;27534:2;27523:9;27519:18;27511:26;;27583:9;27577:4;27573:20;27569:1;27558:9;27554:17;27547:47;27611:131;27737:4;27611:131;:::i;:::-;27603:139;;27330:419;;;:::o;27755:224::-;27895:34;27891:1;27883:6;27879:14;27872:58;27964:7;27959:2;27951:6;27947:15;27940:32;27755:224;:::o;27985:366::-;28127:3;28148:67;28212:2;28207:3;28148:67;:::i;:::-;28141:74;;28224:93;28313:3;28224:93;:::i;:::-;28342:2;28337:3;28333:12;28326:19;;27985:366;;;:::o;28357:419::-;28523:4;28561:2;28550:9;28546:18;28538:26;;28610:9;28604:4;28600:20;28596:1;28585:9;28581:17;28574:47;28638:131;28764:4;28638:131;:::i;:::-;28630:139;;28357:419;;;:::o;28782:222::-;28922:34;28918:1;28910:6;28906:14;28899:58;28991:5;28986:2;28978:6;28974:15;28967:30;28782:222;:::o;29010:366::-;29152:3;29173:67;29237:2;29232:3;29173:67;:::i;:::-;29166:74;;29249:93;29338:3;29249:93;:::i;:::-;29367:2;29362:3;29358:12;29351:19;;29010:366;;;:::o;29382:419::-;29548:4;29586:2;29575:9;29571:18;29563:26;;29635:9;29629:4;29625:20;29621:1;29610:9;29606:17;29599:47;29663:131;29789:4;29663:131;:::i;:::-;29655:139;;29382:419;;;:::o;29807:225::-;29947:34;29943:1;29935:6;29931:14;29924:58;30016:8;30011:2;30003:6;29999:15;29992:33;29807:225;:::o;30038:366::-;30180:3;30201:67;30265:2;30260:3;30201:67;:::i;:::-;30194:74;;30277:93;30366:3;30277:93;:::i;:::-;30395:2;30390:3;30386:12;30379:19;;30038:366;;;:::o;30410:419::-;30576:4;30614:2;30603:9;30599:18;30591:26;;30663:9;30657:4;30653:20;30649:1;30638:9;30634:17;30627:47;30691:131;30817:4;30691:131;:::i;:::-;30683:139;;30410:419;;;:::o;30835:228::-;30975:34;30971:1;30963:6;30959:14;30952:58;31044:11;31039:2;31031:6;31027:15;31020:36;30835:228;:::o;31069:366::-;31211:3;31232:67;31296:2;31291:3;31232:67;:::i;:::-;31225:74;;31308:93;31397:3;31308:93;:::i;:::-;31426:2;31421:3;31417:12;31410:19;;31069:366;;;:::o;31441:419::-;31607:4;31645:2;31634:9;31630:18;31622:26;;31694:9;31688:4;31684:20;31680:1;31669:9;31665:17;31658:47;31722:131;31848:4;31722:131;:::i;:::-;31714:139;;31441:419;;;:::o;31866:250::-;32006:34;32002:1;31994:6;31990:14;31983:58;32075:33;32070:2;32062:6;32058:15;32051:58;31866:250;:::o;32122:366::-;32264:3;32285:67;32349:2;32344:3;32285:67;:::i;:::-;32278:74;;32361:93;32450:3;32361:93;:::i;:::-;32479:2;32474:3;32470:12;32463:19;;32122:366;;;:::o;32494:419::-;32660:4;32698:2;32687:9;32683:18;32675:26;;32747:9;32741:4;32737:20;32733:1;32722:9;32718:17;32711:47;32775:131;32901:4;32775:131;:::i;:::-;32767:139;;32494:419;;;:::o;32919:664::-;33124:4;33162:3;33151:9;33147:19;33139:27;;33176:71;33244:1;33233:9;33229:17;33220:6;33176:71;:::i;:::-;33257:72;33325:2;33314:9;33310:18;33301:6;33257:72;:::i;:::-;33339;33407:2;33396:9;33392:18;33383:6;33339:72;:::i;:::-;33421;33489:2;33478:9;33474:18;33465:6;33421:72;:::i;:::-;33503:73;33571:3;33560:9;33556:19;33547:6;33503:73;:::i;:::-;32919:664;;;;;;;;:::o;33589:545::-;33762:4;33800:3;33789:9;33785:19;33777:27;;33814:71;33882:1;33871:9;33867:17;33858:6;33814:71;:::i;:::-;33895:68;33959:2;33948:9;33944:18;33935:6;33895:68;:::i;:::-;33973:72;34041:2;34030:9;34026:18;34017:6;33973:72;:::i;:::-;34055;34123:2;34112:9;34108:18;34099:6;34055:72;:::i;:::-;33589:545;;;;;;;:::o;34140:180::-;34188:77;34185:1;34178:88;34285:4;34282:1;34275:15;34309:4;34306:1;34299:15;34326:174;34466:26;34462:1;34454:6;34450:14;34443:50;34326:174;:::o;34506:366::-;34648:3;34669:67;34733:2;34728:3;34669:67;:::i;:::-;34662:74;;34745:93;34834:3;34745:93;:::i;:::-;34863:2;34858:3;34854:12;34847:19;;34506:366;;;:::o;34878:419::-;35044:4;35082:2;35071:9;35067:18;35059:26;;35131:9;35125:4;35121:20;35117:1;35106:9;35102:17;35095:47;35159:131;35285:4;35159:131;:::i;:::-;35151:139;;34878:419;;;:::o;35303:181::-;35443:33;35439:1;35431:6;35427:14;35420:57;35303:181;:::o;35490:366::-;35632:3;35653:67;35717:2;35712:3;35653:67;:::i;:::-;35646:74;;35729:93;35818:3;35729:93;:::i;:::-;35847:2;35842:3;35838:12;35831:19;;35490:366;;;:::o;35862:419::-;36028:4;36066:2;36055:9;36051:18;36043:26;;36115:9;36109:4;36105:20;36101:1;36090:9;36086:17;36079:47;36143:131;36269:4;36143:131;:::i;:::-;36135:139;;35862:419;;;:::o;36287:221::-;36427:34;36423:1;36415:6;36411:14;36404:58;36496:4;36491:2;36483:6;36479:15;36472:29;36287:221;:::o;36514:366::-;36656:3;36677:67;36741:2;36736:3;36677:67;:::i;:::-;36670:74;;36753:93;36842:3;36753:93;:::i;:::-;36871:2;36866:3;36862:12;36855:19;;36514:366;;;:::o;36886:419::-;37052:4;37090:2;37079:9;37075:18;37067:26;;37139:9;37133:4;37129:20;37125:1;37114:9;37110:17;37103:47;37167:131;37293:4;37167:131;:::i;:::-;37159:139;;36886:419;;;:::o;37311:180::-;37359:77;37356:1;37349:88;37456:4;37453:1;37446:15;37480:4;37477:1;37470:15
Swarm Source
ipfs://fa3038fb26236a1706e941fccb33aaa92dcb29a7318af665c7eec268783aad42
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.