FTM Price: $0.703741 (+2.19%)
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve896218462024-08-22 9:46:1347 days ago1724319973IN
0xB09bE11D...ea4BA5837
0 FTM0.000204378
Approve896218402024-08-22 9:46:0747 days ago1724319967IN
0xB09bE11D...ea4BA5837
0 FTM0.000204378
Approve658113222023-07-14 21:28:11452 days ago1689370091IN
0xB09bE11D...ea4BA5837
0 FTM0.01803065668
Approve609422922023-04-27 22:49:07530 days ago1682635747IN
0xB09bE11D...ea4BA5837
0 FTM0.00709692294.45372243
Approve355232322022-04-08 6:17:19914 days ago1649398639IN
0xB09bE11D...ea4BA5837
0 FTM0.00254789166.0191
Approve328447042022-03-08 3:42:51946 days ago1646710971IN
0xB09bE11D...ea4BA5837
0 FTM0.01582162585.856
Approve328446482022-03-08 3:41:57946 days ago1646710917IN
0xB09bE11D...ea4BA5837
0 FTM0.02594521585.856
Approve325956422022-03-05 5:22:16948 days ago1646457736IN
0xB09bE11D...ea4BA5837
0 FTM0.00506139329.797
Approve324757192022-03-03 22:18:35950 days ago1646345915IN
0xB09bE11D...ea4BA5837
0 FTM0.0209171349.4512
Approve324216082022-03-03 7:37:48950 days ago1646293068IN
0xB09bE11D...ea4BA5837
0 FTM0.076478241,277.6826
Approve319405132022-02-25 14:14:33956 days ago1645798473IN
0xB09bE11D...ea4BA5837
0 FTM0.054607582,599
Approve317881312022-02-23 11:47:02958 days ago1645616822IN
0xB09bE11D...ea4BA5837
0 FTM0.01863556311.3347
Approve317114162022-02-22 15:50:18959 days ago1645545018IN
0xB09bE11D...ea4BA5837
0 FTM0.02213074499.7232
Approve316926962022-02-22 10:35:44959 days ago1645526144IN
0xB09bE11D...ea4BA5837
0 FTM0.00965434218
Approve316680912022-02-22 4:34:06959 days ago1645504446IN
0xB09bE11D...ea4BA5837
0 FTM0.01648783354.577
Approve316521072022-02-22 0:24:50960 days ago1645489490IN
0xB09bE11D...ea4BA5837
0 FTM0.062227411,338.224
Approve316371382022-02-21 19:45:25960 days ago1645472725IN
0xB09bE11D...ea4BA5837
0 FTM0.01713226386.8552
Approve316293152022-02-21 17:43:10960 days ago1645465390IN
0xB09bE11D...ea4BA5837
0 FTM0.01752125395.6386
Approve316182212022-02-21 14:52:32960 days ago1645455152IN
0xB09bE11D...ea4BA5837
0 FTM0.03271792738.7872
Approve316170982022-02-21 14:31:20960 days ago1645453880IN
0xB09bE11D...ea4BA5837
0 FTM0.03119838704.4752
Approve316125622022-02-21 13:18:00960 days ago1645449480IN
0xB09bE11D...ea4BA5837
0 FTM0.02960047668.3936
Approve316100532022-02-21 12:30:19960 days ago1645446619IN
0xB09bE11D...ea4BA5837
0 FTM0.01879344404.16
Approve316082202022-02-21 11:55:23960 days ago1645444523IN
0xB09bE11D...ea4BA5837
0 FTM0.01484708335.2546
Approve315907372022-02-21 7:29:13960 days ago1645428553IN
0xB09bE11D...ea4BA5837
0 FTM0.01563641353.078
Approve315893962022-02-21 7:10:39960 days ago1645427439IN
0xB09bE11D...ea4BA5837
0 FTM0.01650665372.7285
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
309196412022-02-14 6:57:23967 days ago1644821843  Contract Creation0 FTM
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x799192a0...114CB24b0
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
LPPair

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 10: LPPair.sol
// SPDX-License-Identifier: MIT
/**
Pretty much standart, the only thing that slightly change is the _mintFee() function
that lets us to change the portion of fees that go to the feeaddress and to LP providers. (line 100 and 101)
Other things are exactly the same as polyzap an all the other UniswapV2 forks
 */
pragma solidity >= 0.5.16;

import "./SafeMath.sol";
import "./UQ112x112.sol";
import "./Math.sol";
import "./ILPPair.sol";
import "./ILPFactory.sol";
import "./ISwapCallee.sol";
import "./IERC20.sol";
import "./SwapERC20.sol";

