ETH Price: $3,793.96 (-2.16%)
Gas: 9 Gwei

Token

BOOST (BOOST)
 

Overview

Max Total Supply

1,000,000 BOOST

Holders

183

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
gavinmclelland.eth
Balance
20,083.204615083363863581 BOOST

Value
$0.00
0xd674d9dbea02b7457408ed2cd21051498ec8d13c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoostToken

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : BoostToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.5.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";
import "@openzeppelin/contracts/access/roles/WhitelistAdminRole.sol";
import "./ERC20/ERC20TransferLiquidityLock.sol";
import "./ERC20/ERC20Distributable.sol";
import "./ERC20/ERC20Governance.sol";

/**
 *     ____  ____  ____  ___________
 *    / __ )/ __ \/ __ \/ ___/_  __/
 *   / __  / / / / / / /\__ \ / /
 *  / /_/ / /_/ / /_/ /___/ // /
 * /_____/\____/\____//____//_/
 */
contract BoostToken is ERC20Distributable,
ERC20Detailed("BOOST", "BOOST", 18),
    // governance must be before transfer liquidity lock
    // or delegates are not updated correctly
ERC20Governance,
WhitelistAdminRole,
ERC20TransferLiquidityLock
{
    function isFeeless(address account) public view returns (bool) {
        return _isFeeless[account];
    }

    function unlock() public onlyWhitelistAdmin {
        locked = false;
    }

    function setMinRebalanceAmount(uint256 amount_) public onlyWhitelistAdmin {
        minRebalanceAmount = amount_;
    }
}

File 2 of 13 : ERC20Distributable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.5.0;

import "@openzeppelin/contracts/GSN/Context.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/ownership/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";

// Fork of RFI
contract ERC20Distributable is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    mapping(address => bool) internal _isFeeless;

    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 1000000 ether;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    uint256 public feeDivisor = 50;

    event Redestributed(address from, uint256 t, uint256 rAmount, uint256 tAmount);

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function totalSupply() public view returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner {
        require(_isExcluded[account], "Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function setFeeDivisor(uint256 divisor) external onlyOwner {
        require(divisor > 0, "ERC20Distributable: divisor is less than 0");
        feeDivisor = divisor;
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);

        if (_isFeeless[sender] || _isFeeless[recipient]) {
            rTransferAmount = rTransferAmount.add(rFee);
            tTransferAmount = tTransferAmount.add(tFee);
        } else {
            _reflectFee(rFee, tFee);
            emit Redestributed(sender, 1, rAmount, tAmount);
        }

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);

        if (_isFeeless[sender] || _isFeeless[recipient]) {
            rTransferAmount = rTransferAmount.add(rFee);
            tTransferAmount = tTransferAmount.add(tFee);
        } else {
            _reflectFee(rFee, tFee);
            emit Redestributed(sender, 2, rAmount, tAmount);
        }

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);

        if (_isFeeless[sender] || _isFeeless[recipient]) {
            rTransferAmount = rTransferAmount.add(rFee);
            tTransferAmount = tTransferAmount.add(tFee);
        } else {
            _reflectFee(rFee, tFee);
            emit Redestributed(sender, 3, rAmount, tAmount);
        }

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);

        if (_isFeeless[sender] || _isFeeless[recipient]) {
            rTransferAmount= rTransferAmount.add(rFee);
            tTransferAmount = tTransferAmount.add(tFee);
        } else {
            _reflectFee(rFee, tFee);
            emit Redestributed(sender, 4, rAmount, tAmount);
        }

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount);
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256) {
        uint256 tFee = tAmount.div(feeDivisor);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
}

File 3 of 13 : ERC20Governance.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.5.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";

contract ERC20Governance is ERC20, ERC20Detailed {
    using SafeMath for uint256;

    function _transfer(address from, address to, uint256 amount) internal {
        _moveDelegates(_delegates[from], _delegates[to], amount);
        super._transfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal {
        _moveDelegates(address(0), _delegates[account], amount);
        super._mint(account, amount);
    }

    function _burn(address account, uint256 amount) internal {
        _moveDelegates(_delegates[account], address(0), amount);
        super._burn(account, amount);
    }

    // Copied and modified from YAM code:
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
    // Which is copied and modified from COMPOUND:
    // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

    /// @notice A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
    external
    view
    returns (address)
    {
        return _delegates[delegator];
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
    external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "ERC20Governance::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "ERC20Governance::delegateBySig: invalid nonce");
        require(now <= expiry, "ERC20Governance::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
    external
    view
    returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
    external
    view
    returns (uint256)
    {
        require(blockNumber < block.number, "ERC20Governance::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
    internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); // balance of underlying ERC20Governances (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
    internal
    {
        uint32 blockNumber = safe32(block.number, "ERC20Governance::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

File 4 of 13 : ERC20TransferLiquidityLock.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.5.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/roles/WhitelistAdminRole.sol";
import "./ERC20Distributable.sol";
import "../BoostToken.sol";

contract ERC20TransferLiquidityLock is IERC20, ERC20Distributable, WhitelistAdminRole {
    using SafeMath for uint256;

    event Rebalance(uint256 tokenBurnt);
    event RewardLiquidityProviders(uint256 liquidityRewards);

    address public uniswapV2Router;
    address public uniswapV2Pair;

    mapping(address => bool) unlocked;

    // How much tokens to lock on each transfer, 100 = 1%, 50 = 2%, 25 = 4%, etc
    uint256 public callerRewardDivisor;
    uint256 public rebalanceDivisor;

    uint256 public minRebalanceAmount;
    uint256 public lastRebalance;
    uint256 public rebalanceInterval;

    uint256 public lpUnlocked;
    bool public locked;

    Balancer balancer;

    event LpFeeTaken(address from, uint256 amount);

    constructor() public {
        lastRebalance = block.timestamp;
        callerRewardDivisor = 50;
        rebalanceDivisor = 50;
        rebalanceInterval = 1 hours;
        lpUnlocked = block.timestamp + 90 days;
        minRebalanceAmount = 100 ether;

        balancer = new Balancer();

        _isFeeless[address(this)] = true;
        _isFeeless[address(balancer)] = true;
        _isFeeless[msg.sender] = true;
        locked = false;
        unlocked[msg.sender] = true;
        unlocked[address(balancer)] = true;
    }

    // receive eth from uniswap swap
    function() external payable {}

    function setUniswapV2Router(address _uniswapV2Router) public onlyWhitelistAdmin {
        require(uniswapV2Router == address(0), "BoostToken::setUniswapV2Router: already set");
        uniswapV2Router = _uniswapV2Router;
    }

    function setUniswapV2Pair(address _uniswapV2Pair) public onlyWhitelistAdmin {
        require(uniswapV2Pair == address(0), "BoostToken::setUniswapV2Pair: already set");
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setRebalanceDivisor(uint256 _rebalanceDivisor) public onlyWhitelistAdmin {
        if (_rebalanceDivisor != 0) {
            require(_rebalanceDivisor >= 10, "BoostToken::setRebalanceDivisor: too small");
        }
        rebalanceDivisor = _rebalanceDivisor;
    }

    function setRebalanceInterval(uint256 _interval) public onlyWhitelistAdmin {
        rebalanceInterval = _interval;
    }

    function setCallerRewardDivisior(uint256 _rewardDivisor) public onlyWhitelistAdmin {
        if (_rewardDivisor != 0) {
            require(_rewardDivisor >= 10, "BoostToken::setCallerRewardDivisor: too small");
        }
        callerRewardDivisor = _rewardDivisor;
    }

    function unlockLP() public onlyWhitelistAdmin {
        require(now > lpUnlocked, "Not unlocked yet");
        uint256 amount = IERC20(uniswapV2Pair).balanceOf(address(this));
        IERC20(uniswapV2Pair).transfer(msg.sender, amount);
    }

    function toggleFeeless(address account) public onlyWhitelistAdmin {
        _isFeeless[account] = !_isFeeless[account];
    }

    function toggleUnlockable(address account) public onlyWhitelistAdmin {
        unlocked[account] = !unlocked[account];
    }

    function _transfer(address from, address to, uint256 amount) internal {
        if (locked && unlocked[from] != true && unlocked[to] != true) {
            revert("ERC20TransferLiquidityLock: Locked until the end of the presale");
        }
        super._transfer(from, to, amount);
    }

    function getBalancerAddress() public view onlyWhitelistAdmin returns (address) {
        return address(balancer);
    }

    function rebalanceLiquidity() public {
        require(balanceOf(msg.sender) >= minRebalanceAmount, "ERC20TransferLiquidityLock: You have to own enough tokens");
        require(block.timestamp > lastRebalance + rebalanceInterval, 'ERC20TransferLiquidityLock: Too soon to re-balance');
        require(uniswapV2Pair != address(0), "ERC20TransferLiquidityLock: Uniswap pair is not set");

        lastRebalance = block.timestamp;

        // Take 2% from the Uniswap pool of tokens...
        uint256 amountToRemove = IERC20(uniswapV2Pair).balanceOf(address(this)).div(rebalanceDivisor);
        // Exchange them for ETH, which is sent to the Balancer...
        remLiquidity(amountToRemove);
        // Balancer uses the ETH to buy tokens back,
        // then sends 4% of tokens to the caller and burns other tokens
        uint _locked = balancer.rebalance(callerRewardDivisor);

        emit Rebalance(_locked);
    }

    // Removes tokens from liquidity pool and send result ETH to the Balancer
    function remLiquidity(uint256 lpAmount) private returns (uint ETHAmount) {
        IERC20(uniswapV2Pair).approve(uniswapV2Router, lpAmount);
        (ETHAmount) = IUniswapV2Router02(uniswapV2Router)
        .removeLiquidityETHSupportingFeeOnTransferTokens(
            address(this),
            lpAmount,
            0,
            0,
            address(balancer),
            block.timestamp
        );
    }

    // returns token amount
    function lockableSupply() external view returns (uint256) {
        return balanceOf(address(this));
    }

    // returns token amount
    function lockedSupply() external view returns (uint256) {
        uint256 lpTotalSupply = IERC20(uniswapV2Pair).totalSupply();
        uint256 lpBalance = lockedLiquidity();
        uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply);

        uint256 uniswapBalance = balanceOf(uniswapV2Pair);
        uint256 _lockedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12);
        return _lockedSupply;
    }

    // returns token amount
    function burnedSupply() external view returns (uint256) {
        uint256 lpTotalSupply = IERC20(uniswapV2Pair).totalSupply();
        uint256 lpBalance = burnedLiquidity();
        uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply);

        uint256 uniswapBalance = balanceOf(uniswapV2Pair);
        uint256 _burnedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12);
        return _burnedSupply;
    }

    // returns LP amount, not token amount
    function burnableLiquidity() public view returns (uint256) {
        return IERC20(uniswapV2Pair).balanceOf(address(this));
    }

    // returns LP amount, not token amount
    function burnedLiquidity() public view returns (uint256) {
        return IERC20(uniswapV2Pair).balanceOf(address(0));
    }

    // returns LP amount, not token amount
    function lockedLiquidity() public view returns (uint256) {
        return burnableLiquidity().add(burnedLiquidity());
    }
}


contract Balancer {
    using SafeMath for uint256;
    BoostToken token;
    address public burnAddr = 0x000000000000000000000000000000000000dEaD;

    constructor() public {
        token = BoostToken(msg.sender);
    }

    function() external payable {}

    function rebalance(uint callerRewardDivisor) external returns (uint256) {
        require(msg.sender == address(token), "only token");

        swapEthForTokens(address(this).balance);

        uint256 lockableBalance = token.balanceOf(address(this));
        uint256 callerReward = lockableBalance.div(callerRewardDivisor);
        uint256 burnAmount = lockableBalance.sub(callerReward);

        token.transfer(tx.origin, callerReward);
        token.transfer(burnAddr, burnAmount);

        return burnAmount;
    }

    function swapEthForTokens(uint256 EthAmount) private {
        address[] memory uniswapPairPath = new address[](2);
        uniswapPairPath[0] = IUniswapV2Router02(token.uniswapV2Router()).WETH();
        uniswapPairPath[1] = address(token);

        token.approve(token.uniswapV2Router(), EthAmount);

        IUniswapV2Router02(token.uniswapV2Router())
        .swapExactETHForTokensSupportingFeeOnTransferTokens.value(EthAmount)(
            0,
            uniswapPairPath,
            address(this),
            block.timestamp
        );
    }
}

interface IUniswapV2Router02 {
    function WETH() external pure returns (address);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
}

interface IUniswapV2Pair {
    function sync() external;
}

File 5 of 13 : Context.sol
pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 6 of 13 : Roles.sol
pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

File 7 of 13 : WhitelistAdminRole.sol
pragma solidity ^0.5.0;

import "../../GSN/Context.sol";
import "../Roles.sol";

/**
 * @title WhitelistAdminRole
 * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts.
 */
contract WhitelistAdminRole is Context {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

    constructor () internal {
        _addWhitelistAdmin(_msgSender());
    }

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    function addWhitelistAdmin(address account) public onlyWhitelistAdmin {
        _addWhitelistAdmin(account);
    }

    function renounceWhitelistAdmin() public {
        _removeWhitelistAdmin(_msgSender());
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}

File 8 of 13 : SafeMath.sol
pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 9 of 13 : Ownable.sol
pragma solidity ^0.5.0;

import "../GSN/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 10 of 13 : ERC20.sol
pragma solidity ^0.5.0;

import "../../GSN/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

File 11 of 13 : ERC20Detailed.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

File 12 of 13 : IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 13 of 13 : Address.sol
pragma solidity ^0.5.5;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following 
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {
    "": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LpFeeTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenBurnt","type":"uint256"}],"name":"Rebalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"t","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"Redestributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"liquidityRewards","type":"uint256"}],"name":"RewardLiquidityProviders","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnableLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"callerRewardDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"feeDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBalancerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isFeeless","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastRebalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lpUnlocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minRebalanceAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rebalanceDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rebalanceInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"rebalanceLiquidity","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_rewardDivisor","type":"uint256"}],"name":"setCallerRewardDivisior","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setFeeDivisor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"setMinRebalanceAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_rebalanceDivisor","type":"uint256"}],"name":"setRebalanceDivisor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_interval","type":"uint256"}],"name":"setRebalanceInterval","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"name":"setUniswapV2Router","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"toggleFeeless","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"toggleUnlockable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unlockLP","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

