ETH Price: $3,301.36 (-2.08%)

Contract

0x8507673BeE915646a7e837b9e90D6494C303E6fa
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Swap175285442023-06-21 14:11:11579 days ago1687356671IN
0x8507673B...4C303E6fa
0 ETH0.0017798331.02869983
Approve138644622021-12-23 23:46:161124 days ago1640303176IN
0x8507673B...4C303E6fa
0 ETH0.00478002103.04884881
Approve137764262021-12-10 9:01:551138 days ago1639126915IN
0x8507673B...4C303E6fa
0 ETH0.0013957557.9390297
Approve136211692021-11-15 15:41:191162 days ago1636990879IN
0x8507673B...4C303E6fa
0 ETH0.00848863183
Approve135521202021-11-04 19:39:431173 days ago1636054783IN
0x8507673B...4C303E6fa
0 ETH0.00548314118.20693113
Approve135449392021-11-03 16:30:421174 days ago1635957042IN
0x8507673B...4C303E6fa
0 ETH0.00491899185.72038398
Approve135449312021-11-03 16:28:501174 days ago1635956930IN
0x8507673B...4C303E6fa
0 ETH0.0083396179.78706967
Approve135446502021-11-03 15:28:391174 days ago1635953319IN
0x8507673B...4C303E6fa
0 ETH0.00567731122.39295283
Approve135445142021-11-03 14:59:051174 days ago1635951545IN
0x8507673B...4C303E6fa
0 ETH0.00673075145.10312597
Approve132018992021-09-11 2:47:361228 days ago1631328456IN
0x8507673B...4C303E6fa
0 ETH0.0032486370.03486809
Approve129908042021-08-09 12:03:381260 days ago1628510618IN
0x8507673B...4C303E6fa
0 ETH0.0016484135.53689835
Approve129791592021-08-07 16:54:411262 days ago1628355281IN
0x8507673B...4C303E6fa
0 ETH0.0020409844
Approve129462112021-08-02 13:30:541267 days ago1627911054IN
0x8507673B...4C303E6fa
0 ETH0.0015771234
Approve129411692021-08-01 18:17:301268 days ago1627841850IN
0x8507673B...4C303E6fa
0 ETH0.0017858638.5
Approve129326092021-07-31 9:47:241270 days ago1627724844IN
0x8507673B...4C303E6fa
0 ETH0.0007885617
Approve129323442021-07-31 8:46:341270 days ago1627721194IN
0x8507673B...4C303E6fa
0 ETH0.0010668723
Approve129305552021-07-31 1:55:371270 days ago1627696537IN
0x8507673B...4C303E6fa
0 ETH0.0011132624
Approve129245702021-07-30 3:11:381271 days ago1627614698IN
0x8507673B...4C303E6fa
0 ETH0.0016698936
Approve129179162021-07-29 1:50:021272 days ago1627523402IN
0x8507673B...4C303E6fa
0 ETH0.0008813319
Approve129179122021-07-29 1:49:071272 days ago1627523347IN
0x8507673B...4C303E6fa
0 ETH0.0010204922
Approve129169582021-07-28 22:11:101272 days ago1627510270IN
0x8507673B...4C303E6fa
0 ETH0.0013915830.00000145
Approve129166102021-07-28 20:50:461272 days ago1627505446IN
0x8507673B...4C303E6fa
0 ETH0.0018090539
Approve129162422021-07-28 19:29:261272 days ago1627500566IN
0x8507673B...4C303E6fa
0 ETH0.0018090539
Approve128274672021-07-14 21:12:181286 days ago1626297138IN
0x8507673B...4C303E6fa
0 ETH0.0014375931
Approve128033162021-07-11 2:16:251290 days ago1625969785IN
0x8507673B...4C303E6fa
0 ETH0.0004683710.1
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
125428062021-05-31 15:05:241330 days ago1622473524  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
UnicSwapV2Pair

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-31
*/

// Dependency file: contracts/libraries/SafeMath.sol

// pragma solidity =0.6.12;

// 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');
    }
}

// Dependency file: contracts/interfaces/IUnicSwapV2Callee.sol

// pragma solidity >=0.5.0;

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

// Dependency file: contracts/interfaces/IUnicSwapV2Factory.sol

// pragma solidity >=0.5.0;

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

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

    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;
}

// Dependency file: contracts/interfaces/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);
}

// Dependency file: contracts/libraries/UQ112x112.sol

// pragma solidity 0.6.12;

// 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);
    }
}

// Dependency file: contracts/libraries/Math.sol

// pragma solidity =0.6.12;

// 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;
        }
    }
}

// Dependency file: contracts/UnicSwapV2ERC20.sol

// pragma solidity =0.6.12;

// import './libraries/SafeMath.sol';

contract UnicSwapV2ERC20 {
    using SafeMath for uint;

    string public constant name = 'UnicSwap LP Token';
    string public constant symbol = 'UPT';
    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, 'UnicSwap: 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, 'UnicSwap: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}

pragma solidity =0.6.12;

