Arbitrum Sepolia Testnet

Token

BrownFi V2 (BF-V2)
ERC-20

Overview

Max Total Supply

4,518.000591817631404644 BF-V2

Holders

2

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000001 BF-V2
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BrownFiV2Pair

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 999999 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.28;

import './interfaces/IBrownFiV2Pair.sol';
import './BrownFiV2ERC20.sol';
import './libraries/Math.sol';
import '@uniswap/v3-core/contracts/libraries/FullMath.sol';
import './libraries/UQ112x112.sol';
import './interfaces/IERC20.sol';
import './interfaces/IBrownFiV2Factory.sol';
import './interfaces/IBrownFiV2Callee.sol';

contract BrownFiV2Pair is IBrownFiV2Pair, BrownFiV2ERC20 {
    using SafeMath  for uint;
    using UQ112x112 for uint224;

    uint public constant override MINIMUM_LIQUIDITY = 10**3;
    uint32 public constant PRECISION = 10**8;
    uint public constant Q64 = 1 << 64;

    address public immutable override factory;
    address public override token0;
    uint8 public token0Decimals;
    address public override token1;
    uint8 public token1Decimals;

    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

    bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));
    uint32 public override k = 100_000;          // default 0.001
    uint32 public override lambda = 0;       // default 0
    uint32 public override fee = 300_000;        // default 0.3%
    uint32 public protocolFee = 10_000_000;       // default 10%

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

    modifier whenNotPaused() {
        require(!IBrownFiV2Factory(factory).isPaused(), "BrownFiV2: PAUSED");
        _;
    }

    modifier onlyFactory() {
        require(msg.sender == factory, 'BrownFiV2: ONLY_FACTORY');
        _;
    }

    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))), 'BrownFiV2: TRANSFER_FAILED');
    }

    constructor() {
        factory = msg.sender;
    }

    // called once by the factory at time of deployment
    function initialize(address _token0, address _token1) external {
        require(msg.sender == factory, 'BrownFiV2: FORBIDDEN'); // sufficient check
        require(_token0 != address(0) && _token1 != address(0), 'BrownFiV2: ZERO_ADDRESS');
        token0 = _token0;
        token1 = _token1;
        token0Decimals = IERC20(_token0).decimals();
        token1Decimals = IERC20(_token1).decimals();
    }

    function _getPrices() internal view returns (uint price0, uint price1) {
        uint minPriceAge = IBrownFiV2Factory(factory).minPriceAge();
        price0 = IBrownFiV2Factory(factory).priceOf(token0, minPriceAge);
        price1 = IBrownFiV2Factory(factory).priceOf(token1, minPriceAge);
    }

    /**
    * @dev convert raw amount to default decimals amount
     */
    function _parseAmountToDefaultDecimals(uint8 tokenDecimals, uint amount) internal pure returns (uint formattedAmount) {
        formattedAmount = tokenDecimals > decimals ? 
            amount / 10**uint(tokenDecimals - decimals) : amount * 10**uint(decimals - tokenDecimals);
    }

    // update reserves and, on the first call per block, price accumulators
    function _update(uint balance0, uint balance1) private {
        require(balance0 <= type(uint112).max && balance1 <= type(uint112).max, 'BrownFiV2: OVERFLOW');
        uint32 blockTimestamp = uint32(block.timestamp % 2**32);
        reserve0 = uint112(balance0);
        reserve1 = uint112(balance1);
        blockTimestampLast = blockTimestamp;
        emit Sync(reserve0, reserve1);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function mint(address to) external lock whenNotPaused 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);
        (uint price0, uint price1) = _getPrices();

        uint parsedAmount0 = _parseAmountToDefaultDecimals(token0Decimals, amount0);
        uint parsedAmount1 = _parseAmountToDefaultDecimals(token1Decimals, amount1);

        uint minValue = Math.min(parsedAmount0.mul(price0), parsedAmount1.mul(price1));

        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        if (_totalSupply == 0) {
            liquidity = minValue.mul(2) / Q64 - MINIMUM_LIQUIDITY;
           _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
        } else {
            uint parsedReserve0 = _parseAmountToDefaultDecimals(token0Decimals, _reserve0);
            uint parsedReserve1 = _parseAmountToDefaultDecimals(token1Decimals, _reserve1);
            liquidity = FullMath.mulDiv(
                _totalSupply,
                minValue.mul(2),
                price0.mul(parsedReserve0).add(
                    price1.mul(parsedReserve1)
                )
            );
        }
        require(liquidity > 0, 'BrownFiV2: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);

        _update(balance0, balance1);
        emit Mint(msg.sender, amount0, amount1, price0, price1, to);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function burn(address to) external lock whenNotPaused returns (uint amount0, uint amount1) {
        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, 'BrownFiV2: 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);
        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 whenNotPaused {
        require(amount0Out > 0 || amount1Out > 0, 'BrownFiV2: INSUFFICIENT_OUTPUT_AMOUNT');
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        require(amount0Out.mul(10) <= uint(_reserve0).mul(8) && amount1Out.mul(10) <= uint(_reserve1).mul(8), 'BrownFiV2: 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, 'BrownFiV2: 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) IBrownFiV2Callee(to).brownFiV2Call(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, 'BrownFiV2: INSUFFICIENT_INPUT_AMOUNT');
        { // scope for reserve{0,1}Adjusted, avoids stack too deep errors
        (uint price0, uint price1) = _getPrices();
        (uint sPrice0, uint sPrice1) = (price0, price1);
        if (lambda > 0) {
            (sPrice0, sPrice1) = computeSkewnessPrice(_reserve0, _reserve1, price0, price1);
        }
        uint amount0OutWithoutFee = FullMath.mulDiv(amount0Out, PRECISION, PRECISION + fee);
        uint amount1OutWithoutFee = FullMath.mulDiv(amount1Out, PRECISION, PRECISION + fee);
        // check inventory
        if (amount0Out > 0) {
            checkInventory(balance0, balance1, sPrice0, sPrice1, amount0OutWithoutFee, false);
        }
        if (amount1Out > 0) {
            checkInventory(balance0, balance1, sPrice0, sPrice1, amount1OutWithoutFee, true);
        }

        // calculate protocol fee
        if(protocolFee > 0) {
            uint lpForProtocol;
            uint _totalSupply = totalSupply;
            uint inventoryRight = computeInventoryRight(price0, price1);
            if (amount0In > 0) {
                uint _amount0In = _parseAmountToDefaultDecimals(token0Decimals, amount0In);
                uint tradingFee = FullMath.mulDiv(_amount0In, fee, PRECISION + fee);
                uint protocolFeeInDollarValue = FullMath.mulDiv(tradingFee, protocolFee * price0, PRECISION);
                lpForProtocol = FullMath.mulDiv(protocolFeeInDollarValue, _totalSupply, inventoryRight);
            }
            if (amount1In > 0) {
                uint _amount1In = _parseAmountToDefaultDecimals(token1Decimals, amount1In);
                uint tradingFee = FullMath.mulDiv(_amount1In, fee, PRECISION + fee);
                uint protocolFeeInDollarValue = FullMath.mulDiv(tradingFee, protocolFee * price1, PRECISION);
                lpForProtocol = FullMath.mulDiv(protocolFeeInDollarValue, _totalSupply, inventoryRight);
            }
            if (lpForProtocol > 0) {
                _mint(IBrownFiV2Factory(factory).feeTo(), lpForProtocol);
            }
        }

        _update(balance0, balance1);
        emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, sPrice0, sPrice1, to);
        }
    }
    
    function computeSkewnessPrice(uint _reserve0, uint _reserve1, uint _price0, uint _price1) internal view returns (uint, uint) {
        uint _r0 = _parseAmountToDefaultDecimals(token0Decimals, _reserve0);
        uint _r1 = _parseAmountToDefaultDecimals(token1Decimals, _reserve1);
        // s = lambda * |x * px - y * py| / (x * px + y * py)
        uint reserve0Price = _r0 * _price0;
        uint reserve1Price = _r1 * _price1;
        
        uint reservePriceDiff = reserve0Price >= reserve1Price ?
            reserve0Price - reserve1Price :
            reserve1Price - reserve0Price;
        
        uint reservePriceSum = reserve0Price + reserve1Price;
        uint s = FullMath.mulDiv(reservePriceDiff, lambda, reservePriceSum);

        uint precisionPlusS = PRECISION + s;
        uint precisionMinusS = PRECISION - s;
        
        // if x * px >= y * py, px = px * (1 - s), py = py * (1 + s)
        // if x * px <= y * py, px = px * (1 + s), py = py * (1 - s)
        if (reserve0Price >= reserve1Price) {
            return (
                FullMath.mulDiv(_price0, precisionMinusS, PRECISION),
                FullMath.mulDiv(_price1, precisionPlusS, PRECISION)
            );
        } else {
            return (
                FullMath.mulDiv(_price0, precisionPlusS, PRECISION),
                FullMath.mulDiv(_price1, precisionMinusS, PRECISION)
            );
        }
    }

    function checkInventory(uint balance0, uint balance1, uint price0, uint price1, uint amountOut, bool zeroToOne) internal view {
        uint _balance0 = _parseAmountToDefaultDecimals(token0Decimals, balance0);
        uint _balance1 = _parseAmountToDefaultDecimals(token1Decimals, balance1);
        uint _amountOut = _parseAmountToDefaultDecimals(zeroToOne ? token1Decimals : token0Decimals, amountOut);
        uint left = computeInventoryLeft(_balance0, _balance1, price0, price1, _amountOut, zeroToOne);
        uint right = computeInventoryRight(price0, price1);
        require(left >= right, 'BrownFiV2: INVALID_INVENTORY');
    }

    function computeInventoryLeft(uint balance0, uint balance1, uint price0, uint price1, uint amountOut, bool zeroToOne) internal view returns (uint) {
        uint32 _k = k;
        uint balance = zeroToOne ? balance1 : balance0;
        uint price = zeroToOne ? price1 : price0;
        
        // Pre-calculate the denominator with one multiplication
        uint denominator = balance.mul(PRECISION).mul(2);
        
        return price0.mul(balance0).add(price1.mul(balance1)).sub(
            FullMath.mulDiv(
                price.mul(_k),
                amountOut.mul(amountOut),
                denominator
            )
        );
    }

    function computeInventoryRight(
        uint price0,
        uint price1
    ) internal view returns (uint) {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        uint _r0 = _parseAmountToDefaultDecimals(token0Decimals, _reserve0);
        uint _r1 = _parseAmountToDefaultDecimals(token1Decimals, _reserve1);
        return price0.mul(_r0).add(price1.mul(_r1));
    }

    // force balances to match reserves
    function skim(address to) external lock {
    }

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

    function setK(uint32 _k) external onlyFactory {
        require(_k <= 2 * PRECISION, 'BrownFiV2: MAXIMUM_K');
        k = _k;
    }

    function setLambda(uint32 _lambda) external onlyFactory {
        require(_lambda <= PRECISION, 'BrownFiV2: MAXIMUM_LAMBDA'); // max 1
        lambda = _lambda;
    }

    function setFee(uint32 _fee) external onlyFactory {
        fee = _fee;
    }

    function setProtocolFee(uint32 _protocolFee) external onlyFactory {
        protocolFee = _protocolFee;
    }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/// @title Contains 512-bit math functions
/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = a * b
            // Compute the product mod 2**256 and mod 2**256 - 1
            // then use the Chinese Remainder Theorem to reconstruct
            // the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2**256 + prod0
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(a, b, not(0))
                prod0 := mul(a, b)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division
            if (prod1 == 0) {
                require(denominator > 0);
                assembly {
                    result := div(prod0, denominator)
                }
                return result;
            }

            // Make sure the result is less than 2**256.
            // Also prevents denominator == 0
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0]
            // Compute remainder using mulmod
            uint256 remainder;
            assembly {
                remainder := mulmod(a, b, denominator)
            }
            // Subtract 256 bit number from 512 bit number
            assembly {
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator
            // Compute largest power of two divisor of denominator.
            // Always >= 1.
            uint256 twos = (0 - denominator) & denominator;
            // Divide denominator by power of two
            assembly {
                denominator := div(denominator, twos)
            }

            // Divide [prod1 prod0] by the factors of two
            assembly {
                prod0 := div(prod0, twos)
            }
            // Shift in bits from prod1 into prod0. For this we need
            // to flip `twos` such that it is 2**256 / twos.
            // If twos is zero, then it becomes one
            assembly {
                twos := add(div(sub(0, twos), twos), 1)
            }
            prod0 |= prod1 * twos;

            // Invert denominator mod 2**256
            // Now that denominator is an odd number, it has an inverse
            // modulo 2**256 such that denominator * inv = 1 mod 2**256.
            // Compute the inverse by starting with a seed that is correct
            // correct for four bits. That is, denominator * inv = 1 mod 2**4
            uint256 inv = (3 * denominator) ^ 2;
            // Now use Newton-Raphson iteration to improve the precision.
            // Thanks to Hensel's lifting lemma, this also works in modular
            // arithmetic, doubling the correct bits in each step.
            inv *= 2 - denominator * inv; // inverse mod 2**8
            inv *= 2 - denominator * inv; // inverse mod 2**16
            inv *= 2 - denominator * inv; // inverse mod 2**32
            inv *= 2 - denominator * inv; // inverse mod 2**64
            inv *= 2 - denominator * inv; // inverse mod 2**128
            inv *= 2 - denominator * inv; // inverse mod 2**256

            // Because the division is now exact we can divide by multiplying
            // with the modular inverse of denominator. This will give us the
            // correct result modulo 2**256. Since the precoditions guarantee
            // that the outcome is less than 2**256, this is the final result.
            // We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inv;
            return result;
        }
    }

    /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    function mulDivRoundingUp(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            result = mulDiv(a, b, denominator);
            if (mulmod(a, b, denominator) > 0) {
                require(result < type(uint256).max);
                result++;
            }
        }
    }
}

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.28;

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