69085afffa6ff50bffffff19600a556032600c5560056080818152641093d3d4d560da1b60a081905261010060405260c092835260e0529060126000620000456200027f565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5460046000620000ad6001600160e01b036200027f16565b6001600160a01b03168152602081019190915260400160002055620000da6001600160e01b036200027f16565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69d3c21bcecceda10000006040518082815260200191505060405180910390a382516200014490600d906020860190620003cc565b5081516200015a90600e906020850190620003cc565b50600f805460ff191660ff92909216919091179055506200018f9050620001806200027f565b6001600160e01b036200028416565b42601b81905560326018819055601955610e10601c556276a70001601d5568056bc75e2d63100000601a55604051620001c89062000451565b604051809103906000f080158015620001e5573d6000803e3d6000fd5b50601e8054610100600160a81b0319166101006001600160a01b039384168102919091178255306000908152600960209081526040808320805460ff199081166001908117909255865486900488168552828520805482168317905533855282852080548216831790558654811687556017909352818420805484168217905594549390930490941681522080549092161790556200047c565b335b90565b6200029f816014620002d660201b6200353b1790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b620002eb82826001600160e01b036200036316565b156200033e576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620003ac5760405162461bcd60e51b8152600401808060200182810382526022815260200180620051bb6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200040f57805160ff19168380011785556200043f565b828001600101855582156200043f579182015b828111156200043f57825182559160200191906001019062000422565b506200044d9291506200045f565b5090565b61081f806200499c83390190565b6200028191905b808211156200044d576000815560010162000466565b614510806200048c6000396000f3fe6080604052600436106103cd5760003560e01c80637ecebe00116101fd578063b91f3f9711610118578063e161eb56116100ab578063f2cc0c181161007a578063f2cc0c1814610d68578063f2fde38b14610d9b578063f4f6713714610dce578063f84354f114610de3578063f953797314610e16576103cd565b8063e161eb5614610cca578063e7a324dc14610cdf578063e84354c514610cf4578063f1127ed814610d09576103cd565b8063cafab289116100e7578063cafab28914610c32578063cba0e99614610c47578063cf30901214610c7a578063dd62ed3e14610c8f576103cd565b8063b91f3f9714610b81578063bb5f747b14610b96578063c3cda52014610bc9578063ca5c7b9114610c1d576103cd565b8063a457c2d711610190578063ae74a1b51161015f578063ae74a1b514610adc578063b439824414610b0f578063b4b5ea5714610b24578063b6833c5914610b57576103cd565b8063a457c2d714610a40578063a69df4b514610a79578063a8a5550e14610a8e578063a9059cbb14610aa3576103cd565b80638f32d59b116101cc5780638f32d59b146109ce57806395d89b41146109e35780639a36f932146109f8578063a29a608914610a0d576103cd565b80637ecebe001461095c5780637f4aeb1a1461098f578063858750ab146109a45780638da5cb5b146109b9576103cd565b8063313ce567116102ed5780635c19a95c11610280578063715018a61161024f578063715018a6146108b15780637362d9c8146108c6578063782d6fe1146108f95780637e0d943e14610932576103cd565b80635c19a95c146107cc5780636fcfff45146107ff57806370709a7c1461084b57806370a082311461087e576103cd565b80634c5a628c116102bc5780634c5a628c1461074557806355d0a1d01461075a578063587cde1e1461076f5780635b7dcaed146107a2576103cd565b8063313ce5671461069a57806339509351146106c55780634549b039146106fe57806349bd5a5e14610730576103cd565b80631419841d1161036557806320606b701161033457806320606b701461060357806323b872dd146106185780632898cafa1461065b5780632d83811914610670576103cd565b80631419841d146105755780631694505e146105a857806316d1d916146105d957806318160ddd146105ee576103cd565b806306fdde03116103a157806306fdde0314610474578063095ea7b3146104fe578063106b9ca11461054b57806313114a9d14610560576103cd565b80629a8130146103cf57806302dd19d9146103f9578063043531b114610420578063053ab1821461044a575b005b3480156103db57600080fd5b506103cd600480360360208110156103f257600080fd5b5035610e49565b34801561040557600080fd5b5061040e610edf565b60408051918252519081900360200190f35b34801561042c57600080fd5b506103cd6004803603602081101561044357600080fd5b5035610ee5565b34801561045657600080fd5b506103cd6004803603602081101561046d57600080fd5b5035610f70565b34801561048057600080fd5b50610489611054565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104c35781810151838201526020016104ab565b50505050905090810190601f1680156104f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561050a57600080fd5b506105376004803603604081101561052157600080fd5b506001600160a01b0381351690602001356110ea565b604080519115158252519081900360200190f35b34801561055757600080fd5b5061040e611108565b34801561056c57600080fd5b5061040e61110e565b34801561058157600080fd5b506103cd6004803603602081101561059857600080fd5b50356001600160a01b0316611114565b3480156105b457600080fd5b506105bd6111c4565b604080516001600160a01b039092168252519081900360200190f35b3480156105e557600080fd5b5061040e6111d3565b3480156105fa57600080fd5b5061040e6111d9565b34801561060f57600080fd5b5061040e6111e7565b34801561062457600080fd5b506105376004803603606081101561063b57600080fd5b506001600160a01b03813581169160208101359091169060400135611202565b34801561066757600080fd5b5061040e61128f565b34801561067c57600080fd5b5061040e6004803603602081101561069357600080fd5b503561130e565b3480156106a657600080fd5b506106af611376565b6040805160ff9092168252519081900360200190f35b3480156106d157600080fd5b50610537600480360360408110156106e857600080fd5b506001600160a01b03813516906020013561137f565b34801561070a57600080fd5b5061040e6004803603604081101561072157600080fd5b508035906020013515156113d3565b34801561073c57600080fd5b506105bd61146b565b34801561075157600080fd5b506103cd61147a565b34801561076657600080fd5b5061040e61148c565b34801561077b57600080fd5b506105bd6004803603602081101561079257600080fd5b50356001600160a01b0316611580565b3480156107ae57600080fd5b506103cd600480360360208110156107c557600080fd5b503561159e565b3480156107d857600080fd5b506103cd600480360360208110156107ef57600080fd5b50356001600160a01b03166115e9565b34801561080b57600080fd5b506108326004803603602081101561082257600080fd5b50356001600160a01b03166115f6565b6040805163ffffffff9092168252519081900360200190f35b34801561085757600080fd5b506103cd6004803603602081101561086e57600080fd5b50356001600160a01b031661160e565b34801561088a57600080fd5b5061040e600480360360208110156108a157600080fd5b50356001600160a01b031661167d565b3480156108bd57600080fd5b506103cd6116df565b3480156108d257600080fd5b506103cd600480360360208110156108e957600080fd5b50356001600160a01b0316611770565b34801561090557600080fd5b5061040e6004803603604081101561091c57600080fd5b506001600160a01b0381351690602001356117bf565b34801561093e57600080fd5b506103cd6004803603602081101561095557600080fd5b50356119c7565b34801561096857600080fd5b5061040e6004803603602081101561097f57600080fd5b50356001600160a01b0316611a58565b34801561099b57600080fd5b506103cd611a6a565b3480156109b057600080fd5b5061040e611c99565b3480156109c557600080fd5b506105bd611ce4565b3480156109da57600080fd5b50610537611cf3565b3480156109ef57600080fd5b50610489611d19565b348015610a0457600080fd5b5061040e611d7a565b348015610a1957600080fd5b506103cd60048036036020811015610a3057600080fd5b50356001600160a01b0316611d80565b348015610a4c57600080fd5b5061053760048036036040811015610a6357600080fd5b506001600160a01b038135169060200135611e30565b348015610a8557600080fd5b506103cd611e9e565b348015610a9a57600080fd5b5061040e611ef0565b348015610aaf57600080fd5b5061053760048036036040811015610ac657600080fd5b506001600160a01b038135169060200135611f00565b348015610ae857600080fd5b5061053760048036036020811015610aff57600080fd5b50356001600160a01b0316611f14565b348015610b1b57600080fd5b5061040e611f32565b348015610b3057600080fd5b5061040e60048036036020811015610b4757600080fd5b50356001600160a01b0316611f53565b348015610b6357600080fd5b506103cd60048036036020811015610b7a57600080fd5b5035611fb7565b348015610b8d57600080fd5b506103cd612002565b348015610ba257600080fd5b5061053760048036036020811015610bb957600080fd5b50356001600160a01b031661218e565b348015610bd557600080fd5b506103cd600480360360c0811015610bec57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356121a1565b348015610c2957600080fd5b5061040e612417565b348015610c3e57600080fd5b5061040e6124a0565b348015610c5357600080fd5b5061053760048036036020811015610c6a57600080fd5b50356001600160a01b03166124a6565b348015610c8657600080fd5b506105376124c4565b348015610c9b57600080fd5b5061040e60048036036040811015610cb257600080fd5b506001600160a01b03813581169160200135166124cd565b348015610cd657600080fd5b5061040e6124f8565b348015610ceb57600080fd5b5061040e6124fe565b348015610d0057600080fd5b5061040e612519565b348015610d1557600080fd5b50610d4860048036036040811015610d2c57600080fd5b5080356001600160a01b0316906020013563ffffffff1661251f565b6040805163ffffffff909316835260208301919091528051918290030190f35b348015610d7457600080fd5b506103cd60048036036020811015610d8b57600080fd5b50356001600160a01b031661254c565b348015610da757600080fd5b506103cd60048036036020811015610dbe57600080fd5b50356001600160a01b03166126c1565b348015610dda57600080fd5b506105bd612711565b348015610def57600080fd5b506103cd60048036036020811015610e0657600080fd5b50356001600160a01b031661276e565b348015610e2257600080fd5b506103cd60048036036020811015610e3957600080fd5b50356001600160a01b031661291e565b610e59610e5461298d565b61218e565b610e945760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b8015610eda57600a811015610eda5760405162461bcd60e51b815260040180806020018281038252602d815260200180614053602d913960400191505060405180910390fd5b601855565b60185481565b610eed611cf3565b610f2c576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b60008111610f6b5760405162461bcd60e51b815260040180806020018281038252602a815260200180613fce602a913960400191505060405180910390fd5b600c55565b6000610f7a61298d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610fd55760405162461bcd60e51b815260040180806020018281038252602c81526020018061448b602c913960400191505060405180910390fd5b6000610fe083612991565b505050506001600160a01b03831660009081526004602052604090205490915061100a90826129dd565b6001600160a01b038316600090815260046020526040902055600a54611036908263ffffffff6129dd16565b600a55600b5461104c908463ffffffff612a2616565b600b55505050565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b5050505050905090565b60006110fe6110f761298d565b8484612a80565b5060015b92915050565b601b5481565b600b5490565b61111f610e5461298d565b61115a5760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6015546001600160a01b0316156111a25760405162461bcd60e51b815260040180806020018281038252602b815260200180614112602b913960400191505060405180910390fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6015546001600160a01b031681565b601c5481565b69d3c21bcecceda100000090565b60405180604361420f82396043019050604051809103902081565b600061120f848484612b6c565b6112858461121b61298d565b61128085604051806060016040528060288152602001614273602891396001600160a01b038a1660009081526006602052604081209061125961298d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff612c0d16565b612a80565b5060019392505050565b601654604080516370a0823160e01b8152600060048201819052915191926001600160a01b0316916370a0823191602480820192602092909190829003018186803b1580156112dd57600080fd5b505afa1580156112f1573d6000803e3d6000fd5b505050506040513d602081101561130757600080fd5b5051905090565b6000600a548211156113515760405162461bcd60e51b815260040180806020018281038252602a815260200180614080602a913960400191505060405180910390fd5b600061135b612ca4565b905061136d838263ffffffff612ccd16565b9150505b919050565b600f5460ff1690565b60006110fe61138c61298d565b84611280856006600061139d61298d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a2616565b600069d3c21bcecceda1000000831115611434576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161145257600061144484612991565b509294506111029350505050565b600061145d84612991565b509194506111029350505050565b6016546001600160a01b031681565b61148a61148561298d565b612d0f565b565b600080601660009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156114dd57600080fd5b505afa1580156114f1573d6000803e3d6000fd5b505050506040513d602081101561150757600080fd5b50519050600061151561128f565b9050600061153e836115328464e8d4a5100063ffffffff612d5716565b9063ffffffff612ccd16565b601654909150600090611559906001600160a01b031661167d565b9050600061157664e8d4a51000611532848663ffffffff612d5716565b9550505050505090565b6001600160a01b039081166000908152601060205260409020541690565b6115a9610e5461298d565b6115e45760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b601c55565b6115f33382612db0565b50565b60126020526000908152604090205463ffffffff1681565b611619610e5461298d565b6116545760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19811660ff90911615179055565b6001600160a01b03811660009081526007602052604081205460ff16156116bd57506001600160a01b038116600090815260056020526040902054611371565b6001600160a01b0382166000908152600460205260409020546111029061130e565b6116e7611cf3565b611726576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b61177b610e5461298d565b6117b65760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6115f381612e45565b60004382106117ff5760405162461bcd60e51b81526004018080602001828103825260328152602001806143ce6032913960400191505060405180910390fd5b6001600160a01b03831660009081526012602052604090205463ffffffff168061182d576000915050611102565b6001600160a01b038416600090815260116020908152604080832063ffffffff60001986018116855292529091205416831061189c576001600160a01b03841660009081526011602090815260408083206000199490940163ffffffff16835292905220600101549050611102565b6001600160a01b038416600090815260116020908152604080832083805290915290205463ffffffff168310156118d7576000915050611102565b600060001982015b8163ffffffff168163ffffffff16111561199057600282820363ffffffff16048103611909613f31565b506001600160a01b038716600090815260116020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561196b576020015194506111029350505050565b805163ffffffff1687111561198257819350611989565b6001820392505b50506118df565b506001600160a01b038516600090815260116020908152604080832063ffffffff9094168352929052206001015491505092915050565b6119d2610e5461298d565b611a0d5760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b8015611a5357600a811015611a535760405162461bcd60e51b815260040180806020018281038252602a815260200180613ff8602a913960400191505060405180910390fd5b601955565b60136020526000908152604090205481565b601a54611a763361167d565b1015611ab35760405162461bcd60e51b8152600401808060200182810382526039815260200180613f956039913960400191505060405180910390fd5b601c54601b54014211611af75760405162461bcd60e51b81526004018080602001828103825260328152602001806143776032913960400191505060405180910390fd5b6016546001600160a01b0316611b3e5760405162461bcd60e51b815260040180806020018281038252603381526020018061413d6033913960400191505060405180910390fd5b42601b55601954601654604080516370a0823160e01b81523060048201529051600093611bd19390926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015611b9957600080fd5b505afa158015611bad573d6000803e3d6000fd5b505050506040513d6020811015611bc357600080fd5b50519063ffffffff612ccd16565b9050611bdc81612e8d565b50601e5460185460408051631e93260360e31b815260048101929092525160009261010090046001600160a01b03169163f499301891602480830192602092919082900301818787803b158015611c3257600080fd5b505af1158015611c46573d6000803e3d6000fd5b505050506040513d6020811015611c5c57600080fd5b50516040805182815290519192507f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd0919081900360200190a15050565b601654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156112dd57600080fd5b6003546001600160a01b031690565b6003546000906001600160a01b0316611d0a61298d565b6001600160a01b031614905090565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110e05780601f106110b5576101008083540402835291602001916110e0565b600c5481565b611d8b610e5461298d565b611dc65760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6016546001600160a01b031615611e0e5760405162461bcd60e51b8152600401808060200182810382526029815260200180613f6c6029913960400191505060405180910390fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b60006110fe611e3d61298d565b84611280856040518060600160405280602581526020016144b76025913960066000611e6761298d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff612c0d16565b611ea9610e5461298d565b611ee45760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b601e805460ff19169055565b6000611efb3061167d565b905090565b60006110fe611f0d61298d565b8484612b6c565b6001600160a01b031660009081526009602052604090205460ff1690565b6000611efb611f3f61128f565b611f47611c99565b9063ffffffff612a2616565b6001600160a01b03811660009081526012602052604081205463ffffffff1680611f7e57600061136d565b6001600160a01b038316600090815260116020908152604080832063ffffffff6000198601168452909152902060010154915050919050565b611fc2610e5461298d565b611ffd5760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b601a55565b61200d610e5461298d565b6120485760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b601d544211612091576040805162461bcd60e51b815260206004820152601060248201526f139bdd081d5b9b1bd8dad959081e595d60821b604482015290519081900360640190fd5b601654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156120dc57600080fd5b505afa1580156120f0573d6000803e3d6000fd5b505050506040513d602081101561210657600080fd5b50516016546040805163a9059cbb60e01b81523360048201526024810184905290519293506001600160a01b039091169163a9059cbb916044808201926020929091908290030181600087803b15801561215f57600080fd5b505af1158015612173573d6000803e3d6000fd5b505050506040513d602081101561218957600080fd5b505050565b600061110260148363ffffffff612fc116565b6000604051808061420f60439139604301905060405180910390206121c4611054565b805190602001206121d3613028565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080614451603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015612311573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166123635760405162461bcd60e51b81526004018080602001828103825260318152602001806140226031913960400191505060405180910390fd5b6001600160a01b038116600090815260136020526040902080546001810190915589146123c15760405162461bcd60e51b815260040180806020018281038252602d815260200180614424602d913960400191505060405180910390fd5b874211156124005760405162461bcd60e51b81526004018080602001828103825260318152602001806143466031913960400191505060405180910390fd5b61240a818b612db0565b505050505b505050505050565b600080601660009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561246857600080fd5b505afa15801561247c573d6000803e3d6000fd5b505050506040513d602081101561249257600080fd5b505190506000611515611f32565b601d5481565b6001600160a01b031660009081526007602052604090205460ff1690565b601e5460ff1681565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60195481565b60405180603a6144518239603a019050604051809103902081565b601a5481565b60116020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b612554611cf3565b612593576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615612601576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600460205260409020541561265b576001600160a01b0381166000908152600460205260409020546126419061130e565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6126c9611cf3565b612708576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b6115f38161302c565b600061271e610e5461298d565b6127595760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b50601e5461010090046001600160a01b031690565b612776611cf3565b6127b5576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16612822576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561291a57816001600160a01b03166008828154811061284657fe5b6000918252602090912001546001600160a01b031614156129125760088054600019810190811061287357fe5b600091825260209091200154600880546001600160a01b03909216918390811061289957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600790925220805460ff1916905560088054806128eb57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561291a565b600101612825565b5050565b612929610e5461298d565b6129645760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6001600160a01b03166000908152601760205260409020805460ff19811660ff90911615179055565b3390565b60008060008060008060006129a5886130cd565b9150915060006129b3612ca4565b905060008060006129c58c8686613106565b919e909d50909b509599509397509395505050505050565b6000612a1f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612c0d565b9392505050565b600082820183811015612a1f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316612ac55760405162461bcd60e51b81526004018080602001828103825260248152602001806144006024913960400191505060405180910390fd5b6001600160a01b038216612b0a5760405162461bcd60e51b81526004018080602001828103825260228152602001806140d06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b601e5460ff168015612b9c57506001600160a01b03831660009081526017602052604090205460ff161515600114155b8015612bc657506001600160a01b03821660009081526017602052604090205460ff161515600114155b15612c025760405162461bcd60e51b815260040180806020018281038252603f815260200180614170603f913960400191505060405180910390fd5b612189838383613154565b60008184841115612c9c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c61578181015183820152602001612c49565b50505050905090810190601f168015612c8e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612cb1613191565b9092509050612cc6828263ffffffff612ccd16565b9250505090565b6000612a1f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613326565b612d2060148263ffffffff61338b16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600082612d6657506000611102565b82820282848281612d7357fe5b0414612a1f5760405162461bcd60e51b81526004018080602001828103825260218152602001806142526021913960400191505060405180910390fd5b6001600160a01b0380831660009081526010602052604081205490911690612dd78461167d565b6001600160a01b0385811660008181526010602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612e3f8284836133f2565b50505050565b612e5660148263ffffffff61353b16565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6016546015546040805163095ea7b360e01b81526001600160a01b039283166004820152602481018590529051600093929092169163095ea7b39160448082019260209290919082900301818787803b158015612ee957600080fd5b505af1158015612efd573d6000803e3d6000fd5b505050506040513d6020811015612f1357600080fd5b5050601554601e546040805163af2979eb60e01b815230600482015260248101869052600060448201819052606482018190526001600160a01b03610100909404841660848301524260a48301529151929093169263af2979eb9260c48083019360209383900390910190829087803b158015612f8f57600080fd5b505af1158015612fa3573d6000803e3d6000fd5b505050506040513d6020811015612fb957600080fd5b505192915050565b60006001600160a01b0382166130085760405162461bcd60e51b81526004018080602001828103825260228152602001806142bb6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b4690565b6001600160a01b0381166130715760405162461bcd60e51b81526004018080602001828103825260268152602001806140aa6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60008060006130e7600c5485612ccd90919063ffffffff16565b905060006130fb858363ffffffff6129dd16565b935090915050915091565b600080808061311b878663ffffffff612d5716565b9050600061312f878763ffffffff612d5716565b90506000613143838363ffffffff6129dd16565b929992985090965090945050505050565b6001600160a01b03808416600090815260106020526040808220548584168352912054613186929182169116836133f2565b6121898383836135bc565b600a54600090819069d3c21bcecceda1000000825b6008548110156132de578260046000600884815481106131c257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180613227575081600560006008848154811061320057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561324657600a5469d3c21bcecceda100000094509450505050613322565b61328c600460006008848154811061325a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff6129dd16565b92506132d460056000600884815481106132a257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff6129dd16565b91506001016131a6565b50600a546132fc9069d3c21bcecceda100000063ffffffff612ccd16565b82101561331c57600a5469d3c21bcecceda1000000935093505050613322565b90925090505b9091565b600081836133755760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612c61578181015183820152602001612c49565b50600083858161338157fe5b0495945050505050565b6133958282612fc1565b6133d05760405162461bcd60e51b81526004018080602001828103825260218152602001806141af6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b816001600160a01b0316836001600160a01b0316141580156134145750600081115b15612189576001600160a01b038316156134ac576001600160a01b03831660009081526012602052604081205463ffffffff169081613454576000613486565b6001600160a01b038516600090815260116020908152604080832063ffffffff60001987011684529091529020600101545b9050600061349a828563ffffffff6129dd16565b90506134a8868484846137d9565b5050505b6001600160a01b03821615612189576001600160a01b03821660009081526012602052604081205463ffffffff1690816134e7576000613519565b6001600160a01b038416600090815260116020908152604080832063ffffffff60001987011684529091529020600101545b9050600061352d828563ffffffff612a2616565b905061240f858484846137d9565b6135458282612fc1565b15613597576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b0383166136015760405162461bcd60e51b81526004018080602001828103825260258152602001806143a96025913960400191505060405180910390fd5b6001600160a01b0382166136465760405162461bcd60e51b8152600401808060200182810382526023815260200180613f496023913960400191505060405180910390fd5b600081116136855760405162461bcd60e51b81526004018080602001828103825260298152602001806142dd6029913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205460ff1680156136c657506001600160a01b03821660009081526007602052604090205460ff16155b156136db576136d683838361393e565b612189565b6001600160a01b03831660009081526007602052604090205460ff1615801561371c57506001600160a01b03821660009081526007602052604090205460ff165b1561372c576136d6838383613b06565b6001600160a01b03831660009081526007602052604090205460ff1615801561376e57506001600160a01b03821660009081526007602052604090205460ff16155b1561377e576136d6838383613c74565b6001600160a01b03831660009081526007602052604090205460ff1680156137be57506001600160a01b03821660009081526007602052604090205460ff165b156137ce576136d6838383613d71565b612189838383613c74565b60006137fd436040518060600160405280603f81526020016141d0603f9139613ea3565b905060008463ffffffff1611801561384657506001600160a01b038516600090815260116020908152604080832063ffffffff6000198901811685529252909120548282169116145b15613883576001600160a01b038516600090815260116020908152604080832063ffffffff600019890116845290915290206001018290556138f4565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152601184528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260129092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600080600080600061394f86612991565b6001600160a01b038d166000908152600960205260409020549499509297509095509350915060ff168061399b57506001600160a01b03871660009081526009602052604090205460ff165b156139c9576139b0848463ffffffff612a2616565b93506139c2828263ffffffff612a2616565b9150613a12565b6139d38382613f01565b604080516001600160a01b038a168152600360208201528082018790526060810188905290516000805160206140f28339815191529181900360800190a15b6001600160a01b038816600090815260056020526040902054613a3b908763ffffffff6129dd16565b6001600160a01b038916600090815260056020908152604080832093909355600490522054613a70908663ffffffff6129dd16565b6001600160a01b03808a166000908152600460205260408082209390935590891681522054613aa5908563ffffffff612a2616565b6001600160a01b0380891660008181526004602090815260409182902094909455805186815290519193928c16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35050505050505050565b6000806000806000613b1786612991565b6001600160a01b038d166000908152600960205260409020549499509297509095509350915060ff1680613b6357506001600160a01b03871660009081526009602052604090205460ff165b15613b9157613b78848463ffffffff612a2616565b9350613b8a828263ffffffff612a2616565b9150613bda565b613b9b8382613f01565b604080516001600160a01b038a168152600260208201528082018790526060810188905290516000805160206140f28339815191529181900360800190a15b6001600160a01b038816600090815260046020526040902054613c03908663ffffffff6129dd16565b6001600160a01b03808a16600090815260046020908152604080832094909455918a16815260059091522054613c3f908363ffffffff612a2616565b6001600160a01b038816600090815260056020908152604080832093909355600490522054613aa5908563ffffffff612a2616565b6000806000806000613c8586612991565b6001600160a01b038d166000908152600960205260409020549499509297509095509350915060ff1680613cd157506001600160a01b03871660009081526009602052604090205460ff165b15613cff57613ce6848463ffffffff612a2616565b9350613cf8828263ffffffff612a2616565b9150613d48565b613d098382613f01565b604080516001600160a01b038a168152600160208201528082018790526060810188905290516000805160206140f28339815191529181900360800190a15b6001600160a01b038816600090815260046020526040902054613a70908663ffffffff6129dd16565b6000806000806000613d8286612991565b6001600160a01b038d166000908152600960205260409020549499509297509095509350915060ff1680613dce57506001600160a01b03871660009081526009602052604090205460ff165b15613dfc57613de3848463ffffffff612a2616565b9350613df5828263ffffffff612a2616565b9150613e45565b613e068382613f01565b604080516001600160a01b038a168152600460208201528082018790526060810188905290516000805160206140f28339815191529181900360800190a15b6001600160a01b038816600090815260056020526040902054613e6e908763ffffffff6129dd16565b6001600160a01b038916600090815260056020908152604080832093909355600490522054613c03908663ffffffff6129dd16565b6000816401000000008410613ef95760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612c61578181015183820152602001612c49565b509192915050565b600a54613f14908363ffffffff6129dd16565b600a55600b54613f2a908263ffffffff612a2616565b600b555050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373426f6f7374546f6b656e3a3a736574556e69737761705632506169723a20616c72656164792073657445524332305472616e736665724c69717569646974794c6f636b3a20596f75206861766520746f206f776e20656e6f75676820746f6b656e73455243323044697374726962757461626c653a2064697669736f72206973206c657373207468616e2030426f6f7374546f6b656e3a3a736574526562616c616e636544697669736f723a20746f6f20736d616c6c4552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265426f6f7374546f6b656e3a3a73657443616c6c657252657761726444697669736f723a20746f6f20736d616c6c416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373b0c7ad67bb089f910de90ed6e1efd1067c85d1947e2b901ffce5febef59bb195426f6f7374546f6b656e3a3a736574556e69737761705632526f757465723a20616c72656164792073657445524332305472616e736665724c69717569646974794c6f636b3a20556e69737761702070616972206973206e6f742073657445524332305472616e736665724c69717569646974794c6f636b3a204c6f636b656420756e74696c2074686520656e64206f66207468652070726573616c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c654552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332305472616e736665724c69717569646974794c6f636b3a20546f6f20736f6f6e20746f2072652d62616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e7432353620657870697279294578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820ca42c4cadac6398da38ea9d7597b61a6c91b9fd59e08029de2aa1f869690646564736f6c634300051000326080604052600180546001600160a01b03191661dead17905534801561002457600080fd5b50600080546001600160a01b031916331790556107d9806100466000396000f3fe6080604052600436106100295760003560e01c8063d246d4111461002b578063f49930181461005c575b005b34801561003757600080fd5b50610040610098565b604080516001600160a01b039092168252519081900360200190f35b34801561006857600080fd5b506100866004803603602081101561007f57600080fd5b50356100a7565b60408051918252519081900360200190f35b6001546001600160a01b031681565b600080546001600160a01b031633146100f4576040805162461bcd60e51b815260206004820152600a60248201526937b7363c903a37b5b2b760b11b604482015290519081900360640190fd5b6100fd476102b3565b60008054604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561014957600080fd5b505afa15801561015d573d6000803e3d6000fd5b505050506040513d602081101561017357600080fd5b505190506000610189828563ffffffff61061d16565b9050600061019d838363ffffffff61066616565b600080546040805163a9059cbb60e01b81523260048201526024810187905290519394506001600160a01b039091169263a9059cbb92604480840193602093929083900390910190829087803b1580156101f657600080fd5b505af115801561020a573d6000803e3d6000fd5b505050506040513d602081101561022057600080fd5b5050600080546001546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018690529051919092169263a9059cbb92604480820193602093909283900390910190829087803b15801561027e57600080fd5b505af1158015610292573d6000803e3d6000fd5b505050506040513d60208110156102a857600080fd5b509095945050505050565b6040805160028082526060808301845292602083019080388339505060005460408051630b4a282f60e11b815290519394506001600160a01b0390911692631694505e92506004808301926020929190829003018186803b15801561031757600080fd5b505afa15801561032b573d6000803e3d6000fd5b505050506040513d602081101561034157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039092169163ad5c464891600480820192602092909190829003018186803b15801561038557600080fd5b505afa158015610399573d6000803e3d6000fd5b505050506040513d60208110156103af57600080fd5b5051815182906000906103be57fe5b6001600160a01b0392831660209182029290920101526000548251911690829060019081106103e957fe5b6001600160a01b0392831660209182029290920181019190915260005460408051630b4a282f60e11b81529051919093169263095ea7b3928492631694505e926004808201939291829003018186803b15801561044557600080fd5b505afa158015610459573d6000803e3d6000fd5b505050506040513d602081101561046f57600080fd5b5051604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482018690525160448083019260209291908290030181600087803b1580156104bf57600080fd5b505af11580156104d3573d6000803e3d6000fd5b505050506040513d60208110156104e957600080fd5b505060005460408051630b4a282f60e11b815290516001600160a01b0390921691631694505e91600480820192602092909190829003018186803b15801561053057600080fd5b505afa158015610544573d6000803e3d6000fd5b505050506040513d602081101561055a57600080fd5b505160405163b6f9de9560e01b8152600060048201818152306044840181905242606485018190526080602486019081528751608487015287516001600160a01b039097169663b6f9de95968a96958a9594939092909160a40190602087810191028083838b5b838110156105d95781810151838201526020016105c1565b50505050905001955050505050506000604051808303818588803b15801561060057600080fd5b505af1158015610614573d6000803e3d6000fd5b50505050505050565b600061065f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506106a8565b9392505050565b600061065f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061074a565b600081836107345760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156106f95781810151838201526020016106e1565b50505050905090810190601f1680156107265780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161074057fe5b0495945050505050565b6000818484111561079c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156106f95781810151838201526020016106e1565b50505090039056fea265627a7a723158203300cd9291036dd3342e5ed5c72dffb35a3786ace2f043b49f480881005aa3b364736f6c63430005100032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x6080604052600436106103cd5760003560e01c80637ecebe00116101fd578063b91f3f9711610118578063e161eb56116100ab578063f2cc0c181161007a578063f2cc0c1814610d68578063f2fde38b14610d9b578063f4f6713714610dce578063f84354f114610de3578063f953797314610e16576103cd565b8063e161eb5614610cca578063e7a324dc14610cdf578063e84354c514610cf4578063f1127ed814610d09576103cd565b8063cafab289116100e7578063cafab28914610c32578063cba0e99614610c47578063cf30901214610c7a578063dd62ed3e14610c8f576103cd565b8063b91f3f9714610b81578063bb5f747b14610b96578063c3cda52014610bc9578063ca5c7b9114610c1d576103cd565b8063a457c2d711610190578063ae74a1b51161015f578063ae74a1b514610adc578063b439824414610b0f578063b4b5ea5714610b24578063b6833c5914610b57576103cd565b8063a457c2d714610a40578063a69df4b514610a79578063a8a5550e14610a8e578063a9059cbb14610aa3576103cd565b80638f32d59b116101cc5780638f32d59b146109ce57806395d89b41146109e35780639a36f932146109f8578063a29a608914610a0d576103cd565b80637ecebe001461095c5780637f4aeb1a1461098f578063858750ab146109a45780638da5cb5b146109b9576103cd565b8063313ce567116102ed5780635c19a95c11610280578063715018a61161024f578063715018a6146108b15780637362d9c8146108c6578063782d6fe1146108f95780637e0d943e14610932576103cd565b80635c19a95c146107cc5780636fcfff45146107ff57806370709a7c1461084b57806370a082311461087e576103cd565b80634c5a628c116102bc5780634c5a628c1461074557806355d0a1d01461075a578063587cde1e1461076f5780635b7dcaed146107a2576103cd565b8063313ce5671461069a57806339509351146106c55780634549b039146106fe57806349bd5a5e14610730576103cd565b80631419841d1161036557806320606b701161033457806320606b701461060357806323b872dd146106185780632898cafa1461065b5780632d83811914610670576103cd565b80631419841d146105755780631694505e146105a857806316d1d916146105d957806318160ddd146105ee576103cd565b806306fdde03116103a157806306fdde0314610474578063095ea7b3146104fe578063106b9ca11461054b57806313114a9d14610560576103cd565b80629a8130146103cf57806302dd19d9146103f9578063043531b114610420578063053ab1821461044a575b005b3480156103db57600080fd5b506103cd600480360360208110156103f257600080fd5b5035610e49565b34801561040557600080fd5b5061040e610edf565b60408051918252519081900360200190f35b34801561042c57600080fd5b506103cd6004803603602081101561044357600080fd5b5035610ee5565b34801561045657600080fd5b506103cd6004803603602081101561046d57600080fd5b5035610f70565b34801561048057600080fd5b50610489611054565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104c35781810151838201526020016104ab565b50505050905090810190601f1680156104f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561050a57600080fd5b506105376004803603604081101561052157600080fd5b506001600160a01b0381351690602001356110ea565b604080519115158252519081900360200190f35b34801561055757600080fd5b5061040e611108565b34801561056c57600080fd5b5061040e61110e565b34801561058157600080fd5b506103cd6004803603602081101561059857600080fd5b50356001600160a01b0316611114565b3480156105b457600080fd5b506105bd6111c4565b604080516001600160a01b039092168252519081900360200190f35b3480156105e557600080fd5b5061040e6111d3565b3480156105fa57600080fd5b5061040e6111d9565b34801561060f57600080fd5b5061040e6111e7565b34801561062457600080fd5b506105376004803603606081101561063b57600080fd5b506001600160a01b03813581169160208101359091169060400135611202565b34801561066757600080fd5b5061040e61128f565b34801561067c57600080fd5b5061040e6004803603602081101561069357600080fd5b503561130e565b3480156106a657600080fd5b506106af611376565b6040805160ff9092168252519081900360200190f35b3480156106d157600080fd5b50610537600480360360408110156106e857600080fd5b506001600160a01b03813516906020013561137f565b34801561070a57600080fd5b5061040e6004803603604081101561072157600080fd5b508035906020013515156113d3565b34801561073c57600080fd5b506105bd61146b565b34801561075157600080fd5b506103cd61147a565b34801561076657600080fd5b5061040e61148c565b34801561077b57600080fd5b506105bd6004803603602081101561079257600080fd5b50356001600160a01b0316611580565b3480156107ae57600080fd5b506103cd600480360360208110156107c557600080fd5b503561159e565b3480156107d857600080fd5b506103cd600480360360208110156107ef57600080fd5b50356001600160a01b03166115e9565b34801561080b57600080fd5b506108326004803603602081101561082257600080fd5b50356001600160a01b03166115f6565b6040805163ffffffff9092168252519081900360200190f35b34801561085757600080fd5b506103cd6004803603602081101561086e57600080fd5b50356001600160a01b031661160e565b34801561088a57600080fd5b5061040e600480360360208110156108a157600080fd5b50356001600160a01b031661167d565b3480156108bd57600080fd5b506103cd6116df565b3480156108d257600080fd5b506103cd600480360360208110156108e957600080fd5b50356001600160a01b0316611770565b34801561090557600080fd5b5061040e6004803603604081101561091c57600080fd5b506001600160a01b0381351690602001356117bf565b34801561093e57600080fd5b506103cd6004803603602081101561095557600080fd5b50356119c7565b34801561096857600080fd5b5061040e6004803603602081101561097f57600080fd5b50356001600160a01b0316611a58565b34801561099b57600080fd5b506103cd611a6a565b3480156109b057600080fd5b5061040e611c99565b3480156109c557600080fd5b506105bd611ce4565b3480156109da57600080fd5b50610537611cf3565b3480156109ef57600080fd5b50610489611d19565b348015610a0457600080fd5b5061040e611d7a565b348015610a1957600080fd5b506103cd60048036036020811015610a3057600080fd5b50356001600160a01b0316611d80565b348015610a4c57600080fd5b5061053760048036036040811015610a6357600080fd5b506001600160a01b038135169060200135611e30565b348015610a8557600080fd5b506103cd611e9e565b348015610a9a57600080fd5b5061040e611ef0565b348015610aaf57600080fd5b5061053760048036036040811015610ac657600080fd5b506001600160a01b038135169060200135611f00565b348015610ae857600080fd5b5061053760048036036020811015610aff57600080fd5b50356001600160a01b0316611f14565b348015610b1b57600080fd5b5061040e611f32565b348015610b3057600080fd5b5061040e60048036036020811015610b4757600080fd5b50356001600160a01b0316611f53565b348015610b6357600080fd5b506103cd60048036036020811015610b7a57600080fd5b5035611fb7565b348015610b8d57600080fd5b506103cd612002565b348015610ba257600080fd5b5061053760048036036020811015610bb957600080fd5b50356001600160a01b031661218e565b348015610bd557600080fd5b506103cd600480360360c0811015610bec57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356121a1565b348015610c2957600080fd5b5061040e612417565b348015610c3e57600080fd5b5061040e6124a0565b348015610c5357600080fd5b5061053760048036036020811015610c6a57600080fd5b50356001600160a01b03166124a6565b348015610c8657600080fd5b506105376124c4565b348015610c9b57600080fd5b5061040e60048036036040811015610cb257600080fd5b506001600160a01b03813581169160200135166124cd565b348015610cd657600080fd5b5061040e6124f8565b348015610ceb57600080fd5b5061040e6124fe565b348015610d0057600080fd5b5061040e612519565b348015610d1557600080fd5b50610d4860048036036040811015610d2c57600080fd5b5080356001600160a01b0316906020013563ffffffff1661251f565b6040805163ffffffff909316835260208301919091528051918290030190f35b348015610d7457600080fd5b506103cd60048036036020811015610d8b57600080fd5b50356001600160a01b031661254c565b348015610da757600080fd5b506103cd60048036036020811015610dbe57600080fd5b50356001600160a01b03166126c1565b348015610dda57600080fd5b506105bd612711565b348015610def57600080fd5b506103cd60048036036020811015610e0657600080fd5b50356001600160a01b031661276e565b348015610e2257600080fd5b506103cd60048036036020811015610e3957600080fd5b50356001600160a01b031661291e565b610e59610e5461298d565b61218e565b610e945760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b8015610eda57600a811015610eda5760405162461bcd60e51b815260040180806020018281038252602d815260200180614053602d913960400191505060405180910390fd5b601855565b60185481565b610eed611cf3565b610f2c576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b60008111610f6b5760405162461bcd60e51b815260040180806020018281038252602a815260200180613fce602a913960400191505060405180910390fd5b600c55565b6000610f7a61298d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610fd55760405162461bcd60e51b815260040180806020018281038252602c81526020018061448b602c913960400191505060405180910390fd5b6000610fe083612991565b505050506001600160a01b03831660009081526004602052604090205490915061100a90826129dd565b6001600160a01b038316600090815260046020526040902055600a54611036908263ffffffff6129dd16565b600a55600b5461104c908463ffffffff612a2616565b600b55505050565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b5050505050905090565b60006110fe6110f761298d565b8484612a80565b5060015b92915050565b601b5481565b600b5490565b61111f610e5461298d565b61115a5760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6015546001600160a01b0316156111a25760405162461bcd60e51b815260040180806020018281038252602b815260200180614112602b913960400191505060405180910390fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6015546001600160a01b031681565b601c5481565b69d3c21bcecceda100000090565b60405180604361420f82396043019050604051809103902081565b600061120f848484612b6c565b6112858461121b61298d565b61128085604051806060016040528060288152602001614273602891396001600160a01b038a1660009081526006602052604081209061125961298d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff612c0d16565b612a80565b5060019392505050565b601654604080516370a0823160e01b8152600060048201819052915191926001600160a01b0316916370a0823191602480820192602092909190829003018186803b1580156112dd57600080fd5b505afa1580156112f1573d6000803e3d6000fd5b505050506040513d602081101561130757600080fd5b5051905090565b6000600a548211156113515760405162461bcd60e51b815260040180806020018281038252602a815260200180614080602a913960400191505060405180910390fd5b600061135b612ca4565b905061136d838263ffffffff612ccd16565b9150505b919050565b600f5460ff1690565b60006110fe61138c61298d565b84611280856006600061139d61298d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a2616565b600069d3c21bcecceda1000000831115611434576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161145257600061144484612991565b509294506111029350505050565b600061145d84612991565b509194506111029350505050565b6016546001600160a01b031681565b61148a61148561298d565b612d0f565b565b600080601660009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156114dd57600080fd5b505afa1580156114f1573d6000803e3d6000fd5b505050506040513d602081101561150757600080fd5b50519050600061151561128f565b9050600061153e836115328464e8d4a5100063ffffffff612d5716565b9063ffffffff612ccd16565b601654909150600090611559906001600160a01b031661167d565b9050600061157664e8d4a51000611532848663ffffffff612d5716565b9550505050505090565b6001600160a01b039081166000908152601060205260409020541690565b6115a9610e5461298d565b6115e45760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b601c55565b6115f33382612db0565b50565b60126020526000908152604090205463ffffffff1681565b611619610e5461298d565b6116545760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19811660ff90911615179055565b6001600160a01b03811660009081526007602052604081205460ff16156116bd57506001600160a01b038116600090815260056020526040902054611371565b6001600160a01b0382166000908152600460205260409020546111029061130e565b6116e7611cf3565b611726576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b61177b610e5461298d565b6117b65760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6115f381612e45565b60004382106117ff5760405162461bcd60e51b81526004018080602001828103825260328152602001806143ce6032913960400191505060405180910390fd5b6001600160a01b03831660009081526012602052604090205463ffffffff168061182d576000915050611102565b6001600160a01b038416600090815260116020908152604080832063ffffffff60001986018116855292529091205416831061189c576001600160a01b03841660009081526011602090815260408083206000199490940163ffffffff16835292905220600101549050611102565b6001600160a01b038416600090815260116020908152604080832083805290915290205463ffffffff168310156118d7576000915050611102565b600060001982015b8163ffffffff168163ffffffff16111561199057600282820363ffffffff16048103611909613f31565b506001600160a01b038716600090815260116020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561196b576020015194506111029350505050565b805163ffffffff1687111561198257819350611989565b6001820392505b50506118df565b506001600160a01b038516600090815260116020908152604080832063ffffffff9094168352929052206001015491505092915050565b6119d2610e5461298d565b611a0d5760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b8015611a5357600a811015611a535760405162461bcd60e51b815260040180806020018281038252602a815260200180613ff8602a913960400191505060405180910390fd5b601955565b60136020526000908152604090205481565b601a54611a763361167d565b1015611ab35760405162461bcd60e51b8152600401808060200182810382526039815260200180613f956039913960400191505060405180910390fd5b601c54601b54014211611af75760405162461bcd60e51b81526004018080602001828103825260328152602001806143776032913960400191505060405180910390fd5b6016546001600160a01b0316611b3e5760405162461bcd60e51b815260040180806020018281038252603381526020018061413d6033913960400191505060405180910390fd5b42601b55601954601654604080516370a0823160e01b81523060048201529051600093611bd19390926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015611b9957600080fd5b505afa158015611bad573d6000803e3d6000fd5b505050506040513d6020811015611bc357600080fd5b50519063ffffffff612ccd16565b9050611bdc81612e8d565b50601e5460185460408051631e93260360e31b815260048101929092525160009261010090046001600160a01b03169163f499301891602480830192602092919082900301818787803b158015611c3257600080fd5b505af1158015611c46573d6000803e3d6000fd5b505050506040513d6020811015611c5c57600080fd5b50516040805182815290519192507f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd0919081900360200190a15050565b601654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156112dd57600080fd5b6003546001600160a01b031690565b6003546000906001600160a01b0316611d0a61298d565b6001600160a01b031614905090565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110e05780601f106110b5576101008083540402835291602001916110e0565b600c5481565b611d8b610e5461298d565b611dc65760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6016546001600160a01b031615611e0e5760405162461bcd60e51b8152600401808060200182810382526029815260200180613f6c6029913960400191505060405180910390fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b60006110fe611e3d61298d565b84611280856040518060600160405280602581526020016144b76025913960066000611e6761298d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff612c0d16565b611ea9610e5461298d565b611ee45760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b601e805460ff19169055565b6000611efb3061167d565b905090565b60006110fe611f0d61298d565b8484612b6c565b6001600160a01b031660009081526009602052604090205460ff1690565b6000611efb611f3f61128f565b611f47611c99565b9063ffffffff612a2616565b6001600160a01b03811660009081526012602052604081205463ffffffff1680611f7e57600061136d565b6001600160a01b038316600090815260116020908152604080832063ffffffff6000198601168452909152902060010154915050919050565b611fc2610e5461298d565b611ffd5760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b601a55565b61200d610e5461298d565b6120485760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b601d544211612091576040805162461bcd60e51b815260206004820152601060248201526f139bdd081d5b9b1bd8dad959081e595d60821b604482015290519081900360640190fd5b601654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156120dc57600080fd5b505afa1580156120f0573d6000803e3d6000fd5b505050506040513d602081101561210657600080fd5b50516016546040805163a9059cbb60e01b81523360048201526024810184905290519293506001600160a01b039091169163a9059cbb916044808201926020929091908290030181600087803b15801561215f57600080fd5b505af1158015612173573d6000803e3d6000fd5b505050506040513d602081101561218957600080fd5b505050565b600061110260148363ffffffff612fc116565b6000604051808061420f60439139604301905060405180910390206121c4611054565b805190602001206121d3613028565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080614451603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015612311573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166123635760405162461bcd60e51b81526004018080602001828103825260318152602001806140226031913960400191505060405180910390fd5b6001600160a01b038116600090815260136020526040902080546001810190915589146123c15760405162461bcd60e51b815260040180806020018281038252602d815260200180614424602d913960400191505060405180910390fd5b874211156124005760405162461bcd60e51b81526004018080602001828103825260318152602001806143466031913960400191505060405180910390fd5b61240a818b612db0565b505050505b505050505050565b600080601660009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561246857600080fd5b505afa15801561247c573d6000803e3d6000fd5b505050506040513d602081101561249257600080fd5b505190506000611515611f32565b601d5481565b6001600160a01b031660009081526007602052604090205460ff1690565b601e5460ff1681565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60195481565b60405180603a6144518239603a019050604051809103902081565b601a5481565b60116020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b612554611cf3565b612593576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615612601576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600460205260409020541561265b576001600160a01b0381166000908152600460205260409020546126419061130e565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6126c9611cf3565b612708576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b6115f38161302c565b600061271e610e5461298d565b6127595760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b50601e5461010090046001600160a01b031690565b612776611cf3565b6127b5576040805162461bcd60e51b8152602060048201819052602482015260008051602061429b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16612822576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561291a57816001600160a01b03166008828154811061284657fe5b6000918252602090912001546001600160a01b031614156129125760088054600019810190811061287357fe5b600091825260209091200154600880546001600160a01b03909216918390811061289957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600790925220805460ff1916905560088054806128eb57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561291a565b600101612825565b5050565b612929610e5461298d565b6129645760405162461bcd60e51b81526004018080602001828103825260408152602001806143066040913960400191505060405180910390fd5b6001600160a01b03166000908152601760205260409020805460ff19811660ff90911615179055565b3390565b60008060008060008060006129a5886130cd565b9150915060006129b3612ca4565b905060008060006129c58c8686613106565b919e909d50909b509599509397509395505050505050565b6000612a1f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612c0d565b9392505050565b600082820183811015612a1f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316612ac55760405162461bcd60e51b81526004018080602001828103825260248152602001806144006024913960400191505060405180910390fd5b6001600160a01b038216612b0a5760405162461bcd60e51b81526004018080602001828103825260228152602001806140d06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b601e5460ff168015612b9c57506001600160a01b03831660009081526017602052604090205460ff161515600114155b8015612bc657506001600160a01b03821660009081526017602052604090205460ff161515600114155b15612c025760405162461bcd60e51b815260040180806020018281038252603f815260200180614170603f913960400191505060405180910390fd5b612189838383613154565b60008184841115612c9c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c61578181015183820152602001612c49565b50505050905090810190601f168015612c8e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612cb1613191565b9092509050612cc6828263ffffffff612ccd16565b9250505090565b6000612a1f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613326565b612d2060148263ffffffff61338b16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600082612d6657506000611102565b82820282848281612d7357fe5b0414612a1f5760405162461bcd60e51b81526004018080602001828103825260218152602001806142526021913960400191505060405180910390fd5b6001600160a01b0380831660009081526010602052604081205490911690612dd78461167d565b6001600160a01b0385811660008181526010602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612e3f8284836133f2565b50505050565b612e5660148263ffffffff61353b16565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6016546015546040805163095ea7b360e01b81526001600160a01b039283166004820152602481018590529051600093929092169163095ea7b39160448082019260209290919082900301818787803b158015612ee957600080fd5b505af1158015612efd573d6000803e3d6000fd5b505050506040513d6020811015612f1357600080fd5b5050601554601e546040805163af2979eb60e01b815230600482015260248101869052600060448201819052606482018190526001600160a01b03610100909404841660848301524260a48301529151929093169263af2979eb9260c48083019360209383900390910190829087803b158015612f8f57600080fd5b505af1158015612fa3573d6000803e3d6000fd5b505050506040513d6020811015612fb957600080fd5b505192915050565b60006001600160a01b0382166130085760405162461bcd60e51b81526004018080602001828103825260228152602001806142bb6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b4690565b6001600160a01b0381166130715760405162461bcd60e51b81526004018080602001828103825260268152602001806140aa6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60008060006130e7600c5485612ccd90919063ffffffff16565b905060006130fb858363ffffffff6129dd16565b935090915050915091565b600080808061311b878663ffffffff612d5716565b9050600061312f878763ffffffff612d5716565b90506000613143838363ffffffff6129dd16565b929992985090965090945050505050565b6001600160a01b03808416600090815260106020526040808220548584168352912054613186929182169116836133f2565b6121898383836135bc565b600a54600090819069d3c21bcecceda1000000825b6008548110156132de578260046000600884815481106131c257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180613227575081600560006008848154811061320057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561324657600a5469d3c21bcecceda100000094509450505050613322565b61328c600460006008848154811061325a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff6129dd16565b92506132d460056000600884815481106132a257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff6129dd16565b91506001016131a6565b50600a546132fc9069d3c21bcecceda100000063ffffffff612ccd16565b82101561331c57600a5469d3c21bcecceda1000000935093505050613322565b90925090505b9091565b600081836133755760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612c61578181015183820152602001612c49565b50600083858161338157fe5b0495945050505050565b6133958282612fc1565b6133d05760405162461bcd60e51b81526004018080602001828103825260218152602001806141af6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b816001600160a01b0316836001600160a01b0316141580156134145750600081115b15612189576001600160a01b038316156134ac576001600160a01b03831660009081526012602052604081205463ffffffff169081613454576000613486565b6001600160a01b038516600090815260116020908152604080832063ffffffff60001987011684529091529020600101545b9050600061349a828563ffffffff6129dd16565b90506134a8868484846137d9565b5050505b6001600160a01b03821615612189576001600160a01b03821660009081526012602052604081205463ffffffff1690816134e7576000613519565b6001600160a01b038416600090815260116020908152604080832063ffffffff60001987011684529091529020600101545b9050600061352d828563ffffffff612a2616565b905061240f858484846137d9565b6135458282612fc1565b15613597576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b0383166136015760405162461bcd60e51b81526004018080602001828103825260258152602001806143a96025913960400191505060405180910390fd5b6001600160a01b0382166136465760405162461bcd60e51b8152600401808060200182810382526023815260200180613f496023913960400191505060405180910390fd5b600081116136855760405162461bcd60e51b81526004018080602001828103825260298152602001806142dd6029913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205460ff1680156136c657506001600160a01b03821660009081526007602052604090205460ff16155b156136db576136d683838361393e565b612189565b6001600160a01b03831660009081526007602052604090205460ff1615801561371c57506001600160a01b03821660009081526007602052604090205460ff165b1561372c576136d6838383613b06565b6001600160a01b03831660009081526007602052604090205460ff1615801561376e57506001600160a01b03821660009081526007602052604090205460ff16155b1561377e576136d6838383613c74565b6001600160a01b03831660009081526007602052604090205460ff1680156137be57506001600160a01b03821660009081526007602052604090205460ff165b156137ce576136d6838383613d71565b612189838383613c74565b60006137fd436040518060600160405280603f81526020016141d0603f9139613ea3565b905060008463ffffffff1611801561384657506001600160a01b038516600090815260116020908152604080832063ffffffff6000198901811685529252909120548282169116145b15613883576001600160a01b038516600090815260116020908152604080832063ffffffff600019890116845290915290206001018290556138f4565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152601184528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260129092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600080600080600061394f86612991565b6001600160a01b038d166000908152600960205260409020549499509297509095509350915060ff168061399b57506001600160a01b03871660009081526009602052604090205460ff165b156139c9576139b0848463ffffffff612a2616565b93506139c2828263ffffffff612a2616565b9150613a12565b6139d38382613f01565b604080516001600160a01b038a168152600360208201528082018790526060810188905290516000805160206140f28339815191529181900360800190a15b6001600160a01b038816600090815260056020526040902054613a3b908763ffffffff6129dd16565b6001600160a01b038916600090815260056020908152604080832093909355600490522054613a70908663ffffffff6129dd16565b6001600160a01b03808a166000908152600460205260408082209390935590891681522054613aa5908563ffffffff612a2616565b6001600160a01b0380891660008181526004602090815260409182902094909455805186815290519193928c16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35050505050505050565b6000806000806000613b1786612991565b6001600160a01b038d166000908152600960205260409020549499509297509095509350915060ff1680613b6357506001600160a01b03871660009081526009602052604090205460ff165b15613b9157613b78848463ffffffff612a2616565b9350613b8a828263ffffffff612a2616565b9150613bda565b613b9b8382613f01565b604080516001600160a01b038a168152600260208201528082018790526060810188905290516000805160206140f28339815191529181900360800190a15b6001600160a01b038816600090815260046020526040902054613c03908663ffffffff6129dd16565b6001600160a01b03808a16600090815260046020908152604080832094909455918a16815260059091522054613c3f908363ffffffff612a2616565b6001600160a01b038816600090815260056020908152604080832093909355600490522054613aa5908563ffffffff612a2616565b6000806000806000613c8586612991565b6001600160a01b038d166000908152600960205260409020549499509297509095509350915060ff1680613cd157506001600160a01b03871660009081526009602052604090205460ff165b15613cff57613ce6848463ffffffff612a2616565b9350613cf8828263ffffffff612a2616565b9150613d48565b613d098382613f01565b604080516001600160a01b038a168152600160208201528082018790526060810188905290516000805160206140f28339815191529181900360800190a15b6001600160a01b038816600090815260046020526040902054613a70908663ffffffff6129dd16565b6000806000806000613d8286612991565b6001600160a01b038d166000908152600960205260409020549499509297509095509350915060ff1680613dce57506001600160a01b03871660009081526009602052604090205460ff165b15613dfc57613de3848463ffffffff612a2616565b9350613df5828263ffffffff612a2616565b9150613e45565b613e068382613f01565b604080516001600160a01b038a168152600460208201528082018790526060810188905290516000805160206140f28339815191529181900360800190a15b6001600160a01b038816600090815260056020526040902054613e6e908763ffffffff6129dd16565b6001600160a01b038916600090815260056020908152604080832093909355600490522054613c03908663ffffffff6129dd16565b6000816401000000008410613ef95760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612c61578181015183820152602001612c49565b509192915050565b600a54613f14908363ffffffff6129dd16565b600a55600b54613f2a908263ffffffff612a2616565b600b555050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373426f6f7374546f6b656e3a3a736574556e69737761705632506169723a20616c72656164792073657445524332305472616e736665724c69717569646974794c6f636b3a20596f75206861766520746f206f776e20656e6f75676820746f6b656e73455243323044697374726962757461626c653a2064697669736f72206973206c657373207468616e2030426f6f7374546f6b656e3a3a736574526562616c616e636544697669736f723a20746f6f20736d616c6c4552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265426f6f7374546f6b656e3a3a73657443616c6c657252657761726444697669736f723a20746f6f20736d616c6c416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373b0c7ad67bb089f910de90ed6e1efd1067c85d1947e2b901ffce5febef59bb195426f6f7374546f6b656e3a3a736574556e69737761705632526f757465723a20616c72656164792073657445524332305472616e736665724c69717569646974794c6f636b3a20556e69737761702070616972206973206e6f742073657445524332305472616e736665724c69717569646974794c6f636b3a204c6f636b656420756e74696c2074686520656e64206f66207468652070726573616c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c654552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332305472616e736665724c69717569646974794c6f636b3a20546f6f20736f6f6e20746f2072652d62616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e7432353620657870697279294578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820ca42c4cadac6398da38ea9d7597b61a6c91b9fd59e08029de2aa1f869690646564736f6c63430005100032

Loading...
Loading
[ 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.