// import './UnicSwapV2ERC20.sol';
// import './libraries/Math.sol';
// import './libraries/UQ112x112.sol';
// import './interfaces/IERC20.sol';
// import './interfaces/IUnicSwapV2Factory.sol';
// import './interfaces/IUnicSwapV2Callee.sol';

contract UnicSwapV2Pair is UnicSwapV2ERC20 {
    using SafeMath  for uint;
    using UQ112x112 for uint224;

    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, 'UnicSwap: 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))), 'UnicSwap: 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, 'UnicSwap: 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), 'UnicSwap: 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/6th of the growth in sqrt(k)
    function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
        address feeTo = IUnicSwapV2Factory(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) {
                    uint numerator = totalSupply.mul(rootK.sub(rootKLast));
                    uint denominator = rootK.mul(5).add(rootKLast);
                    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, 'UnicSwap: 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, 'UnicSwap: 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, 'UnicSwap: INSUFFICIENT_OUTPUT_AMOUNT');
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        require(amount0Out < _reserve0 && amount1Out < _reserve1, 'UnicSwap: 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, 'UnicSwap: 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) IUnicSwapV2Callee(to).unicSwapV2Call(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, 'UnicSwap: INSUFFICIENT_INPUT_AMOUNT');
        { // scope for reserve{0,1}Adjusted, avoids stack too deep errors
        uint balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(3));
        uint balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(3));
        require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(1000**2), 'UnicSwap: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101b95760003560e01c80636a627842116100f9578063ba9a7a5611610097578063d21220a711610071578063d21220a7146105da578063d505accf146105e2578063dd62ed3e14610640578063fff6cae91461067b576101b9565b8063ba9a7a5614610597578063bc25cf771461059f578063c45a0155146105d2576101b9565b80637ecebe00116100d35780637ecebe00146104d757806389afcb441461050a57806395d89b4114610556578063a9059cbb1461055e576101b9565b80636a6278421461046957806370a082311461049c5780637464fc3d146104cf576101b9565b806323b872dd116101665780633644e515116101405780633644e51514610416578063485cc9551461041e5780635909c0d5146104595780635a3d549314610461576101b9565b806323b872dd146103ad57806330adf81f146103f0578063313ce567146103f8576101b9565b8063095ea7b311610197578063095ea7b3146103155780630dfe16811461036257806318160ddd14610393576101b9565b8063022c0d9f146101be57806306fdde03146102595780630902f1ac146102d6575b600080fd5b610257600480360360808110156101d457600080fd5b81359160208101359173ffffffffffffffffffffffffffffffffffffffff604083013516919081019060808101606082013564010000000081111561021857600080fd5b82018360208201111561022a57600080fd5b8035906020019184600183028401116401000000008311171561024c57600080fd5b509092509050610683565b005b610261610d2d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029b578181015183820152602001610283565b50505050905090810190601f1680156102c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102de610d66565b604080516dffffffffffffffffffffffffffff948516815292909316602083015263ffffffff168183015290519081900360600190f35b61034e6004803603604081101561032b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610dbb565b604080519115158252519081900360200190f35b61036a610dd2565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61039b610dee565b60408051918252519081900360200190f35b61034e600480360360608110156103c357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610df4565b61039b610ecd565b610400610ef1565b6040805160ff9092168252519081900360200190f35b61039b610ef6565b6102576004803603604081101561043457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610efc565b61039b610fd5565b61039b610fdb565b61039b6004803603602081101561047f57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610fe1565b61039b600480360360208110156104b257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611377565b61039b611389565b61039b600480360360208110156104ed57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661138f565b61053d6004803603602081101561052057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166113a1565b6040805192835260208301919091528051918290030190f35b61026161182c565b61034e6004803603604081101561057457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611865565b61039b611872565b610257600480360360208110156105b557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611878565b61036a611a65565b61036a611a81565b610257600480360360e08110156105f857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611a9d565b61039b6004803603604081101561065657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611d69565b610257611d86565b600c546001146106f457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f556e6963537761703a204c4f434b454400000000000000000000000000000000604482015290519081900360640190fd5b6000600c55841515806107075750600084115b61075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612a786024913960400191505060405180910390fd5b600080610767610d66565b5091509150816dffffffffffffffffffffffffffff168710801561079a5750806dffffffffffffffffffffffffffff1686105b61080557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f556e6963537761703a20494e53554646494349454e545f4c4951554944495459604482015290519081900360640190fd5b600654600754600091829173ffffffffffffffffffffffffffffffffffffffff91821691908116908916821480159061086a57508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b6108d557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f556e6963537761703a20494e56414c49445f544f000000000000000000000000604482015290519081900360640190fd5b8a156108e6576108e6828a8d611f6c565b89156108f7576108f7818a8c611f6c565b86156109c3578873ffffffffffffffffffffffffffffffffffffffff16638998d6ae338d8d8c8c6040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b1580156109aa57600080fd5b505af11580156109be573d6000803e3d6000fd5b505050505b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b158015610a2f57600080fd5b505afa158015610a43573d6000803e3d6000fd5b505050506040513d6020811015610a5957600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8316916370a0823191602480820192602092909190829003018186803b158015610acb57600080fd5b505afa158015610adf573d6000803e3d6000fd5b505050506040513d6020811015610af557600080fd5b5051925060009150506dffffffffffffffffffffffffffff85168a90038311610b1f576000610b35565b89856dffffffffffffffffffffffffffff160383035b9050600089856dffffffffffffffffffffffffffff16038311610b59576000610b6f565b89856dffffffffffffffffffffffffffff160383035b90506000821180610b805750600081115b610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612aea6023913960400191505060405180910390fd5b6000610bf7610be5846003612179565b610bf1876103e8612179565b906121ff565b90506000610c09610be5846003612179565b9050610c35620f4240610c2f6dffffffffffffffffffffffffffff8b8116908b16612179565b90612179565b610c3f8383612179565b1015610cac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f556e6963537761703a204b000000000000000000000000000000000000000000604482015290519081900360640190fd5b5050610cba84848888612271565b60408051838152602081018390528082018d9052606081018c9052905173ffffffffffffffffffffffffffffffffffffffff8b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280601181526020017f556e696353776170204c5020546f6b656e00000000000000000000000000000081525081565b6008546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000008304909116917c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690565b6000610dc8338484612527565b5060015b92915050565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14610eb85773ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054610e8690836121ff565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020555b610ec3848484612596565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f8257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f556e6963537761703a20464f5242494444454e00000000000000000000000000604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560078054929093169116179055565b60095481565b600a5481565b6000600c5460011461105457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f556e6963537761703a204c4f434b454400000000000000000000000000000000604482015290519081900360640190fd5b6000600c81905580611064610d66565b50600654604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905193955091935060009273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b1580156110de57600080fd5b505afa1580156110f2573d6000803e3d6000fd5b505050506040513d602081101561110857600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905192935060009273ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b15801561118157600080fd5b505afa158015611195573d6000803e3d6000fd5b505050506040513d60208110156111ab57600080fd5b5051905060006111cb836dffffffffffffffffffffffffffff87166121ff565b905060006111e9836dffffffffffffffffffffffffffff87166121ff565b905060006111f7878761266b565b6000549091508061122e5761121a6103e8610bf16112158787612179565b6127d9565b985061122960006103e861282b565b61127f565b61127c6dffffffffffffffffffffffffffff891661124c8684612179565b8161125357fe5b046dffffffffffffffffffffffffffff891661126f8685612179565b8161127657fe5b046128cf565b98505b600089116112d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180612ac36027913960400191505060405180910390fd5b6112e28a8a61282b565b6112ee86868a8a612271565b811561132a57600854611326906dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416612179565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c5460011461141557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f556e6963537761703a204c4f434b454400000000000000000000000000000000604482015290519081900360640190fd5b6000600c81905580611425610d66565b50600654600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905194965092945073ffffffffffffffffffffffffffffffffffffffff9182169391169160009184916370a08231916024808301926020929190829003018186803b1580156114a757600080fd5b505afa1580156114bb573d6000803e3d6000fd5b505050506040513d60208110156114d157600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191925060009173ffffffffffffffffffffffffffffffffffffffff8516916370a08231916024808301926020929190829003018186803b15801561154557600080fd5b505afa158015611559573d6000803e3d6000fd5b505050506040513d602081101561156f57600080fd5b50513060009081526001602052604081205491925061158e888861266b565b6000549091508061159f8487612179565b816115a657fe5b049a50806115b48486612179565b816115bb57fe5b04995060008b1180156115ce575060008a115b611623576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180612a9c6027913960400191505060405180910390fd5b61162d30846128e7565b611638878d8d611f6c565b611643868d8c611f6c565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8916916370a08231916024808301926020929190829003018186803b1580156116af57600080fd5b505afa1580156116c3573d6000803e3d6000fd5b505050506040513d60208110156116d957600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191965073ffffffffffffffffffffffffffffffffffffffff8816916370a0823191602480820192602092909190829003018186803b15801561174b57600080fd5b505afa15801561175f573d6000803e3d6000fd5b505050506040513d602081101561177557600080fd5b5051935061178585858b8b612271565b81156117c1576008546117bd906dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416612179565b600b555b604080518c8152602081018c9052815173ffffffffffffffffffffffffffffffffffffffff8f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b6040518060400160405280600381526020017f555054000000000000000000000000000000000000000000000000000000000081525081565b6000610dc8338484612596565b6103e881565b600c546001146118e957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f556e6963537761703a204c4f434b454400000000000000000000000000000000604482015290519081900360640190fd5b6000600c55600654600754600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff94851694909316926119bf92859287926119ba926dffffffffffffffffffffffffffff169185916370a0823191602480820192602092909190829003018186803b15801561198857600080fd5b505afa15801561199c573d6000803e3d6000fd5b505050506040513d60208110156119b257600080fd5b5051906121ff565b611f6c565b611a5b81846119ba6008600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561198857600080fd5b50506001600c5550565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b42841015611b0c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f556e6963537761703a2045585049524544000000000000000000000000000000604482015290519081900360640190fd5b60035473ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015611c6d573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590611ce857508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b611d5357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f556e6963537761703a20494e56414c49445f5349474e41545552450000000000604482015290519081900360640190fd5b611d5e898989612527565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c54600114611df757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f556e6963537761703a204c4f434b454400000000000000000000000000000000604482015290519081900360640190fd5b6000600c55600654604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051611f659273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015611e6e57600080fd5b505afa158015611e82573d6000803e3d6000fd5b505050506040513d6020811015611e9857600080fd5b5051600754604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b158015611f0b57600080fd5b505afa158015611f1f573d6000803e3d6000fd5b505050506040513d6020811015611f3557600080fd5b50516008546dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416612271565b6001600c55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009460609489169392918291908083835b6020831061207257805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612035565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146120d4576040519150601f19603f3d011682016040523d82523d6000602084013e6120d9565b606091505b5091509150818015612107575080511580612107575080806020019051602081101561210457600080fd5b50515b61217257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f556e6963537761703a205452414e534645525f4641494c454400000000000000604482015290519081900360640190fd5b5050505050565b60008115806121945750508082028282828161219157fe5b04145b610dcc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b80820382811115610dcc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6dffffffffffffffffffffffffffff841180159061229d57506dffffffffffffffffffffffffffff8311155b61230857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f556e6963537761703a204f564552464c4f570000000000000000000000000000604482015290519081900360640190fd5b60085463ffffffff428116917c01000000000000000000000000000000000000000000000000000000009004811682039081161580159061235857506dffffffffffffffffffffffffffff841615155b801561237357506dffffffffffffffffffffffffffff831615155b1561241d578063ffffffff166123b08561238c866129a0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16906129c4565b600980547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff929092169290920201905563ffffffff81166123f08461238c876129a0565b600a80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff92909216929092020190555b600880547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff888116919091177fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff166e0100000000000000000000000000008883168102919091177bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260409020546125c690826121ff565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602052604080822093909355908416815220546126029082612a05565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b1580156126d657600080fd5b505afa1580156126ea573d6000803e3d6000fd5b505050506040513d602081101561270057600080fd5b5051600b5473ffffffffffffffffffffffffffffffffffffffff82161580159450919250906127c55780156127c05760006127516112156dffffffffffffffffffffffffffff888116908816612179565b9050600061275e836127d9565b9050808211156127bd57600061278061277784846121ff565b60005490612179565b9050600061279983612793866005612179565b90612a05565b905060008183816127a657fe5b04905080156127b9576127b9878261282b565b5050505b50505b6127d1565b80156127d1576000600b555b505092915050565b6000600382111561281c575080600160028204015b818110156128165780915060028182858161280557fe5b04018161280e57fe5b0490506127ee565b50612826565b8115612826575060015b919050565b6000546128389082612a05565b600090815573ffffffffffffffffffffffffffffffffffffffff831681526001602052604090205461286a9082612a05565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183106128de57816128e0565b825b9392505050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205461291790826121ff565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120919091555461294b90826121ff565b600090815560408051838152905173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8416816129fd57fe5b049392505050565b80820182811015610dcc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe556e6963537761703a20494e53554646494349454e545f4f55545055545f414d4f554e54556e6963537761703a20494e53554646494349454e545f4c49515549444954595f4255524e4544556e6963537761703a20494e53554646494349454e545f4c49515549444954595f4d494e544544556e6963537761703a20494e53554646494349454e545f494e5055545f414d4f554e54a26469706673582212203de7ff54534facf628b6ecd2062ea36d3a768b4ed3c17f6df850db6f0ed10c1464736f6c634300060c0033

