{"address":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","latest":5067620,"price":{"usd":0.6086362212784611,"btc":0,"change24h":0,"marketCap":180603373.93249682,"volume24h":0,"source":"onchain","venue":"On-chain pool WDAN/USDT on dannyswap"},"balance":"0","nonce":13,"codeSize":5170,"isContract":true,"contract":{"verified":true,"name":"CreatorMaster","compiler":"v0.8.34+commit.80d5c536","optimization":true,"runs":200,"license":"mit","proxy":false,"implementation":null,"sourceCode":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.19;\n\nabstract contract Context {\n    function _msgSender() internal view virtual returns (address) {\n        return msg.sender;\n    }\n\n    function _msgData() internal view virtual returns (bytes calldata) {\n        return msg.data;\n    }\n\n    function _contextSuffixLength() internal view virtual returns (uint256) {\n        return 0;\n    }\n}\n\ninterface IERC20 {\n    function transfer(address to, uint256 amount) external returns (bool);\n    function balanceOf(address account) external view returns (uint256);\n    function transferFrom(\n        address from,\n        address to,\n        uint256 value\n    ) external returns (bool);\n}\n\nabstract contract Ownable is Context {\n    address private _owner;\n\n    /**\n     * @dev The caller account is not authorized to perform an operation.\n     */\n    error OwnableUnauthorizedAccount(address account);\n\n    /**\n     * @dev The owner is not a valid owner account. (eg. `address(0)`)\n     */\n    error OwnableInvalidOwner(address owner);\n\n    event OwnershipTransferred(\n        address indexed previousOwner,\n        address indexed newOwner\n    );\n\n    /**\n     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n     */\n    constructor(address initialOwner) {\n        if (initialOwner == address(0)) {\n            revert OwnableInvalidOwner(address(0));\n        }\n        _transferOwnership(initialOwner);\n    }\n\n    /**\n     * @dev Throws if called by any account other than the owner.\n     */\n    modifier onlyOwner() {\n        _checkOwner();\n        _;\n    }\n\n    /**\n     * @dev Returns the address of the current owner.\n     */\n    function owner() public view virtual returns (address) {\n        return _owner;\n    }\n\n    /**\n     * @dev Throws if the sender is not the owner.\n     */\n    function _checkOwner() internal view virtual {\n        if (owner() != _msgSender()) {\n            revert OwnableUnauthorizedAccount(_msgSender());\n        }\n    }\n\n    /**\n     * @dev Leaves the contract without owner. It will not be possible to call\n     * `onlyOwner` functions. Can only be called by the current owner.\n     *\n     * NOTE: Renouncing ownership will leave the contract without an owner,\n     * thereby disabling any functionality that is only available to the owner.\n     */\n    function renounceOwnership() public virtual onlyOwner {\n        _transferOwnership(address(0));\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\n     * Can only be called by the current owner.\n     */\n    function transferOwnership(address newOwner) public virtual onlyOwner {\n        if (newOwner == address(0)) {\n            revert OwnableInvalidOwner(address(0));\n        }\n        _transferOwnership(newOwner);\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\n     * Internal function without access restriction.\n     */\n    function _transferOwnership(address newOwner) internal virtual {\n        address oldOwner = _owner;\n        _owner = newOwner;\n        emit OwnershipTransferred(oldOwner, newOwner);\n    }\n}\n\ncontract CodeContainer {\n    constructor(bytes memory _creationCode) {\n        assembly {\n            return(add(_creationCode, 0x20), mload(_creationCode))\n        }\n    }\n}\n\ninterface IUniswapV2Pair {\n    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);\n}\n\ninterface IToken {\n    function initialize(\n        address _owner,\n        string memory _name,\n        string memory _symbol,\n        uint8 _decimals,\n        uint256 _initialSupply\n    ) external;\n}\n\n// Index encoding (4-bit):\n//   bit 0 = Burnable  (1)\n//   bit 1 = Mintable  (2)\n//   bit 2 = Pausable  (4)\n//   bit 3 = Blacklist (8)\n\ncontract CreatorMaster is Ownable {\n    mapping(uint8 => address) public containers;\n    uint256 public baseFee;\n    uint256 public featurePrice;\n\n    IUniswapV2Pair public lpPair;\n    address public treasury;\n\n    event TokenDeployed(address indexed token, address indexed owner, uint8 indexed tokenIndex);\n    event ContainerUpdated(uint8 indexed index, address container);\n    event BaseFeeUpdated(uint256 newBaseFee);\n    event FeaturePriceUpdated(uint256 newFeaturePrice);\n\n    constructor() Ownable(msg.sender) {\n        baseFee      = 50e18;  // $50 base\n        featurePrice = 10e18;  // +$10 per active feature\n        lpPair       = IUniswapV2Pair(0xcE79470C765Cfd64274B0D43128746BDf9e3A5D2);\n        treasury     = 0x3435d20738487C21F24063A4851ff2c6Ba20218b;\n    }\n\n    receive() external payable {}\n\n    // ── Token creation ───────────────────────────────────────────────────────\n\n    function createToken(\n        uint8           tokenIndex,\n        address         _owner,\n        string calldata _name,\n        string calldata _symbol,\n        uint8           _decimals,\n        uint256         _initialSupply\n    ) external payable returns (address token) {\n        require(tokenIndex < 16, \"Invalid index\");\n        _takeFee(tokenIndex);\n\n        token = _deploy(tokenIndex, _owner, _name);\n        IToken(token).initialize(_owner, _name, _symbol, _decimals, _initialSupply);\n\n        emit TokenDeployed(token, _owner, tokenIndex);\n    }\n\n    function _deploy(\n        uint8           tokenIndex,\n        address         _owner,\n        string calldata _name\n    ) internal returns (address deployed) {\n        address container = containers[tokenIndex];\n        require(container != address(0), \"Token type not available\");\n\n        bytes memory code = container.code;\n        require(code.length > 0, \"Empty container\");\n\n        bytes32 salt = keccak256(abi.encodePacked(tokenIndex, _name, block.timestamp, _owner));\n\n        assembly {\n            deployed := create2(0, add(code, 0x20), mload(code), salt)\n        }\n        require(deployed != address(0), \"Deployment failed\");\n    }\n\n    function _takeFee(uint8 tokenIndex) internal {\n        require(treasury != address(0), \"Treasury not set\");\n        uint256 required = nativeFee(tokenIndex);\n        require(msg.value >= required, \"Insufficient fee\");\n        (bool ok, ) = payable(treasury).call{ value: msg.value }(\"\");\n        require(ok, \"Fee transfer failed\");\n    }\n\n    // ── Pricing ──────────────────────────────────────────────────────────────\n\n    function getLatestPrice() public view returns (uint256) {\n        (uint256 r0, uint256 r1, ) = lpPair.getReserves();\n        return (r0 * 1e28) / r1;\n    }\n\n    function deployFeeUSD(uint8 tokenIndex) public view returns (uint256) {\n        return baseFee + (featurePrice * _bitCount(tokenIndex));\n    }\n\n    function nativeFee(uint8 tokenIndex) public view returns (uint256) {\n        return (deployFeeUSD(tokenIndex) * 1e18) / getLatestPrice();\n    }\n\n    function allFees() external view returns (uint256[16] memory usd, uint256[16] memory native) {\n        uint256 price = getLatestPrice();\n        for (uint8 i = 0; i < 16; i++) {\n            usd[i]    = baseFee + (featurePrice * _bitCount(i));\n            native[i] = (usd[i] * 1e18) / price;\n        }\n    }\n\n    function _bitCount(uint8 n) internal pure returns (uint256 count) {\n        while (n != 0) {\n            count += n & 1;\n            n >>= 1;\n        }\n    }\n\n    // ── Admin ────────────────────────────────────────────────────────────────\n\n    function setContainer(uint8 index, address newContainer) external onlyOwner {\n        require(index < 16,                \"Invalid index\");\n        require(newContainer != address(0), \"Zero address\");\n        containers[index] = newContainer;\n        emit ContainerUpdated(index, newContainer);\n    }\n\n    function setContainers(\n        uint8[]   calldata indexes,\n        address[] calldata newContainers\n    ) external onlyOwner {\n        require(indexes.length == newContainers.length, \"Length mismatch\");\n        require(indexes.length > 0,                     \"Empty array\");\n        for (uint256 i = 0; i < indexes.length; i++) {\n            uint8   idx  = indexes[i];\n            address addr = newContainers[i];\n            require(idx < 16,           \"Invalid index\");\n            require(addr != address(0), \"Zero address\");\n            containers[idx] = addr;\n            emit ContainerUpdated(idx, addr);\n        }\n    }\n\n    function setBaseFee(uint256 fee) external onlyOwner {\n        baseFee = fee;\n        emit BaseFeeUpdated(fee);\n    }\n\n    function setFeaturePrice(uint256 price) external onlyOwner {\n        featurePrice = price;\n        emit FeaturePriceUpdated(price);\n    }\n\n    function setTreasury(address _treasury) external onlyOwner {\n        require(_treasury != address(0), \"Zero address\");\n        treasury = _treasury;\n    }\n\n    function setLpPair(address _lp) external onlyOwner {\n        require(_lp != address(0), \"Zero address\");\n        lpPair = IUniswapV2Pair(_lp);\n    }\n\n    function rescueDAN() external onlyOwner {\n        (bool ok, ) = payable(owner()).call{ value: address(this).balance }(\"\");\n        require(ok, \"Transfer failed\");\n    }\n\n    function rescueToken(address token, uint256 amount) external onlyOwner {\n        IERC20(token).transfer(owner(), amount);\n    }\n}","abi":"[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newBaseFee\",\"type\":\"uint256\"}],\"name\":\"BaseFeeUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint8\",\"name\":\"index\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"container\",\"type\":\"address\"}],\"name\":\"ContainerUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newFeaturePrice\",\"type\":\"uint256\"}],\"name\":\"FeaturePriceUpdated\",\"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\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint8\",\"name\":\"tokenIndex\",\"type\":\"uint8\"}],\"name\":\"TokenDeployed\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"allFees\",\"outputs\":[{\"internalType\":\"uint256[16]\",\"name\":\"usd\",\"type\":\"uint256[16]\"},{\"internalType\":\"uint256[16]\",\"name\":\"native\",\"type\":\"uint256[16]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"baseFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"name\":\"containers\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"tokenIndex\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"_decimals\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"_initialSupply\",\"type\":\"uint256\"}],\"name\":\"createToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"tokenIndex\",\"type\":\"uint8\"}],\"name\":\"deployFeeUSD\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"featurePrice\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLatestPrice\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lpPair\",\"outputs\":[{\"internalType\":\"contract IUniswapV2Pair\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"tokenIndex\",\"type\":\"uint8\"}],\"name\":\"nativeFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"rescueDAN\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"rescueToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"}],\"name\":\"setBaseFee\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"index\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"newContainer\",\"type\":\"address\"}],\"name\":\"setContainer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8[]\",\"name\":\"indexes\",\"type\":\"uint8[]\"},{\"internalType\":\"address[]\",\"name\":\"newContainers\",\"type\":\"address[]\"}],\"name\":\"setContainers\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"}],\"name\":\"setFeaturePrice\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_lp\",\"type\":\"address\"}],\"name\":\"setLpPair\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_treasury\",\"type\":\"address\"}],\"name\":\"setTreasury\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"treasury\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}]"},"tokens":[],"summary":{"isContract":true,"isVerified":true,"name":null,"ensName":null,"creator":"0x8017506544668a0f30bacec64adfe9b0cce7d778","creationTx":null,"publicTags":[],"hasTokens":false,"hasLogs":true,"validatedBlocks":false},"firstLast":{"last":{"hash":"0x522073d3a57eb28c26eb6f22c0cbb05db1793da8fc8aab84c979c68840eead48","timestamp":1786322107,"blockNumber":4043508},"first":{"hash":"0xa7dc09466c5163477c93900b014c966c504dbf1b1acdb54ddfb319da76e20f94","timestamp":1778674679,"blockNumber":222081},"fundedBy":{"address":"0x8017506544668a0f30bacec64adfe9b0cce7d778","hash":"0xbef92caa2b7ce89d886dd161a4e9c45f6798dd1d08d3b858212ecc6c67da59d6"},"complete":true},"tab":"txs","page":1,"offset":25,"scan":{"available":true,"source":"blockscout","ok":true,"message":"OK"},"rows":[{"hash":"0x522073d3a57eb28c26eb6f22c0cbb05db1793da8fc8aab84c979c68840eead48","blockNumber":"4043508","timeStamp":"1786322107","from":"0x2338a80b767ac07ecee28eb29b6197c7e70104c3","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"154011316484546026489","gas":"980270","gasUsed":"971393","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d700000000000000000000000000000000000000000000000000000000000000000000000000000000000000002338a80b767ac07ecee28eb29b6197c7e70104c300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000bebc20000000000000000000000000000000000000000000000000000000000000000094d454d4520434f494e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d454d4500000000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0x0cd8ee31a3970591f243ff74dfc0be92a2756b97804776ca87cd656b638888a5","blockNumber":"3202240","timeStamp":"1784639342","from":"0xa8a509c0c96af29760b5088d90bff84d9995baae","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"549126009331604556628","gas":"1072622","gasUsed":"1063018","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a8a509c0c96af29760b5088d90bff84d9995baae00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000001dcd65000000000000000000000000000000000000000000000000000000000000000007535543434553530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075355434345535300000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0x4b5842e7089fcb714dd8422099e3e2e9cc7006c9e4b43f7b197d54fa505cdbe2","blockNumber":"3007081","timeStamp":"1784248961","from":"0x2338a80b767ac07ecee28eb29b6197c7e70104c3","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"796914726824454933760","gas":"1072561","gasUsed":"1062958","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d700000000000000000000000000000000000000000000000000000000000000010000000000000000000000002338a80b767ac07ecee28eb29b6197c7e70104c300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000011e1a30000000000000000000000000000000000000000000000000000000000000000074c4f564544414e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024c44000000000000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0x5a5ede5e6dc3f9a5d6825bdf336df09c9389adef20b3a7f8a49cbc5e6d3f29fd","blockNumber":"2989300","timeStamp":"1784213212","from":"0xf71aba968b16f0874806706a3cebf236a023ecf6","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"795758656369954563991","gas":"1072694","gasUsed":"1063090","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f71aba968b16f0874806706a3cebf236a023ecf600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000001cf977871000000000000000000000000000000000000000000000000000000000000000953706972697475616c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094157414b454e494e470000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0x32bbc504415f2412fe0c890b767a85c5fb278f2a3c1f3ec278955701276d59a4","blockNumber":"2917574","timeStamp":"1784069760","from":"0x2338a80b767ac07ecee28eb29b6197c7e70104c3","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"867023869844657174316","gas":"1072574","gasUsed":"1062970","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d700000000000000000000000000000000000000000000000000000000000000010000000000000000000000002338a80b767ac07ecee28eb29b6197c7e70104c300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000007594f4b434f494e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003594f4b0000000000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0x0adfe3d314a72a2642d0d6113d092c2295a813b1eb62e834ad0a58c923c1696e","blockNumber":"2780174","timeStamp":"1783794960","from":"0xf71aba968b16f0874806706a3cebf236a023ecf6","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"1419062313187626758640","gas":"1072610","gasUsed":"1063006","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f71aba968b16f0874806706a3cebf236a023ecf600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000006427269676874000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064252494748540000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0x0e601a07f17187850965da13732588fba5a09fbf6429ef377351a4ec1b2ea8a3","blockNumber":"2765793","timeStamp":"1783766198","from":"0x897c623778fc05f1f0141b2a06ceccf6ff9c02cc","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"1397802205128724341151","gas":"1072574","gasUsed":"1062970","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000897c623778fc05f1f0141b2a06ceccf6ff9c02cc00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000014b230ce30000000000000000000000000000000000000000000000000000000000000004424541540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044245415400000000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0x93392b62bd0715d41a315e386dc137d1619d1d778b6ec164ffd3ebf3eff6e717","blockNumber":"2726961","timeStamp":"1783688534","from":"0x2f23504cd6d93cba55d0d6b02f98b31f123ab93e","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"1457076140832936742731","gas":"1072598","gasUsed":"1062994","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d700000000000000000000000000000000000000000000000000000000000000010000000000000000000000002f23504cd6d93cba55d0d6b02f98b31f123ab93e00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000002cb417800000000000000000000000000000000000000000000000000000000000000008416e204f617369730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003414f530000000000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0xaa90e3a57fa78783177c8962187bd337d3b9a4cd1e9c2f6ca2b6f297eac16aa1","blockNumber":"2672073","timeStamp":"1783578757","from":"0x2f8a690f6521227d1a619a7b1f2ee8dac9f38f32","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"1680860346593437532525","gas":"1072561","gasUsed":"1062958","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d700000000000000000000000000000000000000000000000000000000000000010000000000000000000000002f8a690f6521227d1a619a7b1f2ee8dac9f38f3200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000001dcd650000000000000000000000000000000000000000000000000000000000000000075649434f494e200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025649000000000000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0xbe0548f5b1e6c0eddceddfbbe3dacc310d4cc7dbc7f30ebf478a39fb13e53dd9","blockNumber":"2578296","timeStamp":"1783391193","from":"0x897c623778fc05f1f0141b2a06ceccf6ff9c02cc","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"1812146630214531525887","gas":"1174015","gasUsed":"1163613","gasPrice":"5400000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d70000000000000000000000000000000000000000000000000000000000000003000000000000000000000000897c623778fc05f1f0141b2a06ceccf6ff9c02cc00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000b2d05e000000000000000000000000000000000000000000000000000000000000000009546865204561727468000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054541525448000000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0x77500a4b4d209aa656f32117392dacfdedb7203784011ca7a32ef302267c8c64","blockNumber":"643013","timeStamp":"1779516776","from":"0x7973de39120eb7f81f7e163f866d56400a94ae90","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"68436400032466710092212","gas":"1072737","gasUsed":"1063132","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d700000000000000000000000000000000000000000000000000000000000000010000000000000000000000007973de39120eb7f81f7e163f866d56400a94ae9000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000051a88a80000000000000000000000000000000000000000000000000000000000000000d43485249535449414e434f494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000943485249535449414e0000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0xba5aa336bfe2c88f80aed07bf6ef1669d7498c70e55d36d5aa9a1418f3332b9e","blockNumber":"642513","timeStamp":"1779515776","from":"0xbb576f8a4283c9cba153f9c79f2ac4fe50fde526","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"0","gas":"29023","gasUsed":"28675","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xf2fde38b0000000000000000000000003435d20738487c21f24063a4851ff2c6ba20218b","methodId":"0xf2fde38b","functionName":"transferOwnership"},{"hash":"0x5c14ca3a2ff0a58593e104bffd1aad558f415d36e8bb67ff2254a730173c02b9","blockNumber":"642442","timeStamp":"1779515634","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"68436400032466710092212","gas":"1070029","gasUsed":"1060446","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x295ad6d700000000000000000000000000000000000000000000000000000000000000010000000000000000000000003435d20738487c21f24063a4851ff2c6ba20218b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000098968000000000000000000000000000000000000000000000000000000000000000064a53434f494e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024a53000000000000000000000000000000000000000000000000000000000000","methodId":"0x295ad6d7","functionName":"createToken"},{"hash":"0xc9ea5619a62609a426c7f2f4fd46acc39f8f6702c15c73218478d2fb55d7028d","blockNumber":"642299","timeStamp":"1779515348","from":"0xbb576f8a4283c9cba153f9c79f2ac4fe50fde526","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"0","gas":"424855","gasUsed":"420352","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x5b1f48650000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000285094052bc26f843143b00b257ff41abde6270a000000000000000000000000a1479538f9d73adf9317c03f663e1c0f4e53b2c5000000000000000000000000e1247043da07f91f0aac73350020cb0bba44d6120000000000000000000000009aec9234766e21be199dd1ef0ca00dd5480cfb900000000000000000000000001203de582668fa306fc9a4ce84f306c04de5618700000000000000000000000025eac64349e856b66fb569077ccac6de5d8fa4f500000000000000000000000091e8ab60a6e836cc0f76d2cce5dc3b214d1115430000000000000000000000009c2c8aee676dc50194139df826c5d11e05dc882c00000000000000000000000083cb3ef53440f45ae36cad5bea9bbdc6b42d2fea0000000000000000000000000b18ef592bb96a9735d17dc71f247901ad33ba31000000000000000000000000e86dd758e58d89bb41dcc085ddf54b303f0b390e000000000000000000000000b9a6c98a99d32b5f51b17a4667a2232e3088036e000000000000000000000000b8a0e5e64b41d14d39538f86eda4fd3831c042c6000000000000000000000000a87fb0901c705ff6c412976f62feb2fbda13bf900000000000000000000000001e737b6217dd3b4d8b33b3cd21609d564b8dd34d000000000000000000000000279e71bd788224afc91dbd28258bb085109eb1b9","methodId":"0x5b1f4865","functionName":"setContainers"},{"hash":"0x350e15d771ea381c79ecceccdf88584123175a88ddb18b2924a2c5b8c3980d39","blockNumber":"642049","timeStamp":"1779514848","from":"0x3435d20738487c21f24063a4851ff2c6ba20218b","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"0","gas":"29023","gasUsed":"28675","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xf2fde38b000000000000000000000000bb576f8a4283c9cba153f9c79f2ac4fe50fde526","methodId":"0xf2fde38b","functionName":"transferOwnership"},{"hash":"0xbef92caa2b7ce89d886dd161a4e9c45f6798dd1d08d3b858212ecc6c67da59d6","blockNumber":"223478","timeStamp":"1778677473","from":"0x8017506544668a0f30bacec64adfe9b0cce7d778","to":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","contractAddress":"","value":"0","gas":"29023","gasUsed":"28675","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0xf2fde38b0000000000000000000000003435d20738487c21f24063a4851ff2c6ba20218b","methodId":"0xf2fde38b","functionName":"transferOwnership"},{"hash":"0xa7dc09466c5163477c93900b014c966c504dbf1b1acdb54ddfb319da76e20f94","blockNumber":"222081","timeStamp":"1778674679","from":"0x8017506544668a0f30bacec64adfe9b0cce7d778","to":"","contractAddress":"0x77ca35bb6edd186af2a330cff979deb4e01e1a26","value":"0","gas":"1296666","gasUsed":"1285298","gasPrice":"4500000000000","isError":"0","txreceipt_status":"1","input":"0x608060405234801561001057600080fd5b50338061003757604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b610040816100a7565b506802b5e3af16b1880000600255678ac7230489e80000600355600480546001600160a01b031990811673ce79470c765cfd64274b0d43128746bdf9e3a5d21790915560058054909116733435d20738487c21f24063a4851ff2c6ba20218b1790556100f7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611432806101066000396000f3fe60806040526004361061012e5760003560e01c80636ef25c3a116100ab578063a35f942a1161006f578063a35f942a14610326578063ac9f59a214610346578063d958dd3714610366578063f0f4426014610386578063f2fde38b146103a6578063f63841e4146103c657600080fd5b80636ef25c3a146102a5578063715018a6146102bb5780637a7eca2d146102d05780638da5cb5b146102f35780638e15f4731461031157600080fd5b8063452ed4f1116100f2578063452ed4f11461020557806346860698146102255780635b1f48651461024557806361d027b31461026557806362d1e6291461028557600080fd5b8063150b910b1461013a5780631eb30b2f14610151578063295ad6d7146101a457806333f3d628146101b75780633437a1a6146101d757600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103dc565b005b34801561015d57600080fd5b5061018761016c366004610f2f565b6001602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6101876101b2366004610fb1565b610481565b3480156101c357600080fd5b5061014f6101d2366004611063565b610578565b3480156101e357600080fd5b506101f76101f2366004610f2f565b610617565b60405190815260200161019b565b34801561021157600080fd5b50600454610187906001600160a01b031681565b34801561023157600080fd5b5061014f61024036600461108d565b61064c565b34801561025157600080fd5b5061014f6102603660046110eb565b610690565b34801561027157600080fd5b50600554610187906001600160a01b031681565b34801561029157600080fd5b506101f76102a0366004610f2f565b610831565b3480156102b157600080fd5b506101f760025481565b3480156102c757600080fd5b5061014f610856565b3480156102dc57600080fd5b506102e561086a565b60405161019b929190611185565b3480156102ff57600080fd5b506000546001600160a01b0316610187565b34801561031d57600080fd5b506101f7610931565b34801561033257600080fd5b5061014f6103413660046111a2565b6109e6565b34801561035257600080fd5b5061014f61036136600461108d565b610a36565b34801561037257600080fd5b5061014f6103813660046111bd565b610a73565b34801561039257600080fd5b5061014f6103a13660046111a2565b610b2a565b3480156103b257600080fd5b5061014f6103c13660046111a2565b610b7a565b3480156103d257600080fd5b506101f760035481565b6103e4610bb5565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610431576040519150601f19603f3d011682016040523d82523d6000602084013e610436565b606091505b505090508061047e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064015b60405180910390fd5b50565b600060108960ff16106104a65760405162461bcd60e51b8152600401610475906111f0565b6104af89610be2565b6104bb89898989610d16565b60405163d72bdc5360e01b81529091506001600160a01b0382169063d72bdc53906104f6908b908b908b908b908b908b908b90600401611240565b600060405180830381600087803b15801561051057600080fd5b505af1158015610524573d6000803e3d6000fd5b505050508860ff16886001600160a01b0316826001600160a01b03167f1e2a3c6834ae16e8d5619cca2b0213c0052225c0d24238561456c940ec45cc5760405160405180910390a498975050505050505050565b610580610bb5565b816001600160a01b031663a9059cbb6105a16000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156105ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106129190611292565b505050565b6000610621610931565b61062a83610831565b61063c90670de0b6b3a76400006112ca565b61064691906112e1565b92915050565b610654610bb5565b60028190556040518181527f803bee7e92bbc6ae7a1551f9f4ed3e31a8ea8df32e93332f41b0028f1091f9c3906020015b60405180910390a150565b610698610bb5565b8281146106d95760405162461bcd60e51b815260206004820152600f60248201526e098cadccee8d040dad2e6dac2e8c6d608b1b6044820152606401610475565b826107145760405162461bcd60e51b815260206004820152600b60248201526a456d70747920617272617960a81b6044820152606401610475565b60005b8381101561082a57600085858381811061073357610733611303565b90506020020160208101906107489190610f2f565b9050600084848481811061075e5761075e611303565b905060200201602081019061077391906111a2565b905060108260ff16106107985760405162461bcd60e51b8152600401610475906111f0565b6001600160a01b0381166107be5760405162461bcd60e51b815260040161047590611319565b60ff821660008181526001602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591519182527f4cdfac5fb51264c4fbdd6d94238f5afb74b2f96f2e95d361effb634c9605157b910160405180910390a25050600101610717565b5050505050565b600061083c82610e80565b60035461084991906112ca565b600254610646919061133f565b61085e610bb5565b6108686000610eaf565b565b610872610eff565b61087a610eff565b6000610884610931565b905060005b60108160ff16101561092b5761089e81610e80565b6003546108ab91906112ca565b6002546108b8919061133f565b848260ff16601081106108cd576108cd611303565b6020020152818460ff8316601081106108e8576108e8611303565b60200201516108ff90670de0b6b3a76400006112ca565b61090991906112e1565b838260ff166010811061091e5761091e611303565b6020020152600101610889565b50509091565b6000806000600460009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610989573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ad9190611369565b506001600160701b039182169350169050806109d5836b204fce5e3e250261100000006112ca565b6109df91906112e1565b9250505090565b6109ee610bb5565b6001600160a01b038116610a145760405162461bcd60e51b815260040161047590611319565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b610a3e610bb5565b60038190556040518181527fa9edfdb608cc1f9893f87cb14e544d442de05751fe8c90dec220dd8c09be9f9890602001610685565b610a7b610bb5565b60108260ff1610610a9e5760405162461bcd60e51b8152600401610475906111f0565b6001600160a01b038116610ac45760405162461bcd60e51b815260040161047590611319565b60ff821660008181526001602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591519182527f4cdfac5fb51264c4fbdd6d94238f5afb74b2f96f2e95d361effb634c9605157b910160405180910390a25050565b610b32610bb5565b6001600160a01b038116610b585760405162461bcd60e51b815260040161047590611319565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610b82610bb5565b6001600160a01b038116610bac57604051631e4fbdf760e01b815260006004820152602401610475565b61047e81610eaf565b6000546001600160a01b031633146108685760405163118cdaa760e01b8152336004820152602401610475565b6005546001600160a01b0316610c2d5760405162461bcd60e51b815260206004820152601060248201526f151c99585cdd5c9e481b9bdd081cd95d60821b6044820152606401610475565b6000610c3882610617565b905080341015610c7d5760405162461bcd60e51b815260206004820152601060248201526f496e73756666696369656e742066656560801b6044820152606401610475565b6005546040516000916001600160a01b03169034908381818185875af1925050503d8060008114610cca576040519150601f19603f3d011682016040523d82523d6000602084013e610ccf565b606091505b50509050806106125760405162461bcd60e51b8152602060048201526013602482015272119959481d1c985b9cd9995c8819985a5b1959606a1b6044820152606401610475565b60ff84166000908152600160205260408120546001600160a01b031680610d7f5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e2074797065206e6f7420617661696c61626c6500000000000000006044820152606401610475565b6000816001600160a01b0316803b806020016040519081016040528181526000908060200190933c90506000815111610dec5760405162461bcd60e51b815260206004820152600f60248201526e22b6b83a3c9031b7b73a30b4b732b960891b6044820152606401610475565b6000878686428a604051602001610e079594939291906113b9565b604051602081830303815290604052805190602001209050808251602084016000f593506001600160a01b038416610e755760405162461bcd60e51b815260206004820152601160248201527011195c1b1bde5b595b9d0819985a5b1959607a1b6044820152606401610475565b505050949350505050565b60005b60ff821615610eaa57610e99600183168261133f565b905060018260ff16901c9150610e83565b919050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040518061020001604052806010906020820280368337509192915050565b803560ff81168114610eaa57600080fd5b600060208284031215610f4157600080fd5b610f4a82610f1e565b9392505050565b80356001600160a01b0381168114610eaa57600080fd5b60008083601f840112610f7a57600080fd5b50813567ffffffffffffffff811115610f9257600080fd5b602083019150836020828501011115610faa57600080fd5b9250929050565b60008060008060008060008060c0898b031215610fcd57600080fd5b610fd689610f1e565b9750610fe460208a01610f51565b9650604089013567ffffffffffffffff81111561100057600080fd5b61100c8b828c01610f68565b909750955050606089013567ffffffffffffffff81111561102c57600080fd5b6110388b828c01610f68565b909550935061104b905060808a01610f1e565b979a969950949793969295919450919260a001359150565b6000806040838503121561107657600080fd5b61107f83610f51565b946020939093013593505050565b60006020828403121561109f57600080fd5b5035919050565b60008083601f8401126110b857600080fd5b50813567ffffffffffffffff8111156110d057600080fd5b6020830191508360208260051b8501011115610faa57600080fd5b6000806000806040858703121561110157600080fd5b843567ffffffffffffffff81111561111857600080fd5b611124878288016110a6565b909550935050602085013567ffffffffffffffff81111561114457600080fd5b611150878288016110a6565b95989497509550505050565b8060005b601081101561117f578151845260209384019390910190600101611160565b50505050565b6104008101611194828561115c565b610f4a61020083018461115c565b6000602082840312156111b457600080fd5b610f4a82610f51565b600080604083850312156111d057600080fd5b6111d983610f1e565b91506111e760208401610f51565b90509250929050565b6020808252600d908201526c092dcecc2d8d2c840d2dcc8caf609b1b604082015260600190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b038816815260a060208201819052600090611265908301888a611217565b8281036040840152611278818789611217565b60ff95909516606084015250506080015295945050505050565b6000602082840312156112a457600080fd5b81518015158114610f4a57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610646576106466112b4565b6000826112fe57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b80820180821115610646576106466112b4565b80516001600160701b0381168114610eaa57600080fd5b60008060006060848603121561137e57600080fd5b61138784611352565b925061139560208501611352565b9150604084015163ffffffff811681146113ae57600080fd5b809150509250925092565b60f886901b6001600160f81b031916815283856001830137600193019283019190915260601b6bffffffffffffffffffffffff191660218201526035019291505056fea26469706673582212202b127ba711b52b6a0b9e3edf10427e5732e7ebb4b23475b216ede9081da7d65164736f6c63430008220033","methodId":"0x60806040","functionName":""}],"nextCursor":null}