contract LPPair is ILPPair, SwapERC20 {
    using SafeMath  for uint;
    using UQ112x112 for uint224;

    uint16 public constant SWAP_FEE_BP = 13;
    uint public constant MINIMUM_LIQUIDITY = 10**3;
    bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));

    address public factory;
    address public token0;
    address public token1;

    uint112 private reserve0;           // uses single storage slot, accessible via getReserves
    uint112 private reserve1;           // uses single storage slot, accessible via getReserves
    uint32  private blockTimestampLast; // uses single storage slot, accessible via getReserves

    uint public price0CumulativeLast;
    uint public price1CumulativeLast;
    uint public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event

    uint private unlocked = 1;
    modifier lock() {
        require(unlocked == 1, 'lock: LOCKED');
        unlocked = 0;
        _;
        unlocked = 1;
    }

    function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) {
        _reserve0 = reserve0;
        _reserve1 = reserve1;
        _blockTimestampLast = blockTimestampLast;
    }

    function _safeTransfer(address token, address to, uint value) private {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), '_safeTransfer: TRANSFER_FAILED');
    }

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    constructor() public {
        factory = msg.sender;
    }

    // called once by the factory at time of deployment
    function initialize(address _token0, address _token1) external {
        require(msg.sender == factory, 'initialize: FORBIDDEN'); // sufficient check
        token0 = _token0;
        token1 = _token1;
    }

    // update reserves and, on the first call per block, price accumulators
    function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
        require(balance0 <= uint112(-1) && balance1 <= uint112(-1), '_update: OVERFLOW');
        uint32 blockTimestamp = uint32(block.timestamp % 2**32);
        uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
        if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
            // * never overflows, and + overflow is desired
            price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed;
            price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed;
        }
        reserve0 = uint112(balance0);
        reserve1 = uint112(balance1);
        blockTimestampLast = blockTimestamp;
        emit Sync(reserve0, reserve1);
    }

    // if fee is on, mint liquidity equivalent to 1/6 of the growth in sqrt(k)
    function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
        address feeTo = ILPFactory(factory).feeTo();
        feeOn = feeTo != address(0);
        uint _kLast = kLast; // gas savings
        if (feeOn) {
            if (_kLast != 0) {
                uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
                uint rootKLast = Math.sqrt(_kLast);
                if (rootK > rootKLast) {
                    uint16 feeExtractAmount = ILPFactory(factory).feeAmount();
                    uint numerator = totalSupply.mul(rootK.sub(rootKLast)).mul(feeExtractAmount);
                    uint denominator = rootK.mul(SWAP_FEE_BP - feeExtractAmount).add(rootKLast.mul(feeExtractAmount));
                    uint liquidity = numerator / denominator;
                    if (liquidity > 0) _mint(feeTo, liquidity);
                }
            }
        } else if (_kLast != 0) {
            kLast = 0;
        }
    }

    // this low-level function should be called from a contract which performs important safety checks
    function mint(address to) external lock returns (uint liquidity) {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        uint balance0 = IERC20(token0).balanceOf(address(this));
        uint balance1 = IERC20(token1).balanceOf(address(this));
        uint amount0 = balance0.sub(_reserve0);
        uint amount1 = balance1.sub(_reserve1);

        bool feeOn = _mintFee(_reserve0, _reserve1);
        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        if (_totalSupply == 0) {
            liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY);
           _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
        } else {
            liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
        }
        require(liquidity > 0, 'mint: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);

        _update(balance0, balance1, _reserve0, _reserve1);
        if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
        emit Mint(msg.sender, amount0, amount1);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function burn(address to) external lock returns (uint amount0, uint amount1) {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        address _token0 = token0;                                // gas savings
        address _token1 = token1;                                // gas savings
        uint balance0 = IERC20(_token0).balanceOf(address(this));
        uint balance1 = IERC20(_token1).balanceOf(address(this));
        uint liquidity = balanceOf[address(this)];

        bool feeOn = _mintFee(_reserve0, _reserve1);
        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution
        amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution
        require(amount0 > 0 && amount1 > 0, 'burn: INSUFFICIENT_LIQUIDITY_BURNED');
        _burn(address(this), liquidity);
        _safeTransfer(_token0, to, amount0);
        _safeTransfer(_token1, to, amount1);
        balance0 = IERC20(_token0).balanceOf(address(this));
        balance1 = IERC20(_token1).balanceOf(address(this));

        _update(balance0, balance1, _reserve0, _reserve1);
        if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
        emit Burn(msg.sender, amount0, amount1, to);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
        require(amount0Out > 0 || amount1Out > 0, 'swap: INSUFFICIENT_OUTPUT_AMOUNT');
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        require(amount0Out < _reserve0 && amount1Out < _reserve1, 'swap: INSUFFICIENT_LIQUIDITY');

        uint balance0;
        uint balance1;
        { // scope for _token{0,1}, avoids stack too deep errors
        address _token0 = token0;
        address _token1 = token1;
        require(to != _token0 && to != _token1, 'swap: INVALID_TO');
        if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
        if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
        if (data.length > 0) ISwapCallee(to).pancakeCall(msg.sender, amount0Out, amount1Out, data);
        balance0 = IERC20(_token0).balanceOf(address(this));
        balance1 = IERC20(_token1).balanceOf(address(this));
        }
        uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
        uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
        require(amount0In > 0 || amount1In > 0, 'swap: INSUFFICIENT_INPUT_AMOUNT');
        { // scope for reserve{0,1}Adjusted, avoids stack too deep errors
        uint balance0Adjusted = (balance0.mul(10000).sub(amount0In.mul(SWAP_FEE_BP))); //Mod for fees
        uint balance1Adjusted = (balance1.mul(10000).sub(amount1In.mul(SWAP_FEE_BP))); //Mod for fees
        require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(10000**2), 'swap: K');
        }

        _update(balance0, balance1, _reserve0, _reserve1);
        emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
    }

    // force balances to match reserves
    function skim(address to) external lock {
        address _token0 = token0; // gas savings
        address _token1 = token1; // gas savings
        _safeTransfer(_token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0));
        _safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1));
    }

    // force reserves to match balances
    function sync() external lock {
        _update(IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1);
    }
}

File 2 of 10: IERC20.sol
pragma solidity >=0.5.0;

interface IERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
}

File 3 of 10: ILPFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity >= 0.5.16;


interface ILPFactory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
    function feeAmount() external view returns (uint16);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 4 of 10: ILPPair.sol
pragma solidity >=0.5.0;

interface ILPPair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 5 of 10: ISwapCallee.sol
pragma solidity >=0.5.0;

interface ISwapCallee {
    function pancakeCall(address sender, uint amount0, uint amount1, bytes calldata data) external;
}

File 6 of 10: ISwapERC20.sol
pragma solidity >=0.5.0;

interface ISwapERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}

File 7 of 10: Math.sol
pragma solidity =0.5.16;

// a library for performing various math operations

library Math {
    function min(uint x, uint y) internal pure returns (uint z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint y) internal pure returns (uint z) {
        if (y > 3) {
            z = y;
            uint x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}

File 8 of 10: SafeMath.sol
pragma solidity =0.5.16;

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)

library SafeMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
}

File 9 of 10: SwapERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity = 0.5.16;

import "./ISwapERC20.sol";
import "./SafeMath.sol";