Deployed Bytecode Sourcemap

7680:9674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14875:1886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14875:1886:0;;-1:-1:-1;14875:1886:0;-1:-1:-1;14875:1886:0;:::i;:::-;;4059:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8686:231;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6112:147;;;;;;;;;;;;;;;;-1:-1:-1;6112:147:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7976:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4201:24;;;:::i;:::-;;;;;;;;;;;;;;;;6414:301;;;;;;;;;;;;;;;;-1:-1:-1;6414:301:0;;;;;;;;;;;;;;;;;;:::i;4493:108::-;;;:::i;4159:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4350:31;;;:::i;9745:209::-;;;;;;;;;;;;;;;;-1:-1:-1;9745:209:0;;;;;;;;;;;:::i;8327:32::-;;;:::i;8366:::-;;;:::i;11941:1239::-;;;;;;;;;;;;;;;;-1:-1:-1;11941:1239:0;;;;:::i;4232:41::-;;;;;;;;;;;;;;;;-1:-1:-1;4232:41:0;;;;:::i;8405:17::-;;;:::i;4608:38::-;;;;;;;;;;;;;;;;-1:-1:-1;4608:38:0;;;;:::i;13295:1465::-;;;;;;;;;;;;;;;;-1:-1:-1;13295:1465:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4115:37;;;:::i;6267:139::-;;;;;;;;;;;;;;;;-1:-1:-1;6267:139:0;;;;;;;;;:::i;7797:46::-;;;:::i;16810:334::-;;;;;;;;;;;;;;;;-1:-1:-1;16810:334:0;;;;:::i;7947:22::-;;;:::i;8004:21::-;;;:::i;6723:672::-;;;;;;;;;;;;;;;;-1:-1:-1;6723:672:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;4280:61::-;;;;;;;;;;;;;;;;-1:-1:-1;4280:61:0;;;;;;;;;;;:::i;17193:158::-;;;:::i;14875:1886::-;8578:8;;8590:1;8578:13;8570:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:1;8623:8;:12;14989:14;;;;:32:::1;;;15020:1;15007:10;:14;14989:32;14981:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15074:17;15093::::0;15115:13:::1;:11;:13::i;:::-;15073:55;;;;;15175:9;15162:22;;:10;:22;:48;;;;;15201:9;15188:22;;:10;:22;15162:48;15154:93;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;15392:6;::::0;15427::::1;::::0;15260:13:::1;::::0;;;15392:6:::1;::::0;;::::1;::::0;15427;;::::1;::::0;15452:13;::::1;::::0;::::1;::::0;::::1;::::0;:30:::1;;;15475:7;15469:13;;:2;:13;;;;15452:30;15444:63;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;15522:14:::0;;15518:58:::1;;15538:38;15552:7;15561:2;15565:10;15538:13;:38::i;:::-;15625:14:::0;;15621:58:::1;;15641:38;15655:7;15664:2;15668:10;15641:13;:38::i;:::-;15728:15:::0;;15724:99:::1;;15763:2;15745:36;;;15782:10;15794;15806;15818:4;;15745:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;15724:99;15845:40;::::0;;;;;15879:4:::1;15845:40;::::0;::::1;::::0;;;:25:::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;::::1;::::0;;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15845:40:0;15907::::1;::::0;;;;;15941:4:::1;15907:40;::::0;::::1;::::0;;;15845;;-1:-1:-1;15907:25:0::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;15845::::1;::::0;15907;;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;15907:40:0;;-1:-1:-1;15969:14:0::1;::::0;-1:-1:-1;;15997:22:0::1;::::0;::::1;::::0;;::::1;15986:33:::0;::::1;:75;;16060:1;15986:75;;;16046:10;16034:9;:22;;;16022:8;:35;15986:75;15969:92;;16072:14;16112:10;16100:9;:22;;;16089:8;:33;:75;;16163:1;16089:75;;;16149:10;16137:9;:22;;;16125:8;:35;16089:75;16072:92;;16195:1;16183:9;:13;:30;;;;16212:1;16200:9;:13;16183:30;16175:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16339:21;16363:40;16386:16;:9:::0;16400:1:::1;16386:13;:16::i;:::-;16363:18;:8:::0;16376:4:::1;16363:12;:18::i;:::-;:22:::0;::::1;:40::i;:::-;16339:64:::0;-1:-1:-1;16414:21:0::1;16438:40;16461:16;:9:::0;16475:1:::1;16461:13;:16::i;16438:40::-;16414:64:::0;-1:-1:-1;16539:43:0::1;16574:7;16539:30;;:15:::0;;::::1;::::0;:30;::::1;:19;:30::i;:::-;:34:::0;::::1;:43::i;:::-;16497:38;:16:::0;16518;16497:20:::1;:38::i;:::-;:85;;16489:109;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;8646:1;;16622:49;16630:8;16640;16650:9;16661;16622:7;:49::i;:::-;16687:66;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;::::1;::::0;::::1;::::0;16692:10:::1;::::0;16687:66:::1;::::0;;;;;;;::::1;-1:-1:-1::0;;8669:1:0;8658:8;:12;-1:-1:-1;;;;;;;;;14875:1886:0:o;4059:49::-;;;;;;;;;;;;;;;;;;;:::o;8686:231::-;8819:8;;;;;;;8850;;;;;;;8891:18;;;;;;8686:231::o;6112:147::-;6176:4;6193:36;6202:10;6214:7;6223:5;6193:8;:36::i;:::-;-1:-1:-1;6247:4:0;6112:147;;;;;:::o;7976:21::-;;;;;;:::o;4201:24::-;;;;:::o;6414:301::-;6513:15;;;6492:4;6513:15;;;:9;:15;;;;;;;;6529:10;6513:27;;;;;;;;6549:2;6513:39;6509:140;;6599:15;;;;;;;:9;:15;;;;;;;;6615:10;6599:27;;;;;;;;:38;;6631:5;6599:31;:38::i;:::-;6569:15;;;;;;;:9;:15;;;;;;;;6585:10;6569:27;;;;;;;:68;6509:140;6659:26;6669:4;6675:2;6679:5;6659:9;:26::i;:::-;-1:-1:-1;6703:4:0;6414:301;;;;;:::o;4493:108::-;4535:66;4493:108;:::o;4159:35::-;4192:2;4159:35;:::o;4350:31::-;;;;:::o;9745:209::-;9841:7;;;;9827:10;:21;9819:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9903:6;:16;;;;;;;;;;;;;;9930:6;:16;;;;;;;;;;;9745:209::o;8327:32::-;;;;:::o;8366:::-;;;;:::o;11941:1239::-;11990:14;8578:8;;8590:1;8578:13;8570:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:1;8623:8;:12;;;8634:1;12059:13:::1;:11;:13::i;:::-;-1:-1:-1::0;12121:6:0::1;::::0;12114:39:::1;::::0;;;;;12147:4:::1;12114:39;::::0;::::1;::::0;;;12017:55;;-1:-1:-1;12017:55:0;;-1:-1:-1;12098:13:0::1;::::0;12121:6:::1;::::0;;::::1;::::0;12114:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;12121:6;12114:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;12114:39:0;12187:6:::1;::::0;12180:39:::1;::::0;;;;;12213:4:::1;12180:39;::::0;::::1;::::0;;;12114;;-1:-1:-1;12164:13:0::1;::::0;12187:6:::1;::::0;;::::1;::::0;12180:24:::1;::::0;:39;;;;;12114::::1;::::0;12180;;;;;;;;12187:6;12180:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;12180:39:0;;-1:-1:-1;12230:12:0::1;12245:23;:8:::0;:23:::1;::::0;::::1;:12;:23::i;:::-;12230:38:::0;-1:-1:-1;12279:12:0::1;12294:23;:8:::0;:23:::1;::::0;::::1;:12;:23::i;:::-;12279:38;;12330:10;12343:30;12352:9;12363;12343:8;:30::i;:::-;12384:17;12404:11:::0;12330:43;;-1:-1:-1;12508:17:0;12504:352:::1;;12554:54;7838:5;12554:31;12564:20;:7:::0;12576;12564:11:::1;:20::i;:::-;12554:9;:31::i;:54::-;12542:66;;12622:36;12636:1;7838:5;12622;:36::i;:::-;12504:352;;;12758:86;12767:37;::::0;::::1;:25;:7:::0;12779:12;12767:11:::1;:25::i;:::-;:37;;;;;;12806;::::0;::::1;:25;:7:::0;12818:12;12806:11:::1;:25::i;:::-;:37;;;;;;12758:8;:86::i;:::-;12746:98;;12504:352;12886:1;12874:9;:13;12866:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12942:20;12948:2;12952:9;12942:5;:20::i;:::-;12975:49;12983:8;12993;13003:9;13014;12975:7;:49::i;:::-;13039:5;13035:47;;;13073:8;::::0;13054:28:::1;::::0;13073:8:::1;13059::::0;;::::1;::::0;13073;;::::1;;13054:18;:28::i;:::-;13046:5;:36:::0;13035:47:::1;13138:34;::::0;;;;;::::1;::::0;::::1;::::0;;;;;13143:10:::1;::::0;13138:34:::1;::::0;;;;;;::::1;-1:-1:-1::0;;8669:1:0;8658:8;:12;-1:-1:-1;11941:1239:0;;;-1:-1:-1;;;;;;11941:1239:0:o;4232:41::-;;;;;;;;;;;;;:::o;8405:17::-;;;;:::o;4608:38::-;;;;;;;;;;;;;:::o;13295:1465::-;13344:12;13358;8578:8;;8590:1;8578:13;8570:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:1;8623:8;:12;;;8634:1;13425:13:::1;:11;:13::i;:::-;-1:-1:-1::0;13482:6:0::1;::::0;13563::::1;::::0;13642:40:::1;::::0;;;;;13676:4:::1;13642:40;::::0;::::1;::::0;;;13383:55;;-1:-1:-1;13383:55:0;;-1:-1:-1;13482:6:0::1;::::0;;::::1;::::0;13563;::::1;::::0;13464:15:::1;::::0;13482:6;;13642:25:::1;::::0;:40;;;;;::::1;::::0;;;;;;;;13482:6;13642:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;13642:40:0;13709::::1;::::0;;;;;13743:4:::1;13709:40;::::0;::::1;::::0;;;13642;;-1:-1:-1;13693:13:0::1;::::0;13709:25:::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;13642::::1;::::0;13709;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;13709:40:0;13795:4:::1;13760:14;13777:24:::0;;;:9:::1;13709:40;13777:24:::0;;;;;13709:40;;-1:-1:-1;13827:30:0::1;13836:9:::0;13847;13827:8:::1;:30::i;:::-;13868:17;13888:11:::0;13814:43;;-1:-1:-1;13888:11:0;13998:23:::1;:9:::0;14012:8;13998:13:::1;:23::i;:::-;:38;;;;;;::::0;-1:-1:-1;14131:12:0;14105:23:::1;:9:::0;14119:8;14105:13:::1;:23::i;:::-;:38;;;;;;14095:48;;14220:1;14210:7;:11;:26;;;;;14235:1;14225:7;:11;14210:26;14202:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14291:31;14305:4;14312:9;14291:5;:31::i;:::-;14333:35;14347:7;14356:2;14360:7;14333:13;:35::i;:::-;14379;14393:7;14402:2;14406:7;14379:13;:35::i;:::-;14436:40;::::0;;;;;14470:4:::1;14436:40;::::0;::::1;::::0;;;:25:::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;::::1;::::0;;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;14436:40:0;14498::::1;::::0;;;;;14532:4:::1;14498:40;::::0;::::1;::::0;;;14436;;-1:-1:-1;14498:25:0::1;::::0;::::1;::::0;::::1;::::0;:40;;;;;14436::::1;::::0;14498;;;;;;;;:25;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;14498:40:0;;-1:-1:-1;14551:49:0::1;14559:8:::0;14498:40;14579:9;14590;14551:7:::1;:49::i;:::-;14615:5;14611:47;;;14649:8;::::0;14630:28:::1;::::0;14649:8:::1;14635::::0;;::::1;::::0;14649;;::::1;;14630:18;:28::i;:::-;14622:5;:36:::0;14611:47:::1;14714:38;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;14719:10:::1;::::0;14714:38:::1;::::0;;;;;;;;;::::1;8646:1;;;;;;;;;8669::::0;8658:8;:12;;;;13295:1465;;;:::o;4115:37::-;;;;;;;;;;;;;;;;;;;:::o;6267:139::-;6327:4;6344:32;6354:10;6366:2;6370:5;6344:9;:32::i;7797:46::-;7838:5;7797:46;:::o;16810:334::-;8578:8;;8590:1;8578:13;8570:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:1;8623:8;:12;16879:6:::1;::::0;16929::::1;::::0;17033:8:::1;::::0;16988:40:::1;::::0;;;;;17022:4:::1;16988:40;::::0;::::1;::::0;;;16879:6:::1;::::0;;::::1;::::0;16929;;::::1;::::0;16961:82:::1;::::0;16879:6;;16984:2;;16988:54:::1;::::0;17033:8:::1;;::::0;16879:6;;16988:25:::1;::::0;:40;;;;;::::1;::::0;;;;;;;;;16879:6;16988:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;16988:40:0;;:44:::1;:54::i;:::-;16961:13;:82::i;:::-;17054;17068:7;17077:2;17081:54;17126:8;;;;;;;;;;;17081:54;;17088:7;17081:25;;;17115:4;17081:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;17054:82;-1:-1:-1::0;;8669:1:0;8658:8;:12;-1:-1:-1;16810:334:0:o;7947:22::-;;;;;;:::o;8004:21::-;;;;;;:::o;6723:672::-;6869:15;6857:8;:27;;6849:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7022:16;;7118:13;;;;6917:14;7118:13;;;:6;:13;;;;;;;;:15;;;;;;;;;7067:77;;4535:66;7067:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7057:88;;;;;;6958:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6934:237;;;;;;;;;7209:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6917:14;;7118:15;7209:26;;;;;-1:-1:-1;7209:26:0;;;;;;;;;;7118:15;7209:26;;;;;;;;;;;;;;;-1:-1:-1;;7209:26:0;;;;;;-1:-1:-1;;7254:30:0;;;;;;;:59;;;7308:5;7288:25;;:16;:25;;;7254:59;7246:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7356:31;7365:5;7372:7;7381:5;7356:8;:31::i;:::-;6723:672;;;;;;;;;:::o;4280:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;17193:158::-;8578:8;;8590:1;8578:13;8570:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:1;8623:8;:12;17249:6:::1;::::0;17242:39:::1;::::0;;;;;17275:4:::1;17242:39;::::0;::::1;::::0;;;17234:109:::1;::::0;17249:6:::1;;::::0;17242:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;17249:6;17242:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17242:39:0;17290:6:::1;::::0;17283:39:::1;::::0;;;;;17316:4:::1;17283:39;::::0;::::1;::::0;;;17290:6:::1;::::0;;::::1;::::0;17283:24:::1;::::0;:39;;;;;17242::::1;::::0;17283;;;;;;;;17290:6;17283:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17283:39:0;17324:8:::1;::::0;::::1;::::0;;::::1;::::0;17334;;::::1;;17234:7;:109::i;:::-;8669:1:::0;8658:8;:12;17193:158::o;8925:286::-;7902:34;;;;;;;;;;;;;;;;;9053:43;;9042:10;9053:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9042:55;;;;9007:12;;9021:17;;9042:10;;;9053:43;9042:55;;;9053:43;9042:55;;9053:43;9042:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9006:91;;;;9116:7;:57;;;;-1:-1:-1;9128:11:0;;:16;;:44;;;9159:4;9148:24;;;;;;;;;;;;;;;-1:-1:-1;9148:24:0;9128:44;9108:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8925:286;;;;;:::o;492:142::-;544:6;571;;;:30;;-1:-1:-1;;586:5:0;;;600:1;595;586:5;595:1;581:15;;;;;:20;571:30;563:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355:129;439:5;;;434:16;;;;426:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:859;10151:23;;;;;;:50;;-1:-1:-1;10178:23:0;;;;10151:50;10143:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10339:18;;10266:23;:15;:23;;;10339:18;;;;;10322:35;;;10395:15;;;;;;:33;;-1:-1:-1;10414:14:0;;;;;10395:33;:51;;;;-1:-1:-1;10432:14:0;;;;;10395:51;10391:336;;;10601:11;10548:64;;10553:44;10587:9;10553:27;10570:9;10553:16;:27::i;:::-;:33;;;;:44::i;:::-;10524:20;:88;;10548:50;;;;;:64;;;;10524:88;;;10651:64;;;10656:44;10690:9;10656:27;10673:9;10656:16;:27::i;:44::-;10627:20;:88;;10651:50;;;;;:64;;;;10627:88;;;10391:336;10737:8;:28;;;;;;;;;;;;10776;;;;;;;;;;;;10815:35;;;;;;;;;;;;10866:24;;;10871:8;;;10866:24;;10881:8;;;;;;;10866:24;;;;;;;;;;;;;;;;;10039:859;;;;;;:::o;5707:169::-;5788:16;;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;5837:31;;;;;;;;;;;;;;;;;5707:169;;;:::o;5884:220::-;5978:15;;;;;;;:9;:15;;;;;;:26;;5998:5;5978:19;:26::i;:::-;5960:15;;;;;;;;:9;:15;;;;;;:44;;;;6031:13;;;;;;;:24;;6049:5;6031:17;:24::i;:::-;6015:13;;;;;;;;:9;:13;;;;;;;;;:40;;;;6071:25;;;;;;;6015:13;;6071:25;;;;;;;;;;;;;5884:220;;;:::o;10988:838::-;11061:10;11084:13;11119:7;;;;;;;;;;;11100:33;;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11100:35:0;11198:5;;11154:19;;;;;;;-1:-1:-1;11100:35:0;;-1:-1:-1;11198:5:0;11229:590;;11259:11;;11255:494;;11291:10;11304:41;11314:30;;:15;;;;:30;;:19;:30::i;11304:41::-;11291:54;;11364:14;11381:17;11391:6;11381:9;:17::i;:::-;11364:34;;11429:9;11421:5;:17;11417:317;;;11463:14;11480:37;11496:20;:5;11506:9;11496;:20::i;:::-;11480:11;;;:15;:37::i;:::-;11463:54;-1:-1:-1;11540:16:0;11559:27;11576:9;11559:12;:5;11569:1;11559:9;:12::i;:::-;:16;;:27::i;:::-;11540:46;;11609:14;11638:11;11626:9;:23;;;;;;;-1:-1:-1;11676:13:0;;11672:42;;11691:23;11697:5;11704:9;11691:5;:23::i;:::-;11417:317;;;;11255:494;;;11229:590;;;11770:11;;11766:53;;11806:1;11798:5;:9;11766:53;10988:838;;;;;;:::o;3560:303::-;3605:6;3632:1;3628;:5;3624:232;;;-1:-1:-1;3654:1:0;3687;3683;3679:5;;:9;3703:92;3714:1;3710;:5;3703:92;;;3740:1;3736:5;;3778:1;3773;3769;3765;:5;;;;;;:9;3764:15;;;;;;3760:19;;3703:92;;;3624:232;;;;3816:6;;3812:44;;-1:-1:-1;3843:1:0;3812:44;3560:303;;;:::o;5281:201::-;5354:11;;:22;;5370:5;5354:15;:22::i;:::-;5340:11;:36;;;5403:13;;;;;:9;:13;;;;;;:24;;5421:5;5403:17;:24::i;:::-;5387:13;;;;;;;:9;:13;;;;;;;;:40;;;;5443:31;;;;;;;5387:13;;;;5443:31;;;;;;;;;;5281:201;;:::o;3346:96::-;3398:6;3425:1;3421;:5;:13;;3433:1;3421:13;;;3429:1;3421:13;3417:17;3346:96;-1:-1:-1;;;3346:96:0:o;5490:209::-;5569:15;;;;;;;:9;:15;;;;;;:26;;5589:5;5569:19;:26::i;:::-;5551:15;;;;;;;:9;:15;;;;;:44;;;;5620:11;:22;;5636:5;5620:15;:22::i;:::-;5606:11;:36;;;5658:33;;;;;;;;;;;;;;;;;;;;;;5490:209;;:::o;2882:120::-;2958:10;;2827:6;2958:17;;2882:120::o;3073:108::-;3133:9;3163:10;;;3159:14;;;3163:10;3159:14;;;;;;3073:108;-1:-1:-1;;;3073:108:0:o;219:128::-;303:5;;;298:16;;;;290:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://3de7ff54534facf628b6ecd2062ea36d3a768b4ed3c17f6df850db6f0ed10c14

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.