contract BrownFiV2ERC20 is IBrownFiV2ERC20 {
    using SafeMath for uint;

    string public constant override name = 'BrownFi V2';
    string public constant override symbol = 'BF-V2';
    uint8 public constant override decimals = 18;
    uint  public override totalSupply;
    mapping(address => uint) public override balanceOf;
    mapping(address => mapping(address => uint)) public override allowance;

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

    constructor() {
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
                keccak256(bytes(name)),
                keccak256(bytes('1')),
                block.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 override returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

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

    function transferFrom(address from, address to, uint value) external override returns (bool) {
        if (allowance[from][msg.sender] != type(uint256).max) {
            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 override {
        require(deadline >= block.timestamp, 'BrownFiV2: 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, 'BrownFiV2: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}

// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.5.0;

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

// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.5.0;

interface IBrownFiV2ERC20 {
    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;
}

// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.5.0;

interface IBrownFiV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint totalPair);
    event PauseStateChanged(bool paused);
    event PriceOracleUpdated(address indexed newOracle);
    event FeeToUpdated(address indexed newFeeTo);
    event OracleOfUpdated(address indexed token, bytes32 priceFeedId);
    event MinPriceAgeUpdated(uint newMinPriceAge);
    event KOfPairUpdated(address indexed tokenA, address indexed tokenB, uint32 k);
    event FeeOfPairUpdated(address indexed tokenA, address indexed tokenB, uint32 fee);
    event LambdaOfPairUpdated(address indexed tokenA, address indexed tokenB, uint32 lambda);
    event ProtocolFeeOfPairUpdated(address indexed tokenA, address indexed tokenB, uint32 protocolFee);

    function priceOracle() external view returns (address);
    function feeTo() external view returns (address);
    function priceOf(address token, uint256 priceAge) external view returns(uint256);
    function minPriceAge() external view returns (uint);
    function priceFeedIds(address token) external view returns (bytes32);

    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, bytes32 priceFeedA, bytes32 priceFeedB) external returns (address pair);

    function setPriceOracle(address newOracle) external;
    function setFeeTo(address) external;
    function setOracleOf(address token, bytes32 priceFeedId) external;
    function setMinPriceAge(uint age) external;
    function setKOfPair(address tokenA, address tokenB, uint32 k) external;
    function setFeeOfPair(address tokenA, address tokenB, uint32 fee) external;
    function setLambdaOfPair(address tokenA, address tokenB, uint32 lambda) external;
    function setProtocolFeeOfPair(address tokenA, address tokenB, uint32 protocolFee) external;

    function setPaused(bool paused) external;
    function isPaused() external view returns (bool);
}

// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.5.0;

interface IBrownFiV2Pair {
    event Mint(address indexed sender, uint amount0, uint amount1, uint price0, uint price1, address indexed to);
    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,
        uint price0,
        uint price1,
        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 k() external view returns (uint32);
    function lambda() external view returns (uint32);
    function fee() external view returns (uint32);

    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 setK(uint32 _k) external;
    function setFee(uint32 _fee) external;
    function setLambda(uint32 _lambda) external;
    function setProtocolFee(uint32 _protocolFee) external;

    function initialize(address, address) external;
}

// SPDX-License-Identifier: BUSL-1.1
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);
}

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.28;

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

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.28;

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

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.28;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "viaIR": true,
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract ABI