contract SwapERC20 is ISwapERC20 {
    using SafeMath for uint;

    string public constant name = 'Farmtom LPs';
    string public constant symbol = 'Farmtom-LP';
    uint8 public constant decimals = 18;
    uint  public totalSupply;
    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) public allowance;

    bytes32 public DOMAIN_SEPARATOR;
    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint) public nonces;

    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    constructor() public {
        uint chainId;
        assembly {
            chainId := chainid()
        }
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
                keccak256(bytes(name)),
                keccak256(bytes('1')),
                chainId,
                address(this)
            )
        );
    }

    function _mint(address to, uint value) internal {
        totalSupply = totalSupply.add(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(address(0), to, value);
    }

    function _burn(address from, uint value) internal {
        balanceOf[from] = balanceOf[from].sub(value);
        totalSupply = totalSupply.sub(value);
        emit Transfer(from, address(0), value);
    }

    function _approve(address owner, address spender, uint value) private {
        allowance[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function _transfer(address from, address to, uint value) private {
        balanceOf[from] = balanceOf[from].sub(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(from, to, value);
    }

    function approve(address spender, uint value) external returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function transfer(address to, uint value) external returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    function transferFrom(address from, address to, uint value) external returns (bool) {
        if (allowance[from][msg.sender] != uint(-1)) {
            allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
        }
        _transfer(from, to, value);
        return true;
    }

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        require(deadline >= block.timestamp, 'permit: EXPIRED');
        bytes32 digest = keccak256(
            abi.encodePacked(
                '\x19\x01',
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
            )
        );
        address recoveredAddress = ecrecover(digest, v, r, s);
        require(recoveredAddress != address(0) && recoveredAddress == owner, 'permit: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}

File 10 of 10: UQ112x112.sol
pragma solidity =0.5.16;

// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))

// range: [0, 2**112 - 1]
// resolution: 1 / 2**112

library UQ112x112 {
    uint224 constant Q112 = 2**112;

    // encode a uint112 as a UQ112x112
    function encode(uint112 y) internal pure returns (uint224 z) {
        z = uint224(y) * Q112; // never overflows
    }

    // divide a UQ112x112 by a uint112, returning a UQ112x112
    function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) {
        z = x / uint224(y);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"reserve0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"reserve1","type":"uint112"}],"name":"Sync","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"},{"constant":true,"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SWAP_FEE_BP","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"sync","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636a627842116100f9578063ba9a7a5611610097578063d21220a711610071578063d21220a714610604578063d505accf1461060c578063dd62ed3e1461066a578063fff6cae9146106a5576101c4565b8063ba9a7a56146105c1578063bc25cf77146105c9578063c45a0155146105fc576101c4565b80637ecebe00116100d35780637ecebe001461050157806389afcb441461053457806395d89b4114610580578063a9059cbb14610588576101c4565b80636a6278421461049357806370a08231146104c65780637464fc3d146104f9576101c4565b806330adf81f11610166578063485cc95511610140578063485cc9551461042957806353861f14146104645780635909c0d5146104835780635a3d54931461048b576101c4565b806330adf81f146103fb578063313ce567146104035780633644e51514610421576101c4565b8063095ea7b3116101a2578063095ea7b3146103205780630dfe16811461036d57806318160ddd1461039e57806323b872dd146103b8576101c4565b8063022c0d9f146101c957806306fdde03146102645780630902f1ac146102e1575b600080fd5b610262600480360360808110156101df57600080fd5b81359160208101359173ffffffffffffffffffffffffffffffffffffffff604083013516919081019060808101606082013564010000000081111561022357600080fd5b82018360208201111561023557600080fd5b8035906020019184600183028401116401000000008311171561025757600080fd5b5090925090506106ad565b005b61026c610dc4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a657818101518382015260200161028e565b50505050905090810190601f1680156102d35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e9610dfd565b604080516dffffffffffffffffffffffffffff948516815292909316602083015263ffffffff168183015290519081900360600190f35b6103596004803603604081101561033657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e52565b604080519115158252519081900360200190f35b610375610e69565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103a6610e85565b60408051918252519081900360200190f35b610359600480360360608110156103ce57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610e8b565b6103a6610f6a565b61040b610f8e565b6040805160ff9092168252519081900360200190f35b6103a6610f93565b6102626004803603604081101561043f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610f99565b61046c611072565b6040805161ffff9092168252519081900360200190f35b6103a6611077565b6103a661107d565b6103a6600480360360208110156104a957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611083565b6103a6600480360360208110156104dc57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661143d565b6103a661144f565b6103a66004803603602081101561051757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611455565b6105676004803603602081101561054a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611467565b6040805192835260208301919091528051918290030190f35b61026c611904565b6103596004803603604081101561059e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561193d565b6103a661194a565b610262600480360360208110156105df57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611950565b610375611b46565b610375611b62565b610262600480360360e081101561062257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611b7e565b6103a66004803603604081101561068057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611e4a565b610262611e67565b600c5460011461071e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6c6f636b3a204c4f434b45440000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600c55841515806107315750600084115b61079c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f737761703a20494e53554646494349454e545f4f55545055545f414d4f554e54604482015290519081900360640190fd5b6000806107a7610dfd565b5091509150816dffffffffffffffffffffffffffff16871080156107da5750806dffffffffffffffffffffffffffff1686105b61084557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f737761703a20494e53554646494349454e545f4c495155494449545900000000604482015290519081900360640190fd5b600654600754600091829173ffffffffffffffffffffffffffffffffffffffff9182169190811690891682148015906108aa57508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b61091557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f737761703a20494e56414c49445f544f00000000000000000000000000000000604482015290519081900360640190fd5b8a1561092657610926828a8d61204d565b891561093757610937818a8c61204d565b8615610a19578873ffffffffffffffffffffffffffffffffffffffff166384800812338d8d8c8c6040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610a0057600080fd5b505af1158015610a14573d6000803e3d6000fd5b505050505b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b158015610a8557600080fd5b505afa158015610a99573d6000803e3d6000fd5b505050506040513d6020811015610aaf57600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8316916370a0823191602480820192602092909190829003018186803b158015610b2157600080fd5b505afa158015610b35573d6000803e3d6000fd5b505050506040513d6020811015610b4b57600080fd5b5051925060009150506dffffffffffffffffffffffffffff85168a90038311610b75576000610b8b565b89856dffffffffffffffffffffffffffff160383035b9050600089856dffffffffffffffffffffffffffff16038311610baf576000610bc5565b89856dffffffffffffffffffffffffffff160383035b90506000821180610bd65750600081115b610c4157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f737761703a20494e53554646494349454e545f494e5055545f414d4f554e5400604482015290519081900360640190fd5b6000610c75610c5784600d63ffffffff61225a16565b610c698761271063ffffffff61225a16565b9063ffffffff6122e016565b90506000610c8d610c5784600d63ffffffff61225a16565b9050610cc66305f5e100610cba6dffffffffffffffffffffffffffff8b8116908b1663ffffffff61225a16565b9063ffffffff61225a16565b610cd6838363ffffffff61225a16565b1015610d4357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f737761703a204b00000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b5050610d5184848888612352565b60408051838152602081018390528082018d9052606081018c9052905173ffffffffffffffffffffffffffffffffffffffff8b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280600b81526020017f4661726d746f6d204c507300000000000000000000000000000000000000000081525081565b6008546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000008304909116917c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690565b6000610e5f33848461260e565b5060015b92915050565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14610f555773ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054610f23908363ffffffff6122e016565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020555b610f6084848461267d565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b60055473ffffffffffffffffffffffffffffffffffffffff16331461101f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f696e697469616c697a653a20464f5242494444454e0000000000000000000000604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560078054929093169116179055565b600d81565b60095481565b600a5481565b6000600c546001146110f657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6c6f636b3a204c4f434b45440000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600c81905580611106610dfd565b50600654604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905193955091935060009273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b15801561118057600080fd5b505afa158015611194573d6000803e3d6000fd5b505050506040513d60208110156111aa57600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905192935060009273ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b15801561122357600080fd5b505afa158015611237573d6000803e3d6000fd5b505050506040513d602081101561124d57600080fd5b505190506000611273836dffffffffffffffffffffffffffff871663ffffffff6122e016565b90506000611297836dffffffffffffffffffffffffffff871663ffffffff6122e016565b905060006112a5878761275e565b600054909150806112e2576112ce6103e8610c696112c9878763ffffffff61225a16565b6129a6565b98506112dd60006103e86129f8565b61133f565b61133c6dffffffffffffffffffffffffffff8916611306868463ffffffff61225a16565b8161130d57fe5b046dffffffffffffffffffffffffffff891661132f868563ffffffff61225a16565b8161133657fe5b04612aa8565b98505b60008911611398576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612c5d6023913960400191505060405180910390fd5b6113a28a8a6129f8565b6113ae86868a8a612352565b81156113f0576008546113ec906dffffffffffffffffffffffffffff808216916e01000000000000000000000000000090041663ffffffff61225a16565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c546001146114db57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6c6f636b3a204c4f434b45440000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600c819055806114eb610dfd565b50600654600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905194965092945073ffffffffffffffffffffffffffffffffffffffff9182169391169160009184916370a08231916024808301926020929190829003018186803b15801561156d57600080fd5b505afa158015611581573d6000803e3d6000fd5b505050506040513d602081101561159757600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191925060009173ffffffffffffffffffffffffffffffffffffffff8516916370a08231916024808301926020929190829003018186803b15801561160b57600080fd5b505afa15801561161f573d6000803e3d6000fd5b505050506040513d602081101561163557600080fd5b505130600090815260016020526040812054919250611654888861275e565b6000549091508061166b848763ffffffff61225a16565b8161167257fe5b049a5080611686848663ffffffff61225a16565b8161168d57fe5b04995060008b1180156116a0575060008a115b6116f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612c806023913960400191505060405180910390fd5b6116ff3084612ac0565b61170a878d8d61204d565b611715868d8c61204d565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8916916370a08231916024808301926020929190829003018186803b15801561178157600080fd5b505afa158015611795573d6000803e3d6000fd5b505050506040513d60208110156117ab57600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191965073ffffffffffffffffffffffffffffffffffffffff8816916370a0823191602480820192602092909190829003018186803b15801561181d57600080fd5b505afa158015611831573d6000803e3d6000fd5b505050506040513d602081101561184757600080fd5b5051935061185785858b8b612352565b811561189957600854611895906dffffffffffffffffffffffffffff808216916e01000000000000000000000000000090041663ffffffff61225a16565b600b555b604080518c8152602081018c9052815173ffffffffffffffffffffffffffffffffffffffff8f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b6040518060400160405280600a81526020017f4661726d746f6d2d4c500000000000000000000000000000000000000000000081525081565b6000610e5f33848461267d565b6103e881565b600c546001146119c157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6c6f636b3a204c4f434b45440000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600c55600654600754600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff9485169490931692611a9d9285928792611a98926dffffffffffffffffffffffffffff169185916370a0823191602480820192602092909190829003018186803b158015611a6057600080fd5b505afa158015611a74573d6000803e3d6000fd5b505050506040513d6020811015611a8a57600080fd5b50519063ffffffff6122e016565b61204d565b600854604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051611b3c9284928792611a98926e01000000000000000000000000000090046dffffffffffffffffffffffffffff169173ffffffffffffffffffffffffffffffffffffffff8616916370a0823191602480820192602092909190829003018186803b158015611a6057600080fd5b50506001600c5550565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b42841015611bed57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f7065726d69743a20455850495245440000000000000000000000000000000000604482015290519081900360640190fd5b60035473ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015611d4e573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590611dc957508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b611e3457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f7065726d69743a20494e56414c49445f5349474e415455524500000000000000604482015290519081900360640190fd5b611e3f89898961260e565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c54600114611ed857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6c6f636b3a204c4f434b45440000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600c55600654604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516120469273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015611f4f57600080fd5b505afa158015611f63573d6000803e3d6000fd5b505050506040513d6020811015611f7957600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b158015611fec57600080fd5b505afa158015612000573d6000803e3d6000fd5b505050506040513d602081101561201657600080fd5b50516008546dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416612352565b6001600c55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009460609489169392918291908083835b6020831061215357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612116565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146121b5576040519150601f19603f3d011682016040523d82523d6000602084013e6121ba565b606091505b50915091508180156121e85750805115806121e857508080602001905160208110156121e557600080fd5b50515b61225357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5f736166655472616e736665723a205452414e534645525f4641494c45440000604482015290519081900360640190fd5b5050505050565b60008115806122755750508082028282828161227257fe5b04145b610e6357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b80820382811115610e6357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6dffffffffffffffffffffffffffff841180159061237e57506dffffffffffffffffffffffffffff8311155b6123e957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5f7570646174653a204f564552464c4f57000000000000000000000000000000604482015290519081900360640190fd5b60085463ffffffff428116917c01000000000000000000000000000000000000000000000000000000009004811682039081161580159061243957506dffffffffffffffffffffffffffff841615155b801561245457506dffffffffffffffffffffffffffff831615155b15612504578063ffffffff166124978561246d86612b85565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169063ffffffff612ba916565b600980547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff929092169290920201905563ffffffff81166124d78461246d87612b85565b600a80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff92909216929092020190555b600880547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff888116919091177fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff166e0100000000000000000000000000008883168102919091177bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260409020546126b3908263ffffffff6122e016565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602052604080822093909355908416815220546126f5908263ffffffff612bea16565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b1580156127c957600080fd5b505afa1580156127dd573d6000803e3d6000fd5b505050506040513d60208110156127f357600080fd5b5051600b5473ffffffffffffffffffffffffffffffffffffffff821615801594509192509061299257801561298d57600061284a6112c96dffffffffffffffffffffffffffff88811690881663ffffffff61225a16565b90506000612857836129a6565b90508082111561298a57600554604080517f69e15404000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff16916369e15404916004808301926020929190829003018186803b1580156128cc57600080fd5b505afa1580156128e0573d6000803e3d6000fd5b505050506040513d60208110156128f657600080fd5b50519050600061292661ffff8316610cba612917878763ffffffff6122e016565b6000549063ffffffff61225a16565b905060006129656129418561ffff861663ffffffff61225a16565b6129598761ffff600d8890031663ffffffff61225a16565b9063ffffffff612bea16565b9050600081838161297257fe5b04905080156129855761298588826129f8565b505050505b50505b61299e565b801561299e576000600b555b505092915050565b600060038211156129e9575080600160028204015b818110156129e3578091506002818285816129d257fe5b0401816129db57fe5b0490506129bb565b506129f3565b81156129f3575060015b919050565b600054612a0b908263ffffffff612bea16565b600090815573ffffffffffffffffffffffffffffffffffffffff8316815260016020526040902054612a43908263ffffffff612bea16565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818310612ab75781612ab9565b825b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054612af6908263ffffffff6122e016565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604081209190915554612b30908263ffffffff6122e016565b600090815560408051838152905173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff841681612be257fe5b049392505050565b80820182811015610e6357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe6d696e743a20494e53554646494349454e545f4c49515549444954595f4d494e5445446275726e3a20494e53554646494349454e545f4c49515549444954595f4255524e4544a265627a7a723158207b1aa6ebbe6d874977cc3e26bbbdead545ac594305dccf537e14ce3e468c182d64736f6c63430005100032

Deployed Bytecode Sourcemap

541:9679:5:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;541:9679:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7755:1886;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;7755:1886:5;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;7755:1886:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;7755:1886:5;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;7755:1886:5;;-1:-1:-1;7755:1886:5;-1:-1:-1;7755:1886:5;:::i;:::-;;182:43:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;182:43:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1556:227:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2182:144:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2182:144:8;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;869:21:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;322:24:8;;;:::i;:::-;;;;;;;;;;;;;;;;2474:295;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2474:295:8;;;;;;;;;;;;;;;;;;:::i;608:108::-;;;:::i;281:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;467:31;;;:::i;2592:207:5:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2592:207:5;;;;;;;;;;;:::i;649:39::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1213:32;;;:::i;1251:::-;;;:::i;4884:1214::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4884:1214:5;;;;:::i;352:41:8:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;352:41:8;;;;:::i;1289:17:5:-;;;:::i;722:38:8:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;722:38:8;;;;:::i;6207:1439:5:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6207:1439:5;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;231:44:8;;;:::i;2332:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2332:136:8;;;;;;;;;:::i;694:46:5:-;;;:::i;9687:329::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9687:329:5;;;;:::i;841:22::-;;;:::i;896:21::-;;;:::i;2775:656:8:-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;2775:656:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;399:61::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;399:61:8;;;;;;;;;;;:::i;10062:156:5:-;;;:::i;7755:1886::-;1458:8;;1470:1;1458:13;1450:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509:1;1498:8;:12;7868:14;;;;:32;;;7899:1;7886:10;:14;7868:32;7860:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7948:17;7967;7989:13;:11;:13::i;:::-;7947:55;;;;;8048:9;8035:22;;:10;:22;:48;;;;;8074:9;8061:22;;:10;:22;8035:48;8027:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8256:6;;8290;;8127:13;;;;8256:6;;;;;8290;;;;8314:13;;;;;;;:30;;;8337:7;8331:13;;:2;:13;;;;8314:30;8306:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8379:14;;8375:58;;8395:38;8409:7;8418:2;8422:10;8395:13;:38::i;:::-;8481:14;;8477:58;;8497:38;8511:7;8520:2;8524:10;8497:13;:38::i;:::-;8583:15;;8579:90;;8612:2;8600:27;;;8628:10;8640;8652;8664:4;;8600:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;8600:69:5;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8600:69:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8600:69:5;;;;8579:90;8690:40;;;;;;8724:4;8690:40;;;;;;:25;;;;;;:40;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;8690:40:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8690:40:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8690:40:5;8751;;;;;;8785:4;8751:40;;;;;;8690;;-1:-1:-1;8751:25:5;;;;;;:40;;;;;8690;;8751;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;8751:40:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8751:40:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8751:40:5;;-1:-1:-1;8811:14:5;;-1:-1:-1;;8839:22:5;;;;;;8828:33;;:75;;8902:1;8828:75;;;8888:10;8876:9;:22;;;8864:8;:35;8828:75;8811:92;;8913:14;8953:10;8941:9;:22;;;8930:8;:33;:75;;9004:1;8930:75;;;8990:10;8978:9;:22;;;8966:8;:35;8930:75;8913:92;;9035:1;9023:9;:13;:30;;;;9052:1;9040:9;:13;9023:30;9015:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9173:21;9198:51;9222:26;:9;686:2;9222:26;:13;:26;:::i;:::-;9198:19;:8;9211:5;9198:19;:12;:19;:::i;:::-;:23;:51;:23;:51;:::i;:::-;9173:77;-1:-1:-1;9275:21:5;9300:51;9324:26;:9;686:2;9324:26;:13;:26;:::i;9300:51::-;9275:77;-1:-1:-1;9427:44:5;9462:8;9427:30;;:15;;;;:30;;;:19;:30;:::i;:::-;:34;:44;:34;:44;:::i;:::-;9385:38;:16;9406;9385:38;:20;:38;:::i;:::-;:86;;9377:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1520:1;;9504:49;9512:8;9522;9532:9;9543;9504:7;:49::i;:::-;9568:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9573:10;;9568:66;;;;;;;;;-1:-1:-1;;1542:1:5;1531:8;:12;-1:-1:-1;;;;;;;;;7755:1886:5:o;182:43:8:-;;;;;;;;;;;;;;;;;;;:::o;1556:227:5:-;1688:8;;;;;;;1718;;;;;;;1758:18;;;;;;1556:227::o;2182:144:8:-;2246:4;2262:36;2271:10;2283:7;2292:5;2262:8;:36::i;:::-;-1:-1:-1;2315:4:8;2182:144;;;;;:::o;869:21:5:-;;;;;;:::o;322:24:8:-;;;;:::o;2474:295::-;2572:15;;;2552:4;2572:15;;;:9;:15;;;;;;;;2588:10;2572:27;;;;;;;;2608:2;2572:39;2568:138;;2657:15;;;;;;;:9;:15;;;;;;;;2673:10;2657:27;;;;;;;;:38;;2689:5;2657:38;:31;:38;:::i;:::-;2627:15;;;;;;;:9;:15;;;;;;;;2643:10;2627:27;;;;;;;:68;2568:138;2715:26;2725:4;2731:2;2735:5;2715:9;:26::i;:::-;-1:-1:-1;2758:4:8;2474:295;;;;;:::o;608:108::-;650:66;608:108;:::o;281:35::-;314:2;281:35;:::o;467:31::-;;;;:::o;2592:207:5:-;2687:7;;;;2673:10;:21;2665:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2750:6;:16;;;;;;;;;;;;;;2776:6;:16;;;;;;;;;;;2592:207::o;649:39::-;686:2;649:39;:::o;1213:32::-;;;;:::o;1251:::-;;;;:::o;4884:1214::-;4933:14;1458:8;;1470:1;1458:13;1450:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509:1;1498:8;:12;;;1509:1;5001:13;:11;:13::i;:::-;-1:-1:-1;5062:6:5;;5055:39;;;;;;5088:4;5055:39;;;;;;4959:55;;-1:-1:-1;4959:55:5;;-1:-1:-1;5039:13:5;;5062:6;;;;;5055:24;;:39;;;;;;;;;;;;;;5062:6;5055:39;;;5:2:-1;;;;30:1;27;20:12;5:2;5055:39:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5055:39:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5055:39:5;5127:6;;5120:39;;;;;;5153:4;5120:39;;;;;;5055;;-1:-1:-1;5104:13:5;;5127:6;;;;;5120:24;;:39;;;;;5055;;5120;;;;;;;;5127:6;5120:39;;;5:2:-1;;;;30:1;27;20:12;5:2;5120:39:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5120:39:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5120:39:5;;-1:-1:-1;5169:12:5;5184:23;:8;:23;;;;:12;:23;:::i;:::-;5169:38;-1:-1:-1;5217:12:5;5232:23;:8;:23;;;;:12;:23;:::i;:::-;5217:38;;5266:10;5279:30;5288:9;5299;5279:8;:30::i;:::-;5319:17;5339:11;5266:43;;-1:-1:-1;5442:17:5;5438:347;;5487:54;735:5;5487:31;5497:20;:7;5509;5497:20;:11;:20;:::i;:::-;5487:9;:31::i;:54::-;5475:66;;5554:36;5568:1;735:5;5554;:36::i;:::-;5438:347;;;5688:86;5697:37;;;:25;:7;5709:12;5697:25;:11;:25;:::i;:::-;:37;;;;;;5736;;;:25;:7;5748:12;5736:25;:11;:25;:::i;:::-;:37;;;;;;5688:8;:86::i;:::-;5676:98;;5438:347;5814:1;5802:9;:13;5794:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5865:20;5871:2;5875:9;5865:5;:20::i;:::-;5896:49;5904:8;5914;5924:9;5935;5896:7;:49::i;:::-;5959:5;5955:47;;;5993:8;;5974:28;;5993:8;5979;;;;5993;;;;5974:28;:18;:28;:::i;:::-;5966:5;:36;5955:47;6057:34;;;;;;;;;;;;;;6062:10;;6057:34;;;;;;;;-1:-1:-1;;1542:1:5;1531:8;:12;-1:-1:-1;4884:1214:5;;;-1:-1:-1;;;;;;4884:1214:5:o;352:41:8:-;;;;;;;;;;;;;:::o;1289:17:5:-;;;;:::o;722:38:8:-;;;;;;;;;;;;;:::o;6207:1439:5:-;6256:12;6270;1458:8;;1470:1;1458:13;1450:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509:1;1498:8;:12;;;1509:1;6336:13;:11;:13::i;:::-;-1:-1:-1;6392:6:5;;6472;;6550:40;;;;;;6584:4;6550:40;;;;;;6294:55;;-1:-1:-1;6294:55:5;;-1:-1:-1;6392:6:5;;;;;6472;;;6374:15;;6392:6;;6550:25;;:40;;;;;;;;;;;;;;6392:6;6550:40;;;5:2:-1;;;;30:1;27;20:12;5:2;6550:40:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6550:40:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6550:40:5;6616;;;;;;6650:4;6616:40;;;;;;6550;;-1:-1:-1;6600:13:5;;6616:25;;;;;;:40;;;;;6550;;6616;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;6616:40:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6616:40:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6616:40:5;6701:4;6666:14;6683:24;;;:9;6616:40;6683:24;;;;;6616:40;;-1:-1:-1;6731:30:5;6740:9;6751;6731:8;:30::i;:::-;6771:17;6791:11;6718:43;;-1:-1:-1;6791:11:5;6900:23;:9;6914:8;6900:23;:13;:23;:::i;:::-;:38;;;;;;;-1:-1:-1;7032:12:5;7006:23;:9;7020:8;7006:23;:13;:23;:::i;:::-;:38;;;;;;6996:48;;7120:1;7110:7;:11;:26;;;;;7135:1;7125:7;:11;7110:26;7102:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7186:31;7200:4;7207:9;7186:5;:31::i;:::-;7227:35;7241:7;7250:2;7254:7;7227:13;:35::i;:::-;7272;7286:7;7295:2;7299:7;7272:13;:35::i;:::-;7328:40;;;;;;7362:4;7328:40;;;;;;:25;;;;;;:40;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;7328:40:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7328:40:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7328:40:5;7389;;;;;;7423:4;7389:40;;;;;;7328;;-1:-1:-1;7389:25:5;;;;;;:40;;;;;7328;;7389;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;7389:40:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7389:40:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7389:40:5;;-1:-1:-1;7440:49:5;7448:8;7389:40;7468:9;7479;7440:7;:49::i;:::-;7503:5;7499:47;;;7537:8;;7518:28;;7537:8;7523;;;;7537;;;;7518:28;:18;:28;:::i;:::-;7510:5;:36;7499:47;7601:38;;;;;;;;;;;;;;;;;;7606:10;;7601:38;;;;;;;;;;;1520:1;;;;;;;;;1542;1531:8;:12;;;;6207:1439;;;:::o;231:44:8:-;;;;;;;;;;;;;;;;;;;:::o;2332:136::-;2392:4;2408:32;2418:10;2430:2;2434:5;2408:9;:32::i;694:46:5:-;735:5;694:46;:::o;9687:329::-;1458:8;;1470:1;1458:13;1450:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509:1;1498:8;:12;9755:6;;9804;;9907:8;;9862:40;;;;;;9896:4;9862:40;;;;;;9755:6;;;;;9804;;;;9835:82;;9755:6;;9858:2;;9862:54;;9907:8;;;9755:6;;9862:25;;:40;;;;;;;;;;;;;;;9755:6;9862:40;;;5:2:-1;;;;30:1;27;20:12;5:2;9862:40:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9862:40:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9862:40:5;;:54;:44;:54;:::i;:::-;9835:13;:82::i;:::-;9999:8;;9954:40;;;;;;9988:4;9954:40;;;;;;9927:82;;9941:7;;9950:2;;9954:54;;9999:8;;;;;;9954:25;;;;;;:40;;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;9927:82:5;-1:-1:-1;;1542:1:5;1531:8;:12;-1:-1:-1;9687:329:5:o;841:22::-;;;;;;:::o;896:21::-;;;;;;:::o;2775:656:8:-;2920:15;2908:8;:27;;2900:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3067:16;;3162:13;;;;2965:14;3162:13;;;:6;:13;;;;;;;;:15;;;;;;;;;3111:77;;650:66;3111:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;3111:77:8;;;;;3101:88;;;;;;3005:198;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;3005:198:8;;;;;;2982:231;;;;;;;;;3250:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2965:14;;3162:15;3250:26;;;;;-1:-1:-1;3250:26:8;;;;;;;;;;3162:15;3250:26;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;3250:26:8;;;;;;-1:-1:-1;;3294:30:8;;;;;;;:59;;;3348:5;3328:25;;:16;:25;;;3294:59;3286:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3393:31;3402:5;3409:7;3418:5;3393:8;:31::i;:::-;2775:656;;;;;;;;;:::o;399:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;10062:156:5:-;1458:8;;1470:1;1458:13;1450:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509:1;1498:8;:12;10117:6;;10110:39;;;;;;10143:4;10110:39;;;;;;10102:109;;10117:6;;;10110:24;;:39;;;;;;;;;;;;;;10117:6;10110:39;;;5:2:-1;;;;30:1;27;20:12;5:2;10110:39:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10110:39:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10110:39:5;10158:6;;10151:39;;;;;;10184:4;10151:39;;;;;;10158:6;;;;;10151:24;;:39;;;;;10110;;10151;;;;;;;;10158:6;10151:39;;;5:2:-1;;;;30:1;27;20:12;5:2;10151:39:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10151:39:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10151:39:5;10192:8;;;;;;;10202;;;;10102:7;:109::i;:::-;1542:1;1531:8;:12;10062:156::o;1789:288::-;798:34;;;;;;;;;;;;;;;;;1916:43;;1905:10;1916:43;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;1916:43:5;;;;;;25:18:-1;;;61:17;;1916:43:5;182:15:-1;1916:43:5;179:29:-1;160:49;;1905:55:5;;;;1870:12;;1884:17;;1905:10;;;1916:43;1905:55;;;25:18:-1;1905:55:5;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;139:12;;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;1905:55:5;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;1869:91:5;;;;1978:7;:57;;;;-1:-1:-1;1990:11:5;;:16;;:44;;;2021:4;2010:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2010:24:5;1990:44;1970:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1789:288;;;;;:::o;420:140:7:-;472:6;498;;;:30;;-1:-1:-1;;513:5:7;;;527:1;522;513:5;522:1;508:15;;;;;:20;498:30;490:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287:127;370:5;;;365:16;;;;357:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2881:845:5;2992:23;;;;;;:50;;-1:-1:-1;3019:23:5;;;;2992:50;2984:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3177:18;;3105:23;:15;:23;;;3177:18;;;;;3160:35;;;3232:15;;;;;;:33;;-1:-1:-1;3251:14:5;;;;;3232:33;:51;;;;-1:-1:-1;3269:14:5;;;;;3232:51;3228:332;;;3436:11;3383:64;;3388:44;3422:9;3388:27;3405:9;3388:16;:27::i;:::-;:33;;;:44;:33;:44;:::i;:::-;3359:20;:88;;3383:50;;;;;:64;;;;3359:88;;;3485:64;;;3490:44;3524:9;3490:27;3507:9;3490:16;:27::i;:44::-;3461:20;:88;;3485:50;;;;;:64;;;;3461:88;;;3228:332;3569:8;:28;;;;;;;;;;;;3607;;;;;;;;;;;;3645:35;;;;;;;;;;;;3695:24;;;3700:8;;;3695:24;;3710:8;;;;;;;3695:24;;;;;;;;;;;;;;;;;2881:845;;;;;;:::o;1788:166:8:-;1868:16;;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;1916:31;;;;;;;;;;;;;;;;;1788:166;;;:::o;1960:216::-;2053:15;;;;;;;:9;:15;;;;;;:26;;2073:5;2053:26;:19;:26;:::i;:::-;2035:15;;;;;;;;:9;:15;;;;;;:44;;;;2105:13;;;;;;;:24;;2123:5;2105:24;:17;:24;:::i;:::-;2089:13;;;;;;;;:9;:13;;;;;;;;;:40;;;;2144:25;;;;;;;2089:13;;2144:25;;;;;;;;;;;;;1960:216;;;:::o;3811:964:5:-;3884:10;3906:13;3933:7;;;;;;;;;;;3922:25;;;:27;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3922:27:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3922:27:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3922:27:5;4010:5;;3967:19;;;;;;;-1:-1:-1;3922:27:5;;-1:-1:-1;4010:5:5;4040:729;;4069:11;;4065:637;;4100:10;4113:41;4123:30;;:15;;;;:30;;;:19;:30;:::i;4113:41::-;4100:54;;4172:14;4189:17;4199:6;4189:9;:17::i;:::-;4172:34;;4236:9;4228:5;:17;4224:464;;;4306:7;;4295:31;;;;;;;;4269:23;;4306:7;;;4295:29;;:31;;;;;;;;;;;;;;4306:7;4295:31;;;5:2:-1;;;;30:1;27;20:12;5:2;4295:31:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4295:31:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4295:31:5;;-1:-1:-1;4348:14:5;4365:59;;;;:37;4381:20;:5;4391:9;4381:20;:9;:20;:::i;:::-;4365:11;;;:37;:15;:37;:::i;:59::-;4348:76;-1:-1:-1;4446:16:5;4465:78;4511:31;:9;:31;;;;:13;:31;:::i;:::-;4465:41;:5;:41;686:2;4475:30;;;4465:41;;:9;:41;:::i;:::-;:45;:78;:45;:78;:::i;:::-;4446:97;;4565:14;4594:11;4582:9;:23;;;;;;;-1:-1:-1;4631:13:5;;4627:42;;4646:23;4652:5;4659:9;4646:5;:23::i;:::-;4224:464;;;;;4065:637;;;4040:729;;;4722:11;;4718:51;;4757:1;4749:5;:9;4718:51;3811:964;;;;;;:::o;307:292:6:-;352:6;378:1;374;:5;370:223;;;-1:-1:-1;399:1:6;431;427;423:5;;:9;446:89;457:1;453;:5;446:89;;;482:1;478:5;;519:1;514;510;506;:5;;;;;;:9;505:15;;;;;;501:19;;446:89;;;370:223;;;;555:6;;551:42;;-1:-1:-1;581:1:6;551:42;307:292;;;:::o;1374:197:8:-;1446:11;;:22;;1462:5;1446:22;:15;:22;:::i;:::-;1432:11;:36;;;1494:13;;;;;:9;:13;;;;;;:24;;1512:5;1494:24;:17;:24;:::i;:::-;1478:13;;;;;;;:9;:13;;;;;;;;:40;;;;1533:31;;;;;;;1478:13;;;;1533:31;;;;;;;;;;1374:197;;:::o;98:94:6:-;150:6;176:1;172;:5;:13;;184:1;172:13;;;180:1;172:13;168:17;98:94;-1:-1:-1;;;98:94:6:o;1577:205:8:-;1655:15;;;;;;;:9;:15;;;;;;:26;;1675:5;1655:26;:19;:26;:::i;:::-;1637:15;;;;;;;:9;:15;;;;;:44;;;;1705:11;:22;;1721:5;1705:22;:15;:22;:::i;:::-;1691:11;:36;;;1742:33;;;;;;;;;;;;;;;;;;;;;;1577:205;;:::o;283:118:9:-;358:10;;231:6;358:17;;283:118::o;469:106::-;529:9;558:10;;;554:14;;;558:10;554:14;;;;;;469:106;-1:-1:-1;;;469:106:9:o;155:126:7:-;238:5;;;233:16;;;;225:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://7b1aa6ebbe6d874977cc3e26bbbdead545ac594305dccf537e14ce3e468c182d

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.