API
[{"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"},{"indexed":false,"internalType":"uint256","name":"price0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"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":false,"internalType":"uint256","name":"price0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price1","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":[],"name":"PRECISION","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Q64","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"fee","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"k","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lambda","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"protocolFee","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_fee","type":"uint32"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_k","type":"uint32"}],"name":"setK","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_lambda","type":"uint32"}],"name":"setLambda","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_protocolFee","type":"uint32"}],"name":"setProtocolFee","outputs":[],"stateMutability":"nonpayable","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":"token0Decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1Decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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"}]

60a06040523461015157604051610017604082610156565b600a815269213937bbb72334902b1960b11b602090910152604080517f6734371cf3152a7df61c4623a003b33fdd6df5cdf7648e19ad4b1d9eababb5159161005f9082610156565b600181526020810190603160f81b82525190206040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a081526100c360c082610156565b519020600355600880546001600160801b0319166e989680000493e000000000000186a0179055600160095533608052604051613b1e908161019082396080518181816107b0015281816109b601528181610b7c0152818161107e01528181611238015281816116fc0152818161181001528181611d9a01528181612102015281816124a301526131ab0152f35b600080fd5b601f909101601f19168101906001600160401b0382119082101761017957604052565b634e487b7160e01b600052604160045260246000fdfe6080604052600436101561001257600080fd5b6000803560e01c8063022c0d9f1461201c57806306fdde0314611fa55780630902f1ac14611f14578063095ea7b314611ecf5780630b77884d14611e8d5780630dfe168114611e3b57806318160ddd14611e005780631ab971ab14611d4057806323b872dd14611c1657806330adf81f14611bbd578063313ce56714611b8357806333fca18714611b415780633644e51514611b05578063485cc955146117b85780635f086549146116a15780636a627842146111aa57806370a0823114611147578063762bff4a1461101d5780637ecebe0014610fba57806389afcb4414610aef57806395d89b4114610a74578063a9059cbb14610a24578063aa9f76281461095c578063aaf5eb681461091f578063b0e21e8a146108da578063b31ac6e214610898578063b4f40c6114610856578063ba9a7a561461081b578063bc25cf77146107d4578063c45a015514610765578063d21220a714610713578063d505accf14610441578063dad0be61146103fd578063dd62ed3e14610382578063ddca3f431461033d5763fff6cae9146101a957600080fd5b3461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576101e5600160095414612c75565b806009556024602073ffffffffffffffffffffffffffffffffffffffff60055416604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa801561032f5782906102fc575b60249150602073ffffffffffffffffffffffffffffffffffffffff60065416604051938480927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa9081156102f15783916102b6575b6102ae92506137e4565b600160095580f35b90506020823d6020116102e9575b816102d160209383612b9d565b810103126102e4576102ae9151906102a4565b600080fd5b3d91506102c4565b6040513d85823e3d90fd5b506020813d602011610327575b8161031660209383612b9d565b810103126102e45760249051610245565b3d9150610309565b6040513d84823e3d90fd5b80fd5b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602063ffffffff60085460401c16604051908152f35b503461033a5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5773ffffffffffffffffffffffffffffffffffffffff60406103d1612b57565b92826103db612b7a565b9416815260026020522091166000526020526020604060002054604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602063ffffffff600854821c16604051908152f35b503461033a5760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610479612b57565b610481612b7a565b6044359060643560843560ff811680910361070f574282106106b15760035473ffffffffffffffffffffffffffffffffffffffff861692838852600460205260408820908154917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8314610684579282602095928b95600160809601905560405190878201927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9845289604084015273ffffffffffffffffffffffffffffffffffffffff8b1660608401528b8784015260a083015260c082015260c0815261056a60e082612b9d565b51902060405190868201927f1901000000000000000000000000000000000000000000000000000000000000845260228301526042820152604281526105b1606282612b9d565b519020906040519182528482015260a435604082015260c435606082015282805260015afa156106795773ffffffffffffffffffffffffffffffffffffffff85511690811515918261066f575b5050156106115761060e9261390e565b80f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f42726f776e466956323a20494e56414c49445f5349474e4154555245000000006044820152fd5b14905038806105fe565b6040513d86823e3d90fd5b60248a7f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f42726f776e466956323a204558504952454400000000000000000000000000006044820152fd5b8580fd5b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602073ffffffffffffffffffffffffffffffffffffffff60065416604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5761080c612b57565b506102ae600160095414612c75565b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760206040516103e88152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602063ffffffff60085416604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602060ff60055460a01c16604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602063ffffffff60085460601c16604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760206040516305f5e1008152f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760043563ffffffff81168103610a20576109dd73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163314612dc0565b7fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff6fffffffff0000000000000000000000006008549260601b1691161760085580f35b5080fd5b503461033a5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610a69610a5f612b57565b60243590336139e4565b602060405160018152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5750610aeb604051610ab5604082612b9d565b600581527f42462d5632000000000000000000000000000000000000000000000000000000602082015260405191829182612c0d565b0390f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610b27612b57565b610b35600160095414612c75565b816009556040517fb187bd2600000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102f157610bb6918491610f8b575b5015612cf2565b73ffffffffffffffffffffffffffffffffffffffff600554169173ffffffffffffffffffffffffffffffffffffffff6006541691604051917f70a08231000000000000000000000000000000000000000000000000000000008352306004840152602083602481885afa928315610f7e578193610f4a575b50604051937f70a08231000000000000000000000000000000000000000000000000000000008552306004860152602085602481845afa94851561032f578295610f16575b503082526001602052610ca5610c99610c99610c9e60408620549786549384918a612fbc565b612e3e565b9787612fbc565b9385151580610f0d575b15610e89576024968360209230825260018452610cd0816040842054613971565b308352600185526040832055610ce7818354613971565b82556040519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef843092a3610d1f878683612ff3565b610d2a868685612ff3565b604051978880927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa95861561032f578296610e54575b506020602491604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa918215610e485791610e15575b50610dbc906040956137e4565b73ffffffffffffffffffffffffffffffffffffffff84519184835283602084015216907fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496853392a3600160095582519182526020820152f35b90506020813d602011610e40575b81610e3060209383612b9d565b810103126102e457516040610daf565b3d9150610e23565b604051903d90823e3d90fd5b9095506020813d602011610e81575b81610e7060209383612b9d565b810103126102e45751946020610d6a565b3d9150610e63565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f42726f776e466956323a20494e53554646494349454e545f4c4951554944495460448201527f595f4255524e45440000000000000000000000000000000000000000000000006064820152fd5b50841515610caf565b9094506020813d602011610f42575b81610f3260209383612b9d565b810103126102e457519338610c73565b3d9150610f25565b9092506020813d602011610f76575b81610f6660209383612b9d565b810103126102e457519138610c2e565b3d9150610f59565b50604051903d90823e3d90fd5b610fad915060203d602011610fb3575b610fa58183612b9d565b810190612cda565b38610baf565b503d610f9b565b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57604060209173ffffffffffffffffffffffffffffffffffffffff61100c612b57565b168152600483522054604051908152f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760043563ffffffff8116808203611143576305f5e100906110a573ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163314612dc0565b116110e5577fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff67ffffffff000000006008549260201b1691161760085580f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f42726f776e466956323a204d4158494d554d5f4c414d424441000000000000006044820152fd5b8280fd5b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57604060209173ffffffffffffffffffffffffffffffffffffffff611199612b57565b168152600183522054604051908152f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576111e2612b57565b906111f1600160095414612c75565b806009556040517fb187bd2600000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa90811561032f5790611273918391610f8b575015612cf2565b6112a66007546dffffffffffffffffffffffffffff8116916dffffffffffffffffffffffffffff8260701c169160e01c90565b5090600554604051947f70a0823100000000000000000000000000000000000000000000000000000000865230600487015260208660248173ffffffffffffffffffffffffffffffffffffffff86165afa958615611696578596611662575b5060065491604051927f70a0823100000000000000000000000000000000000000000000000000000000845230600485015260208460248173ffffffffffffffffffffffffffffffffffffffff85165afa938415611657578794611613575b506dffffffffffffffffffffffffffff60ff939495166dffffffffffffffffffffffffffff611393828b613971565b971661139f8188613971565b926113a8613194565b96909560a01c169160ff6113bc8b856136cf565b9260a01c16916113e0886113da896113d48a886136cf565b94612fbc565b92612fbc565b8082101561160b5750935b8b5493846115bc57505050505061140190612f48565b60401c7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc18810190811161158f579661143c6103e88254613a75565b815580805260016020526114566103e86040832054613a75565b81805260016020526040822055807fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206040516103e88152a35b861561150b576114c273ffffffffffffffffffffffffffffffffffffffff956020996114bd8a88613770565b6137e4565b604051958652878601526040850152606084015216907f265ee4cff6cdf714e68c02e61a7864cf66bc04e372a41b6cc425acbb737cd39560803392a36001600955604051908152f35b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f42726f776e466956323a20494e53554646494349454e545f4c4951554944495460448201527f595f4d494e5445440000000000000000000000000000000000000000000000006064820152fd5b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b611605969c506115eb6115e56115ff959697946115df6115f9956115f2956136cf565b976136cf565b93612f48565b9488612fbc565b9188612fbc565b90613a75565b91613593565b95611491565b9050936113eb565b9293506020833d60201161164f575b8161162f60209383612b9d565b810103126102e457915192916dffffffffffffffffffffffffffff611364565b3d9150611622565b6040513d89823e3d90fd5b9095506020813d60201161168e575b8161167e60209383612b9d565b810103126102e457519438611305565b3d9150611671565b6040513d87823e3d90fd5b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760043563ffffffff8116809103610a205761172373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163314612dc0565b630bebc200811161175a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000600854161760085580f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f42726f776e466956323a204d4158494d554d5f4b0000000000000000000000006044820152fd5b503461033a5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576117f0612b57565b6117f8612b7a565b9073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163303611aa75773ffffffffffffffffffffffffffffffffffffffff169081151580611a88575b15611a2a5773ffffffffffffffffffffffffffffffffffffffff60055491837fffffffffffffffffffffffff0000000000000000000000000000000000000000841617600555169060065492827fffffffffffffffffffffffff00000000000000000000000000000000000000008516176006556040517f313ce567000000000000000000000000000000000000000000000000000000008152602081600481855afa908115611a1f577fffffffffffffffffffffff0000000000000000000000000000000000000000009174ff0000000000000000000000000000000000000000918891611a00575b5060a01b16921617176005556040517f313ce567000000000000000000000000000000000000000000000000000000008152602081600481855afa908115610679577fffffffffffffffffffffff0000000000000000000000000000000000000000009174ff00000000000000000000000000000000000000009186916119d1575b5060a01b169216171760065580f35b6119f3915060203d6020116119f9575b6119eb8183612b9d565b810190612e25565b386119c2565b503d6119e1565b611a19915060203d6020116119f9576119eb8183612b9d565b38611940565b6040513d88823e3d90fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f42726f776e466956323a205a45524f5f414444524553530000000000000000006044820152fd5b5073ffffffffffffffffffffffffffffffffffffffff81161515611856565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f42726f776e466956323a20464f5242494444454e0000000000000000000000006044820152fd5b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576020600354604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576020604051680100000000000000008152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602060405160128152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760206040517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98152f35b503461033a5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610a6990611c52612b57565b611c5a612b7a565b906044359273ffffffffffffffffffffffffffffffffffffffff82169081815260026020526040812073ffffffffffffffffffffffffffffffffffffffff33166000526020527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60406000205403611cd4575b50506139e4565b808260409252600260205281812073ffffffffffffffffffffffffffffffffffffffff3316600052602052611d0d868360002054613971565b92815260026020522073ffffffffffffffffffffffffffffffffffffffff33166000526020526040600020553880611ccd565b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760043563ffffffff81168103610a2057611dc173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163314612dc0565b7fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff6bffffffff00000000000000006008549260401b1691161760085580f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760209054604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602073ffffffffffffffffffffffffffffffffffffffff60055416604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602060ff60065460a01c16604051908152f35b503461033a5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610a69611f0a612b57565b602435903361390e565b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760606dffffffffffffffffffffffffffff63ffffffff611f8c6007546dffffffffffffffffffffffffffff8116916dffffffffffffffffffffffffffff8260701c169160e01c90565b9193908160405195168552166020840152166040820152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5750610aeb604051611fe6604082612b9d565b600a81527f42726f776e466920563200000000000000000000000000000000000000000000602082015260405191829182612c0d565b503461033a5760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760443573ffffffffffffffffffffffffffffffffffffffff811690818103611143576064359067ffffffffffffffff8211612b535736602383011215612b535781600401359067ffffffffffffffff8211612b4f573660248385010111612b4f576120bb600160095414612c75565b846009556040517fb187bd2600000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa8015611a1f5761213b918791610f8b575015612cf2565b600435159081158092612b44575b15612ac0576121816007546dffffffffffffffffffffffffffff8116916dffffffffffffffffffffffffffff8260701c169160e01c90565b50919093612190600435612e77565b6121a96dffffffffffffffffffffffffffff8716612f25565b101580612a94575b15612a105773ffffffffffffffffffffffffffffffffffffffff600554169173ffffffffffffffffffffffffffffffffffffffff60065416968389141580612a06575b156129a857899186612996575b602435612982575b50826128b8575b505050906020602492604051938480927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa918215611657578792612881575b506020602495604051968780927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa94851561165757879561284d575b506122bc6004356dffffffffffffffffffffffffffff8616612d57565b821115612846576122e86122e26004356dffffffffffffffffffffffffffff8716612d57565b83612d57565b945b6123066024356dffffffffffffffffffffffffffff8416612d57565b81111561283f5761233261232c6024356dffffffffffffffffffffffffffff8516612d57565b82612d57565b925b861580158091612836575b156127b35761234c613194565b8b8298829a6008549863ffffffff8a60201c16612780575b505086918a8c92888b6123a763ffffffff61239e816123948161238b818860401c16612d93565b1660043561344a565b9460401c16612d93565b1660243561344a565b926126db575b506024356125da575b50505050505063ffffffff8660601c16908161242e575b505050506123db92506137e4565b604051938452602084015260043560408401526024356060840152608083015260a08201527f72362f8601a26e309bef1da8d6795550a593bd38f121bedcaf24be6e4b7c6bee60c03392a3600160095580f35b8c968d54938c61243e8483613639565b966125a6575b505088612546575b505050505082612460575b828080806123cd565b6040517f017e7e5800000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa90811561253b578a916124e6575b506123db936124e191613770565b612457565b90506020813d602011612533575b8161250160209383612b9d565b8101031261252f575173ffffffffffffffffffffffffffffffffffffffff8116810361252f576123db6124d3565b8980fd5b3d91506124f4565b6040513d8c823e3d90fd5b61259b959750612596929161258a6125909261256a8c60ff60065460a01c166136cf565b63ffffffff8061257e818560401c16612d93565b169260401c1690613593565b92612dad565b906134fb565b613593565b91388080808061244c565b82995061259687926125906125cb6125d29661256a8b9660ff60055460a01c166136cf565b9188612dad565b96388c612444565b61265061265d9461264a612663986115f96126436126206126066126579860ff60055460a01c166136cf565b9861261a60ff60065460a01c1695866136cf565b946136cf565b9763ffffffff60085416955061263d61263885612f6b565b612f48565b99612fbc565b918a612fbc565b96612fbc565b9180612fbc565b90613593565b90613971565b61266d8a8a613639565b1161267d5784898d8a38886123b6565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f42726f776e466956323a20494e56414c49445f494e56454e544f5259000000006044820152fd5b61265061265d94939761264a612751986115f96127206126579661271a61270b60ff60055460a01c169a8b6136cf565b9660ff60065460a01c166136cf565b986136cf565b966113da63ffffffff60085416958c60001461277957829c5b1561276c5761274b612638869e612f6b565b9a612fbc565b61275b8b8b613639565b1161267d57898d8a889388386123ad565b61274b6126388c9e612f6b565b809c612739565b88939c506127a6929b5084916dffffffffffffffffffffffffffff808893169116613390565b9a8b919a91819350612364565b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f42726f776e466956323a20494e53554646494349454e545f494e5055545f414d60448201527f4f554e54000000000000000000000000000000000000000000000000000000006064820152fd5b5084151561233f565b8792612334565b86946122ea565b9094506020813d602011612879575b8161286960209383612b9d565b810103126102e45751933861229f565b3d915061285c565b9491506020853d6020116128b0575b8161289d60209383612b9d565b810103126102e457935190936020612259565b3d9150612890565b883b15610a205760a46024917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8660405197889687957f6f9d78fc00000000000000000000000000000000000000000000000000000000875233600488015260043582880152813560448801526080606488015282608488015201868601378685828601015201168101030181838b5af180156129775761295d575b8781612210565b8761296e6024949399602093612b9d565b97919250612956565b6040513d8a823e3d90fd5b61299090602435908a612ff3565b38612209565b6129a36004358287612ff3565b612201565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f42726f776e466956323a20494e56414c49445f544f00000000000000000000006044820152fd5b50878914156121f4565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f42726f776e466956323a20494e53554646494349454e545f4c4951554944495460448201527f59000000000000000000000000000000000000000000000000000000000000006064820152fd5b50612aa0602435612e77565b612ab96dffffffffffffffffffffffffffff8516612f25565b10156121b1565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f42726f776e466956323a20494e53554646494349454e545f4f55545055545f4160448201527f4d4f554e540000000000000000000000000000000000000000000000000000006064820152fd5b506024351515612149565b8480fd5b8380fd5b6004359073ffffffffffffffffffffffffffffffffffffffff821682036102e457565b6024359073ffffffffffffffffffffffffffffffffffffffff821682036102e457565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117612bde57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b9190916020815282519283602083015260005b848110612c5f5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b8060208092840101516040828601015201612c20565b15612c7c57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f42726f776e466956323a204c4f434b45440000000000000000000000000000006044820152fd5b908160209103126102e4575180151581036102e45790565b15612cf957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f42726f776e466956323a205041555345440000000000000000000000000000006044820152fd5b91908203918211612d6457565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b63ffffffff166305f5e100019063ffffffff8211612d6457565b81810292918115918404141715612d6457565b15612dc757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f42726f776e466956323a204f4e4c595f464143544f52590000000000000000006044820152fd5b908160209103126102e4575160ff811681036102e45790565b8115612e48570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b90600091600a8102818104600a1482151715612ef8579250600a830403612e9a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f770000000000000000000000006044820152fd5b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b906000916008810281810460081482151715612ef85780935060031c03612e9a57565b906000916002810281810460021482151715612ef85780935060011c03612e9a57565b906000916305f5e100808202828104821483151715612f8f578094500403612e9a57565b6024857f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b600092918015918215612fd3575b505015612e9a57565b91509250612feb612fe48483612dad565b9384612e3e565b143880612fca565b600091908291826040956130987fffffffff00000000000000000000000000000000000000000000000000000000601960208a516130318c82612b9d565b8281527f7472616e7366657228616464726573732c75696e743235362900000000000000910190815220895191166020820190815273ffffffffffffffffffffffffffffffffffffffff959095166024820152604480820193909352918252606482612b9d565b51925af13d1561318d573d67ffffffffffffffff8111612bde578251906130e7601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200183612b9d565b81523d6000602083013e5b8161315e575b50156131015750565b606490517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f42726f776e466956323a205452414e534645525f4641494c45440000000000006044820152fd5b8051801592508215613173575b5050386130f8565b6131869250602080918301019101612cda565b388061316b565b60606130f2565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906040517f67cc3403000000000000000000000000000000000000000000000000000000008152602081600481865afa90811561331157600091613351575b506005546040517ffc3d545d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101829052602081604481875afa9081156133115760009161331d575b506006546040517ffc3d545d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101929092529260209082908180604481015b03915afa908115613311576000916132e2575090565b90506020813d602011613309575b816132fd60209383612b9d565b810103126102e4575190565b3d91506132f0565b6040513d6000823e3d90fd5b90506020813d602011613349575b8161333860209383612b9d565b810103126102e457516132cc613270565b3d915061332b565b906020823d60201161337b575b8161336b60209383612b9d565b8101031261033a5750513861320a565b3d915061335e565b91908201809211612d6457565b6133bf846133b9856133b361270b6133f1969a999a60ff60055460a01c166136cf565b95612dad565b93612dad565b808310801593916133de91613440576133d88184612d57565b92613383565b9063ffffffff60085460201c1690613593565b91826305f5e1000192836305f5e10011612d64576305f5e10003916305f5e1008311612d64571561343357613430929161342a916134fb565b936134fb565b90565b6134309261342a916134fb565b6133d88382612d57565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6305f5e1008209916305f5e1008202918280851094039380850394146134ee57838211156102e4576305f5e100829109818060000316809204600281600302188082026002030280820260020302808202600203028082026002030280820260020302809102600203029360018380600003040190848311900302920304170290565b50809250156102e4570490565b9190916000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848209908481029283808410930392808403931461358457826305f5e100111561033a57507facbe0e98f503f8881186e60dbb7f727bf36b7213ee9f5a78c767074b22e90e2193946305f5e100910990828211900360f81b910360081c170290565b5050506305f5e1009192500490565b917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff828409928281029283808610950394808603951461362b57848311156102e457829109818060000316809204600281600302188082026002030280820260020302808202600203028082026002030280820260020302809102600203029360018380600003040190848311900302920304170290565b5050809250156102e4570490565b906115f9613430926113da6136a06113da61367d6007546dffffffffffffffffffffffffffff8116916dffffffffffffffffffffffffffff8260701c169160e01c90565b5092906dffffffffffffffffffffffffffff60ff60055460a01c169116906136cf565b916dffffffffffffffffffffffffffff60ff60065460a01c169116906136cf565b604d8111612d6457600a0a90565b60009060ff166012811115613720577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffee9150019060ff8211612d645761371a60ff61343093166136c1565b90612e3e565b6012039060ff821161374357509061373d60ff61343093166136c1565b90612dad565b807f4e487b7100000000000000000000000000000000000000000000000000000000602492526011600452fd5b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602073ffffffffffffffffffffffffffffffffffffffff6000936137b6868654613a75565b85551693848452600182526137cf816040862054613a75565b858552600183526040852055604051908152a3565b6dffffffffffffffffffffffffffff811115806138f6575b15613898577f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1916dffffffffffffffffffffffffffff806040931691827bffffffffffffffffffffffffffff00000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000004260e01b169260701b16171780600755835192835260701c166020820152a1565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f42726f776e466956323a204f564552464c4f57000000000000000000000000006044820152fd5b506dffffffffffffffffffffffffffff8211156137fc565b602073ffffffffffffffffffffffffffffffffffffffff807f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925931693846000526002835260406000208282166000528352856040600020556040519586521693a3565b919061397d9083612d57565b91821161398657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f7700000000000000000000006044820152fd5b602073ffffffffffffffffffffffffffffffffffffffff807fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9316938460005260018352613a3786604060002054613971565b856000526001845260406000205516938460005260018252613a5e81604060002054613a75565b8560005260018352604060002055604051908152a3565b9190613a819083613383565b918210613a8a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f770000000000000000000000006044820152fdfea264697066735822122033110442b41d4c92915d25551e22481d6936ebaaba15a56a41ce80c7a8fb7a9664736f6c634300081c0033

Deployed Bytecode

0x6080604052600436101561001257600080fd5b6000803560e01c8063022c0d9f1461201c57806306fdde0314611fa55780630902f1ac14611f14578063095ea7b314611ecf5780630b77884d14611e8d5780630dfe168114611e3b57806318160ddd14611e005780631ab971ab14611d4057806323b872dd14611c1657806330adf81f14611bbd578063313ce56714611b8357806333fca18714611b415780633644e51514611b05578063485cc955146117b85780635f086549146116a15780636a627842146111aa57806370a0823114611147578063762bff4a1461101d5780637ecebe0014610fba57806389afcb4414610aef57806395d89b4114610a74578063a9059cbb14610a24578063aa9f76281461095c578063aaf5eb681461091f578063b0e21e8a146108da578063b31ac6e214610898578063b4f40c6114610856578063ba9a7a561461081b578063bc25cf77146107d4578063c45a015514610765578063d21220a714610713578063d505accf14610441578063dad0be61146103fd578063dd62ed3e14610382578063ddca3f431461033d5763fff6cae9146101a957600080fd5b3461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576101e5600160095414612c75565b806009556024602073ffffffffffffffffffffffffffffffffffffffff60055416604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa801561032f5782906102fc575b60249150602073ffffffffffffffffffffffffffffffffffffffff60065416604051938480927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa9081156102f15783916102b6575b6102ae92506137e4565b600160095580f35b90506020823d6020116102e9575b816102d160209383612b9d565b810103126102e4576102ae9151906102a4565b600080fd5b3d91506102c4565b6040513d85823e3d90fd5b506020813d602011610327575b8161031660209383612b9d565b810103126102e45760249051610245565b3d9150610309565b6040513d84823e3d90fd5b80fd5b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602063ffffffff60085460401c16604051908152f35b503461033a5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5773ffffffffffffffffffffffffffffffffffffffff60406103d1612b57565b92826103db612b7a565b9416815260026020522091166000526020526020604060002054604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602063ffffffff600854821c16604051908152f35b503461033a5760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610479612b57565b610481612b7a565b6044359060643560843560ff811680910361070f574282106106b15760035473ffffffffffffffffffffffffffffffffffffffff861692838852600460205260408820908154917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8314610684579282602095928b95600160809601905560405190878201927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9845289604084015273ffffffffffffffffffffffffffffffffffffffff8b1660608401528b8784015260a083015260c082015260c0815261056a60e082612b9d565b51902060405190868201927f1901000000000000000000000000000000000000000000000000000000000000845260228301526042820152604281526105b1606282612b9d565b519020906040519182528482015260a435604082015260c435606082015282805260015afa156106795773ffffffffffffffffffffffffffffffffffffffff85511690811515918261066f575b5050156106115761060e9261390e565b80f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f42726f776e466956323a20494e56414c49445f5349474e4154555245000000006044820152fd5b14905038806105fe565b6040513d86823e3d90fd5b60248a7f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f42726f776e466956323a204558504952454400000000000000000000000000006044820152fd5b8580fd5b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602073ffffffffffffffffffffffffffffffffffffffff60065416604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602060405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5168152f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5761080c612b57565b506102ae600160095414612c75565b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760206040516103e88152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602063ffffffff60085416604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602060ff60055460a01c16604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602063ffffffff60085460601c16604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760206040516305f5e1008152f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760043563ffffffff81168103610a20576109dd73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5163314612dc0565b7fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff6fffffffff0000000000000000000000006008549260601b1691161760085580f35b5080fd5b503461033a5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610a69610a5f612b57565b60243590336139e4565b602060405160018152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5750610aeb604051610ab5604082612b9d565b600581527f42462d5632000000000000000000000000000000000000000000000000000000602082015260405191829182612c0d565b0390f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610b27612b57565b610b35600160095414612c75565b816009556040517fb187bd2600000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5165afa80156102f157610bb6918491610f8b575b5015612cf2565b73ffffffffffffffffffffffffffffffffffffffff600554169173ffffffffffffffffffffffffffffffffffffffff6006541691604051917f70a08231000000000000000000000000000000000000000000000000000000008352306004840152602083602481885afa928315610f7e578193610f4a575b50604051937f70a08231000000000000000000000000000000000000000000000000000000008552306004860152602085602481845afa94851561032f578295610f16575b503082526001602052610ca5610c99610c99610c9e60408620549786549384918a612fbc565b612e3e565b9787612fbc565b9385151580610f0d575b15610e89576024968360209230825260018452610cd0816040842054613971565b308352600185526040832055610ce7818354613971565b82556040519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef843092a3610d1f878683612ff3565b610d2a868685612ff3565b604051978880927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa95861561032f578296610e54575b506020602491604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa918215610e485791610e15575b50610dbc906040956137e4565b73ffffffffffffffffffffffffffffffffffffffff84519184835283602084015216907fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496853392a3600160095582519182526020820152f35b90506020813d602011610e40575b81610e3060209383612b9d565b810103126102e457516040610daf565b3d9150610e23565b604051903d90823e3d90fd5b9095506020813d602011610e81575b81610e7060209383612b9d565b810103126102e45751946020610d6a565b3d9150610e63565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f42726f776e466956323a20494e53554646494349454e545f4c4951554944495460448201527f595f4255524e45440000000000000000000000000000000000000000000000006064820152fd5b50841515610caf565b9094506020813d602011610f42575b81610f3260209383612b9d565b810103126102e457519338610c73565b3d9150610f25565b9092506020813d602011610f76575b81610f6660209383612b9d565b810103126102e457519138610c2e565b3d9150610f59565b50604051903d90823e3d90fd5b610fad915060203d602011610fb3575b610fa58183612b9d565b810190612cda565b38610baf565b503d610f9b565b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57604060209173ffffffffffffffffffffffffffffffffffffffff61100c612b57565b168152600483522054604051908152f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760043563ffffffff8116808203611143576305f5e100906110a573ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5163314612dc0565b116110e5577fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff67ffffffff000000006008549260201b1691161760085580f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f42726f776e466956323a204d4158494d554d5f4c414d424441000000000000006044820152fd5b8280fd5b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57604060209173ffffffffffffffffffffffffffffffffffffffff611199612b57565b168152600183522054604051908152f35b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576111e2612b57565b906111f1600160095414612c75565b806009556040517fb187bd2600000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5165afa90811561032f5790611273918391610f8b575015612cf2565b6112a66007546dffffffffffffffffffffffffffff8116916dffffffffffffffffffffffffffff8260701c169160e01c90565b5090600554604051947f70a0823100000000000000000000000000000000000000000000000000000000865230600487015260208660248173ffffffffffffffffffffffffffffffffffffffff86165afa958615611696578596611662575b5060065491604051927f70a0823100000000000000000000000000000000000000000000000000000000845230600485015260208460248173ffffffffffffffffffffffffffffffffffffffff85165afa938415611657578794611613575b506dffffffffffffffffffffffffffff60ff939495166dffffffffffffffffffffffffffff611393828b613971565b971661139f8188613971565b926113a8613194565b96909560a01c169160ff6113bc8b856136cf565b9260a01c16916113e0886113da896113d48a886136cf565b94612fbc565b92612fbc565b8082101561160b5750935b8b5493846115bc57505050505061140190612f48565b60401c7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc18810190811161158f579661143c6103e88254613a75565b815580805260016020526114566103e86040832054613a75565b81805260016020526040822055807fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206040516103e88152a35b861561150b576114c273ffffffffffffffffffffffffffffffffffffffff956020996114bd8a88613770565b6137e4565b604051958652878601526040850152606084015216907f265ee4cff6cdf714e68c02e61a7864cf66bc04e372a41b6cc425acbb737cd39560803392a36001600955604051908152f35b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f42726f776e466956323a20494e53554646494349454e545f4c4951554944495460448201527f595f4d494e5445440000000000000000000000000000000000000000000000006064820152fd5b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b611605969c506115eb6115e56115ff959697946115df6115f9956115f2956136cf565b976136cf565b93612f48565b9488612fbc565b9188612fbc565b90613a75565b91613593565b95611491565b9050936113eb565b9293506020833d60201161164f575b8161162f60209383612b9d565b810103126102e457915192916dffffffffffffffffffffffffffff611364565b3d9150611622565b6040513d89823e3d90fd5b9095506020813d60201161168e575b8161167e60209383612b9d565b810103126102e457519438611305565b3d9150611671565b6040513d87823e3d90fd5b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760043563ffffffff8116809103610a205761172373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5163314612dc0565b630bebc200811161175a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000600854161760085580f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f42726f776e466956323a204d4158494d554d5f4b0000000000000000000000006044820152fd5b503461033a5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576117f0612b57565b6117f8612b7a565b9073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5163303611aa75773ffffffffffffffffffffffffffffffffffffffff169081151580611a88575b15611a2a5773ffffffffffffffffffffffffffffffffffffffff60055491837fffffffffffffffffffffffff0000000000000000000000000000000000000000841617600555169060065492827fffffffffffffffffffffffff00000000000000000000000000000000000000008516176006556040517f313ce567000000000000000000000000000000000000000000000000000000008152602081600481855afa908115611a1f577fffffffffffffffffffffff0000000000000000000000000000000000000000009174ff0000000000000000000000000000000000000000918891611a00575b5060a01b16921617176005556040517f313ce567000000000000000000000000000000000000000000000000000000008152602081600481855afa908115610679577fffffffffffffffffffffff0000000000000000000000000000000000000000009174ff00000000000000000000000000000000000000009186916119d1575b5060a01b169216171760065580f35b6119f3915060203d6020116119f9575b6119eb8183612b9d565b810190612e25565b386119c2565b503d6119e1565b611a19915060203d6020116119f9576119eb8183612b9d565b38611940565b6040513d88823e3d90fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f42726f776e466956323a205a45524f5f414444524553530000000000000000006044820152fd5b5073ffffffffffffffffffffffffffffffffffffffff81161515611856565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f42726f776e466956323a20464f5242494444454e0000000000000000000000006044820152fd5b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576020600354604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a576020604051680100000000000000008152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602060405160128152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760206040517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98152f35b503461033a5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610a6990611c52612b57565b611c5a612b7a565b906044359273ffffffffffffffffffffffffffffffffffffffff82169081815260026020526040812073ffffffffffffffffffffffffffffffffffffffff33166000526020527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60406000205403611cd4575b50506139e4565b808260409252600260205281812073ffffffffffffffffffffffffffffffffffffffff3316600052602052611d0d868360002054613971565b92815260026020522073ffffffffffffffffffffffffffffffffffffffff33166000526020526040600020553880611ccd565b503461033a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760043563ffffffff81168103610a2057611dc173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5163314612dc0565b7fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff6bffffffff00000000000000006008549260401b1691161760085580f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760209054604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602073ffffffffffffffffffffffffffffffffffffffff60055416604051908152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57602060ff60065460a01c16604051908152f35b503461033a5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a57610a69611f0a612b57565b602435903361390e565b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760606dffffffffffffffffffffffffffff63ffffffff611f8c6007546dffffffffffffffffffffffffffff8116916dffffffffffffffffffffffffffff8260701c169160e01c90565b9193908160405195168552166020840152166040820152f35b503461033a57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5750610aeb604051611fe6604082612b9d565b600a81527f42726f776e466920563200000000000000000000000000000000000000000000602082015260405191829182612c0d565b503461033a5760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261033a5760443573ffffffffffffffffffffffffffffffffffffffff811690818103611143576064359067ffffffffffffffff8211612b535736602383011215612b535781600401359067ffffffffffffffff8211612b4f573660248385010111612b4f576120bb600160095414612c75565b846009556040517fb187bd2600000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5165afa8015611a1f5761213b918791610f8b575015612cf2565b600435159081158092612b44575b15612ac0576121816007546dffffffffffffffffffffffffffff8116916dffffffffffffffffffffffffffff8260701c169160e01c90565b50919093612190600435612e77565b6121a96dffffffffffffffffffffffffffff8716612f25565b101580612a94575b15612a105773ffffffffffffffffffffffffffffffffffffffff600554169173ffffffffffffffffffffffffffffffffffffffff60065416968389141580612a06575b156129a857899186612996575b602435612982575b50826128b8575b505050906020602492604051938480927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa918215611657578792612881575b506020602495604051968780927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa94851561165757879561284d575b506122bc6004356dffffffffffffffffffffffffffff8616612d57565b821115612846576122e86122e26004356dffffffffffffffffffffffffffff8716612d57565b83612d57565b945b6123066024356dffffffffffffffffffffffffffff8416612d57565b81111561283f5761233261232c6024356dffffffffffffffffffffffffffff8516612d57565b82612d57565b925b861580158091612836575b156127b35761234c613194565b8b8298829a6008549863ffffffff8a60201c16612780575b505086918a8c92888b6123a763ffffffff61239e816123948161238b818860401c16612d93565b1660043561344a565b9460401c16612d93565b1660243561344a565b926126db575b506024356125da575b50505050505063ffffffff8660601c16908161242e575b505050506123db92506137e4565b604051938452602084015260043560408401526024356060840152608083015260a08201527f72362f8601a26e309bef1da8d6795550a593bd38f121bedcaf24be6e4b7c6bee60c03392a3600160095580f35b8c968d54938c61243e8483613639565b966125a6575b505088612546575b505050505082612460575b828080806123cd565b6040517f017e7e5800000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c5165afa90811561253b578a916124e6575b506123db936124e191613770565b612457565b90506020813d602011612533575b8161250160209383612b9d565b8101031261252f575173ffffffffffffffffffffffffffffffffffffffff8116810361252f576123db6124d3565b8980fd5b3d91506124f4565b6040513d8c823e3d90fd5b61259b959750612596929161258a6125909261256a8c60ff60065460a01c166136cf565b63ffffffff8061257e818560401c16612d93565b169260401c1690613593565b92612dad565b906134fb565b613593565b91388080808061244c565b82995061259687926125906125cb6125d29661256a8b9660ff60055460a01c166136cf565b9188612dad565b96388c612444565b61265061265d9461264a612663986115f96126436126206126066126579860ff60055460a01c166136cf565b9861261a60ff60065460a01c1695866136cf565b946136cf565b9763ffffffff60085416955061263d61263885612f6b565b612f48565b99612fbc565b918a612fbc565b96612fbc565b9180612fbc565b90613593565b90613971565b61266d8a8a613639565b1161267d5784898d8a38886123b6565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f42726f776e466956323a20494e56414c49445f494e56454e544f5259000000006044820152fd5b61265061265d94939761264a612751986115f96127206126579661271a61270b60ff60055460a01c169a8b6136cf565b9660ff60065460a01c166136cf565b986136cf565b966113da63ffffffff60085416958c60001461277957829c5b1561276c5761274b612638869e612f6b565b9a612fbc565b61275b8b8b613639565b1161267d57898d8a889388386123ad565b61274b6126388c9e612f6b565b809c612739565b88939c506127a6929b5084916dffffffffffffffffffffffffffff808893169116613390565b9a8b919a91819350612364565b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f42726f776e466956323a20494e53554646494349454e545f494e5055545f414d60448201527f4f554e54000000000000000000000000000000000000000000000000000000006064820152fd5b5084151561233f565b8792612334565b86946122ea565b9094506020813d602011612879575b8161286960209383612b9d565b810103126102e45751933861229f565b3d915061285c565b9491506020853d6020116128b0575b8161289d60209383612b9d565b810103126102e457935190936020612259565b3d9150612890565b883b15610a205760a46024917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8660405197889687957f6f9d78fc00000000000000000000000000000000000000000000000000000000875233600488015260043582880152813560448801526080606488015282608488015201868601378685828601015201168101030181838b5af180156129775761295d575b8781612210565b8761296e6024949399602093612b9d565b97919250612956565b6040513d8a823e3d90fd5b61299090602435908a612ff3565b38612209565b6129a36004358287612ff3565b612201565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f42726f776e466956323a20494e56414c49445f544f00000000000000000000006044820152fd5b50878914156121f4565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f42726f776e466956323a20494e53554646494349454e545f4c4951554944495460448201527f59000000000000000000000000000000000000000000000000000000000000006064820152fd5b50612aa0602435612e77565b612ab96dffffffffffffffffffffffffffff8516612f25565b10156121b1565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f42726f776e466956323a20494e53554646494349454e545f4f55545055545f4160448201527f4d4f554e540000000000000000000000000000000000000000000000000000006064820152fd5b506024351515612149565b8480fd5b8380fd5b6004359073ffffffffffffffffffffffffffffffffffffffff821682036102e457565b6024359073ffffffffffffffffffffffffffffffffffffffff821682036102e457565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117612bde57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b9190916020815282519283602083015260005b848110612c5f5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b8060208092840101516040828601015201612c20565b15612c7c57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f42726f776e466956323a204c4f434b45440000000000000000000000000000006044820152fd5b908160209103126102e4575180151581036102e45790565b15612cf957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f42726f776e466956323a205041555345440000000000000000000000000000006044820152fd5b91908203918211612d6457565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b63ffffffff166305f5e100019063ffffffff8211612d6457565b81810292918115918404141715612d6457565b15612dc757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f42726f776e466956323a204f4e4c595f464143544f52590000000000000000006044820152fd5b908160209103126102e4575160ff811681036102e45790565b8115612e48570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b90600091600a8102818104600a1482151715612ef8579250600a830403612e9a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f770000000000000000000000006044820152fd5b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b906000916008810281810460081482151715612ef85780935060031c03612e9a57565b906000916002810281810460021482151715612ef85780935060011c03612e9a57565b906000916305f5e100808202828104821483151715612f8f578094500403612e9a57565b6024857f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b600092918015918215612fd3575b505015612e9a57565b91509250612feb612fe48483612dad565b9384612e3e565b143880612fca565b600091908291826040956130987fffffffff00000000000000000000000000000000000000000000000000000000601960208a516130318c82612b9d565b8281527f7472616e7366657228616464726573732c75696e743235362900000000000000910190815220895191166020820190815273ffffffffffffffffffffffffffffffffffffffff959095166024820152604480820193909352918252606482612b9d565b51925af13d1561318d573d67ffffffffffffffff8111612bde578251906130e7601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200183612b9d565b81523d6000602083013e5b8161315e575b50156131015750565b606490517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f42726f776e466956323a205452414e534645525f4641494c45440000000000006044820152fd5b8051801592508215613173575b5050386130f8565b6131869250602080918301019101612cda565b388061316b565b60606130f2565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000af37509eaa2f75f47e8befd749bcada2c5ae71c516906040517f67cc3403000000000000000000000000000000000000000000000000000000008152602081600481865afa90811561331157600091613351575b506005546040517ffc3d545d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101829052602081604481875afa9081156133115760009161331d575b506006546040517ffc3d545d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101929092529260209082908180604481015b03915afa908115613311576000916132e2575090565b90506020813d602011613309575b816132fd60209383612b9d565b810103126102e4575190565b3d91506132f0565b6040513d6000823e3d90fd5b90506020813d602011613349575b8161333860209383612b9d565b810103126102e457516132cc613270565b3d915061332b565b906020823d60201161337b575b8161336b60209383612b9d565b8101031261033a5750513861320a565b3d915061335e565b91908201809211612d6457565b6133bf846133b9856133b361270b6133f1969a999a60ff60055460a01c166136cf565b95612dad565b93612dad565b808310801593916133de91613440576133d88184612d57565b92613383565b9063ffffffff60085460201c1690613593565b91826305f5e1000192836305f5e10011612d64576305f5e10003916305f5e1008311612d64571561343357613430929161342a916134fb565b936134fb565b90565b6134309261342a916134fb565b6133d88382612d57565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6305f5e1008209916305f5e1008202918280851094039380850394146134ee57838211156102e4576305f5e100829109818060000316809204600281600302188082026002030280820260020302808202600203028082026002030280820260020302809102600203029360018380600003040190848311900302920304170290565b50809250156102e4570490565b9190916000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848209908481029283808410930392808403931461358457826305f5e100111561033a57507facbe0e98f503f8881186e60dbb7f727bf36b7213ee9f5a78c767074b22e90e2193946305f5e100910990828211900360f81b910360081c170290565b5050506305f5e1009192500490565b917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff828409928281029283808610950394808603951461362b57848311156102e457829109818060000316809204600281600302188082026002030280820260020302808202600203028082026002030280820260020302809102600203029360018380600003040190848311900302920304170290565b5050809250156102e4570490565b906115f9613430926113da6136a06113da61367d6007546dffffffffffffffffffffffffffff8116916dffffffffffffffffffffffffffff8260701c169160e01c90565b5092906dffffffffffffffffffffffffffff60ff60055460a01c169116906136cf565b916dffffffffffffffffffffffffffff60ff60065460a01c169116906136cf565b604d8111612d6457600a0a90565b60009060ff166012811115613720577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffee9150019060ff8211612d645761371a60ff61343093166136c1565b90612e3e565b6012039060ff821161374357509061373d60ff61343093166136c1565b90612dad565b807f4e487b7100000000000000000000000000000000000000000000000000000000602492526011600452fd5b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602073ffffffffffffffffffffffffffffffffffffffff6000936137b6868654613a75565b85551693848452600182526137cf816040862054613a75565b858552600183526040852055604051908152a3565b6dffffffffffffffffffffffffffff811115806138f6575b15613898577f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1916dffffffffffffffffffffffffffff806040931691827bffffffffffffffffffffffffffff00000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000004260e01b169260701b16171780600755835192835260701c166020820152a1565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f42726f776e466956323a204f564552464c4f57000000000000000000000000006044820152fd5b506dffffffffffffffffffffffffffff8211156137fc565b602073ffffffffffffffffffffffffffffffffffffffff807f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925931693846000526002835260406000208282166000528352856040600020556040519586521693a3565b919061397d9083612d57565b91821161398657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f7700000000000000000000006044820152fd5b602073ffffffffffffffffffffffffffffffffffffffff807fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9316938460005260018352613a3786604060002054613971565b856000526001845260406000205516938460005260018252613a5e81604060002054613a75565b8560005260018352604060002055604051908152a3565b9190613a819083613383565b918210613a8a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f770000000000000000000000006044820152fdfea264697066735822122033110442b41d4c92915d25551e22481d6936ebaaba15a56a41ce80c7a8fb7a9664736f6c634300081c0033

[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.