ETH Price: $3,450.48 (-0.78%)
Gas: 3 Gwei

Token

Freedom (FREE)
 

Overview

Max Total Supply

100,000,000 FREE

Holders

101

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
63,373,289.690500961 FREE

Value
$0.00
0xe690706fc12859dca28c307e1de75b9975b4db7b
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:
Token

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Token.sol
// SPDX-License-Identifier: MIT

/**
FreedomDAO

Website: https://www.freedom22.io/
Twitter: https://twitter.com/freedom22dao
Telegram: https://t.me/Freedom22Portal
*/

pragma experimental ABIEncoderV2;
pragma solidity >=0.6.0;
import './external/IDividendDistributor.sol';
import './external/DividendDistributor.sol';
import './external/Address.sol';
import './external/Ownable.sol';
import './external/IERC20.sol';
import './external/SafeMath.sol';
import './external/Uniswap.sol';
import './external/ReentrancyGuard.sol';

contract Token is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal;
    uint256 private _rTotal;
    uint256 private _tFeeTotal;

    string public name;
    string public symbol;
    uint8 public constant decimals = 9;

    uint256 private _previousReflectionFee;
    uint256 private _previousTaxFee;
    IUniswapV2Router02 private uniswapRouter;
    address public uniswapPair;
    bool private tradingEnabled = false;
    bool private canSwap = true;
    bool private inSwap = false;

    uint256 public maxTxAmount;
    uint256 public maxAccountAmount;
    bool public isLaunchProtectionMode = true;
    mapping(address => bool) internal bots;

    event MaxBuyAmountUpdated(uint256 _maxBuyAmount);
    event CooldownEnabledUpdated(bool _cooldown);
    event FeeMultiplierUpdated(uint256 _multiplier);
    event FeeRateUpdated(uint256 _rate);

    IDividendDistributor public distributor;

    struct TokenProperties {
        uint256 supply;
        uint256 taxFee;
        uint256 reflectionFee;
        uint256 liquidityFee;
        uint256 dividendFee;
        uint256 devFee;
        uint256 treasuryFee;
        uint256 maxTxAmount;
        uint256 maxAccountAmount;
        address uniswapRouterAddress;
        address payable liquidityWalletAddress;
        address payable devWalletAddress;
        address payable treasuryWalletAddress;
    }

    TokenProperties public properties;

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        TokenProperties memory _properties
    ) public {
        properties = _properties;
        _tTotal = properties.supply * 10**9;
        _rTotal = (MAX - (MAX % _tTotal));
        name = _name;
        symbol = _symbol;

        _previousReflectionFee = properties.reflectionFee;
        _previousTaxFee = properties.taxFee;
        maxTxAmount = properties.maxTxAmount;
        maxAccountAmount = properties.maxAccountAmount;

        _rOwned[_msgSender()] = _rTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[properties.liquidityWalletAddress] = true;
        _isExcludedFromFee[properties.devWalletAddress] = true;
        _isExcludedFromFee[properties.treasuryWalletAddress] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(properties.uniswapRouterAddress);
        uniswapRouter = _uniswapV2Router;
        _approve(address(this), address(uniswapRouter), _tTotal);
        uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(uniswapPair).approve(address(uniswapRouter), type(uint256).max);

        distributor = new DividendDistributor();
        _isExcludedFromFee[address(distributor)] = true;
    }

    function setDistributionCriteria(
        uint256 _minPeriod,
        uint256 _minDistribution
    ) external onlyOwner {
        distributor.setDistributionCriteria(_minPeriod, _minDistribution);
    }

    function setShare(address _shareholder, uint256 _amount)
        external
        onlyOwner
    {
        distributor.setShare( _shareholder, _amount);
    }

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

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

    function airdrop(address[] memory recipients, uint256[] memory amounts) external onlyOwner {
        require(recipients.length == amounts.length && recipients.length < 256, 'Incorrect lengths');
        for (uint256 i = 0; i < recipients.length; i++) {
            _transfer(_msgSender(), recipients[i], amounts[i]);
        }
    }

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

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

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

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

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

    function setCanSwap(bool onoff) external onlyOwner {
        canSwap = onoff;
    }

    function setTradingEnabled() external onlyOwner {
        tradingEnabled = true;
    }

    function removeAllFee() private {
        if (properties.reflectionFee == 0 && properties.taxFee == 0) return;
        _previousReflectionFee = properties.reflectionFee;
        _previousTaxFee = properties.taxFee;
        properties.reflectionFee = 0;
        properties.taxFee = 0;
    }

    function restoreAllFee() private {
        properties.reflectionFee = _previousReflectionFee;
        properties.taxFee = _previousTaxFee;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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 from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), 'ERC20: transfer from the zero address');
        require(to != address(0), 'ERC20: transfer to the zero address');
        require(amount > 0, 'Transfer amount must be greater than zero');
        if (!tradingEnabled) {
            require(
                _isExcludedFromFee[from] || _isExcludedFromFee[to] || _isExcludedFromFee[tx.origin],
                'Trading is not live yet'
            );
        }
        require(!bots[from] && !bots[tx.origin], 'Bot blacklisted');

        if (isLaunchProtectionMode && !inSwap) {
            require(
                _isExcludedFromFee[from] || _isExcludedFromFee[to] || amount <= maxTxAmount,
                'Max Transfer Limit Exceeds!'
            );
            require(
                _isExcludedFromFee[from] ||
                    _isExcludedFromFee[to] ||
                    to == uniswapPair ||
                    balanceOf(to) + amount <= maxAccountAmount,
                'Max Account Amount Exceeds!'
            );
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        if (!inSwap && from != uniswapPair && tradingEnabled && canSwap) {
            if (contractTokenBalance > 0) {
                if (contractTokenBalance > balanceOf(uniswapPair).div(100)) {
                    swapTokensForEth(contractTokenBalance);
                }
            }
            uint256 contractETHBalance = address(this).balance;
            if (contractETHBalance > 0) {
                sendETHToFee(address(this).balance);
            }
        }

        bool takeFee = true;

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

        if (from != uniswapPair && to != uniswapPair) {
            takeFee = false;
        }

        _tokenTransfer(from, to, amount, takeFee);

        if (takeFee && from == uniswapPair) properties.taxFee = _previousTaxFee;
        if (takeFee && to == uniswapPair) properties.reflectionFee = _previousReflectionFee;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), tokenAmount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function sendETHToFee(uint256 amount) private {
        uint256 totalFees = properties.devFee + properties.liquidityFee + properties.treasuryFee + properties.dividendFee;

        properties.devWalletAddress.transfer(amount.div(totalFees).mul(properties.devFee));
        properties.liquidityWalletAddress.transfer(amount.div(totalFees).mul(properties.liquidityFee));
        properties.treasuryWalletAddress.transfer(amount.div(totalFees).mul(properties.treasuryFee));
        try distributor.deposit{value: amount.div(totalFees).mul(properties.dividendFee)}() {} catch {}
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!takeFee) restoreAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tReflect
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);


        if (!_isExcludedFromFee[sender]) {
            try distributor.setShare(sender, balanceOf(sender)) {} catch {}
        }
        if (!_isExcludedFromFee[recipient]) {
            try distributor.setShare(recipient, balanceOf(recipient)) {} catch {}
        }

        _takeTeam(tReflect);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

    function _getTValues(
        uint256 tAmount,
        uint256 reflectionFee,
        uint256 taxFee
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = tAmount.mul(reflectionFee).div(100);
        uint256 tReflect = tAmount.mul(taxFee).div(1000);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tReflect);
        return (tTransferAmount, tFee, tReflect);
    }

    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;
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

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

    function _takeTeam(uint256 tReflect) private {
        uint256 currentRate = _getRate();
        uint256 rTeam = tReflect.mul(currentRate);

        _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
    }

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

    receive() external payable {}

    function setLiquidityWallet(address payable _liquidityWalletAddress) external onlyOwner {
        properties.liquidityWalletAddress = _liquidityWalletAddress;
        _isExcludedFromFee[properties.liquidityWalletAddress] = true;
    }

    function setTreasuryWallet(address payable _treasuryWalletAddress) external onlyOwner {
        properties.treasuryWalletAddress = _treasuryWalletAddress;
        _isExcludedFromFee[properties.treasuryWalletAddress] = true;
    }

    function excludeFromFee(address payable ad) external onlyOwner {
        _isExcludedFromFee[ad] = true;
    }

    function includeToFee(address payable ad) external onlyOwner {
        _isExcludedFromFee[ad] = false;
    }

    function setTaxFee(uint256 taxFee) external onlyOwner {
        require(taxFee <= 250, 'Team fee must be less than 25%');
        properties.taxFee = taxFee;
    }

    function setReflectionFee(uint256 reflect) external onlyOwner {
        require(reflect <= 25, 'Tax fee must be less than 25%');
        properties.reflectionFee = reflect;
    }

    function manualSwap() external {
        require(
            _msgSender() == properties.liquidityWalletAddress ||
                _msgSender() == properties.devWalletAddress ||
                _msgSender() == properties.treasuryWalletAddress,
            'Not authorized'
        );
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external {
        require(
            _msgSender() == properties.liquidityWalletAddress ||
                _msgSender() == properties.devWalletAddress ||
                _msgSender() == properties.treasuryWalletAddress,
            'Not authorized'
        );
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

    function endLaunchProtection() external onlyOwner {
        isLaunchProtectionMode = false;
    }

    function setMaxTxAmount(uint256 percentage) external onlyOwner {
        maxTxAmount = _tTotal.mul(percentage).div(100);
    }

    function setBot(address bot, bool value) external onlyOwner {
        bots[bot] = value;
    }

    function setBotBatch(address[] memory _bots, bool value) external onlyOwner {
        require(_bots.length < 256, 'Incorrect lengths');
        for (uint256 i = 0; i < _bots.length; i++) {
            bots[_bots[i]] = value;
        }
    }
}

File 2 of 10 : IDividendDistributor.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

interface IDividendDistributor {
    function setDistributionCriteria(
        uint256 _minPeriod,
        uint256 _minDistribution
    ) external;

    function setShare(address shareholder, uint256 amount) external;

    function deposit() external payable;

}

File 3 of 10 : DividendDistributor.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

import './IDividendDistributor.sol';
import './SafeMath.sol';
import './IERC20.sol';
import './ReentrancyGuard.sol';

contract DividendDistributor is IDividendDistributor, ReentrancyGuard {
    using SafeMath for uint256;

    event DividendDistributed(address shareholder, uint256 amount);

    address _token;

    struct Share {
        uint256 amount;
        uint256 totalExcluded;
        uint256 totalRealised;
    }

    address[] shareholders;
    mapping(address => uint256) shareholderIndexes;
    mapping(address => uint256) shareholderClaims;

    mapping(address => Share) public shares;

    uint256 public totalShares;
    uint256 public totalDividends;
    uint256 public totalDistributed;
    uint256 public dividendsPerShare;
    uint256 public dividendsPerShareAccuracyFactor = 10**36;

    uint256 public minPeriod = 1 hours;
    uint256 public minDistribution = 1 * (10**18);

    uint256 currentIndex;

    modifier onlyToken() {
        require(msg.sender == _token);
        _;
    }

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

    function setDistributionCriteria(
        uint256 _minPeriod,
        uint256 _minDistribution
    ) external override onlyToken {
        minPeriod = _minPeriod;
        minDistribution = _minDistribution;
    }

    function setShare(address shareholder, uint256 amount)
        external
        override
        onlyToken
    {
        if (shares[shareholder].amount > 0) {
            distributeDividend(payable(shareholder));
        }

        if (amount > 0 && shares[shareholder].amount == 0) {
            addShareholder(shareholder);
        } else if (amount == 0 && shares[shareholder].amount > 0) {
            removeShareholder(shareholder);
        }

        totalShares = totalShares.sub(shares[shareholder].amount).add(amount);
        shares[shareholder].amount = amount;

        shares[shareholder].totalExcluded = getCumulativeDividends(
            shares[shareholder].amount
        );
    }

    function deposit() external payable override onlyToken {
        totalDividends = totalDividends.add(msg.value);
        dividendsPerShare = dividendsPerShare.add(
            dividendsPerShareAccuracyFactor.mul(msg.value).div(totalShares)
        );
    }

    function distributeDividend(address payable shareholder) internal nonReentrant {
        if (shares[shareholder].amount == 0) {
            return;
        }

        uint256 amount = getUnpaidEarnings(shareholder);

        if (amount > 0) {
            totalDistributed = totalDistributed.add(amount);
            shareholder.transfer(amount);
            shareholderClaims[shareholder] = block.timestamp;
            shares[shareholder].totalRealised = shares[shareholder]
                .totalRealised
                .add(amount);
            shares[shareholder].totalExcluded = getCumulativeDividends(
                shares[shareholder].amount
            );

            emit DividendDistributed(shareholder, amount);
        }
    }

    function claimDividend() external {
        distributeDividend(msg.sender);
    }

    function getUnpaidEarnings(address shareholder)
        public
        view
        returns (uint256)
    {
        if (shares[shareholder].amount == 0) {
            return 0;
        }

        uint256 shareholderTotalDividends = getCumulativeDividends(
            shares[shareholder].amount
        );
        uint256 shareholderTotalExcluded = shares[shareholder].totalExcluded;

        if (shareholderTotalDividends <= shareholderTotalExcluded) {
            return 0;
        }

        return shareholderTotalDividends.sub(shareholderTotalExcluded);
    }

    function getCumulativeDividends(uint256 share)
        internal
        view
        returns (uint256)
    {
        return
            share.mul(dividendsPerShare).div(dividendsPerShareAccuracyFactor);
    }

    function addShareholder(address shareholder) internal {
        shareholderIndexes[shareholder] = shareholders.length;
        shareholders.push(shareholder);
    }

    function getShareholders()
        external
        view
        returns (address[] memory)
    {
        return shareholders;
    }

    function getShareholderAmount(address shareholder)
        external
        view
        returns (uint256)
    {
        return shares[shareholder].amount;
    }

    function removeShareholder(address shareholder) internal {
        shareholders[shareholderIndexes[shareholder]] = shareholders[
            shareholders.length - 1
        ];
        shareholderIndexes[
            shareholders[shareholders.length - 1]
        ] = shareholderIndexes[shareholder];
        shareholders.pop();
    }
}

File 4 of 10 : Address.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

/**
 * @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 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].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, 'Address: insufficient balance');

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

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, 'Address: low-level call failed');
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, 'Address: low-level call with value failed');
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, 'Address: insufficient balance for call');
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), 'Address: call to non-contract');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 5 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import './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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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(_owner == _msgSender(), 'Ownable: caller is not the 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 virtual 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 virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 7 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.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.
     */
    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.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        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.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 8 of 10 : Uniswap.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Pair {
    function sync() external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

File 9 of 10 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() public {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        require(_status != _ENTERED, 'ReentrancyGuard: reentrant call');
        _status = _ENTERED;
        _;
        _status = _NOT_ENTERED;
    }

    modifier isHuman() {
        require(tx.origin == msg.sender, 'sorry humans only');
        _;
    }
}

File 10 of 10 : Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"components":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"reflectionFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"dividendFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"treasuryFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxAccountAmount","type":"uint256"},{"internalType":"address","name":"uniswapRouterAddress","type":"address"},{"internalType":"address payable","name":"liquidityWalletAddress","type":"address"},{"internalType":"address payable","name":"devWalletAddress","type":"address"},{"internalType":"address payable","name":"treasuryWalletAddress","type":"address"}],"internalType":"struct Token.TokenProperties","name":"_properties","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_cooldown","type":"bool"}],"name":"CooldownEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_multiplier","type":"uint256"}],"name":"FeeMultiplierUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"FeeRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"contract IDividendDistributor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endLaunchProtection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"ad","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"ad","type":"address"}],"name":"includeToFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLaunchProtectionMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxAccountAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"properties","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"reflectionFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"dividendFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"treasuryFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxAccountAmount","type":"uint256"},{"internalType":"address","name":"uniswapRouterAddress","type":"address"},{"internalType":"address payable","name":"liquidityWalletAddress","type":"address"},{"internalType":"address payable","name":"devWalletAddress","type":"address"},{"internalType":"address payable","name":"treasuryWalletAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_bots","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBotBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCanSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minPeriod","type":"uint256"},{"internalType":"uint256","name":"_minDistribution","type":"uint256"}],"name":"setDistributionCriteria","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_liquidityWalletAddress","type":"address"}],"name":"setLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflect","type":"uint256"}],"name":"setReflectionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_shareholder","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_treasuryWalletAddress","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600d805460ff60b01b1961ffff60a01b19909116600160a81b171690556010805460ff191660011790553480156200003b57600080fd5b5060405162003e5438038062003e548339810160408190526200005e9162000804565b60006200006a62000598565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35080516013819055602082015160145560408201516015556060820151601655608082015160175560a082015160185560c082015160195560e0820151601a55610100820151601b55610120820151601c80546001600160a01b039283166001600160a01b031991821617909155610140840151601d8054918416918316919091179055610160840151601e8054918416918316919091179055610180840151601f8054919093169116179055633b9aca00026005819055600019816200017657fe5b061960065582516200019090600890602086019062000670565b508151620001a690600990602085019062000670565b50601554600a55601454600b55601a54600e55601b54600f5560065460016000620001d062000598565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506001600460006200020a6200059c60201b60201c565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526004909352818320805485166001908117909155601d54821684528284208054861682179055601e54821684528284208054861682179055601f549091168352912080549092161790556200028f62000598565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600554604051620002d6919062000a00565b60405180910390a3601c54600c80546001600160a01b0319166001600160a01b0392831690811791829055600554909262000316923092911690620005ab565b806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035057600080fd5b505afa15801562000365573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038b9190620007bc565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003d457600080fd5b505afa158015620003e9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040f9190620007bc565b6040518363ffffffff1660e01b81526004016200042e92919062000947565b602060405180830381600087803b1580156200044957600080fd5b505af11580156200045e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004849190620007bc565b600d80546001600160a01b0319166001600160a01b039283161790819055600c5460405163095ea7b360e01b81529183169263095ea7b392620004d292909116906000199060040162000961565b602060405180830381600087803b158015620004ed57600080fd5b505af115801562000502573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005289190620007e2565b506040516200053790620006f5565b604051809103906000f08015801562000554573d6000803e3d6000fd5b50601280546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff191660011790555062000a4992505050565b3390565b6000546001600160a01b031690565b6001600160a01b038316620005dd5760405162461bcd60e51b8152600401620005d490620009bc565b60405180910390fd5b6001600160a01b038216620006065760405162461bcd60e51b8152600401620005d4906200097a565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906200066390859062000a00565b60405180910390a3505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b357805160ff1916838001178555620006e3565b82800160010185558215620006e3579182015b82811115620006e3578251825591602001919060010190620006c6565b50620006f192915062000703565b5090565b610c24806200323083390190565b5b80821115620006f1576000815560010162000704565b8051620007278162000a30565b92915050565b600082601f8301126200073e578081fd5b81516001600160401b0381111562000754578182fd5b60206200076a601f8301601f1916820162000a09565b925081835284818386010111156200078157600080fd5b60005b82811015620007a157848101820151848201830152810162000784565b82811115620007b35760008284860101525b50505092915050565b600060208284031215620007ce578081fd5b8151620007db8162000a30565b9392505050565b600060208284031215620007f4578081fd5b81518015158114620007db578182fd5b60008060008385036101e08112156200081b578283fd5b84516001600160401b038082111562000832578485fd5b62000840888389016200072d565b9550602087015191508082111562000856578485fd5b5062000865878288016200072d565b9350506101a080603f19830112156200087c578283fd5b620008878162000a09565b915060408601518252606086015160208301526080860151604083015260a0860151606083015260c0860151608083015260e086015160a08301526101008087015160c08401526101208088015160e085015261014080890151838601526101609250620008f88a848b016200071a565b8286015261018091506200090f8a838b016200071a565b9085015262000921898985016200071a565b8285015262000935896101c08a016200071a565b81850152505050809150509250925092565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03929092168252602082015260400190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b6040518181016001600160401b038111828210171562000a2857600080fd5b604052919050565b6001600160a01b038116811462000a4657600080fd5b50565b6127d78062000a596000396000f3fe6080604052600436106102085760003560e01c80638d8c572b11610118578063cf0848f7116100a0578063ec28438a1161006f578063ec28438a14610586578063ec556ad0146105a6578063f2fde38b146105c6578063f4293890146105e6578063fcd802b1146105fb5761020f565b8063cf0848f714610511578063dd62ed3e14610531578063e156afd514610551578063e547be69146105665761020f565b8063a8602fea116100e7578063a8602fea14610487578063a9059cbb146104a7578063bfe10928146104c7578063c4081a4c146104dc578063c816841b146104fc5761020f565b80638d8c572b1461041b5780638da5cb5b1461043b57806395d89b411461045d578063a63d5e33146104725761020f565b8063313ce5671161019b57806351bc3c851161016a57806351bc3c851461039c57806367243482146103b157806370a08231146103d1578063715018a6146103f15780638c0b5e22146104065761020f565b8063313ce56714610325578063342aa8b514610347578063437823ec146103675780634e64c68a146103875761020f565b80631b35bed0116101d75780631b35bed0146102b057806323b872dd146102c5578063296f0a0c146102e55780632d48e896146103055761020f565b806306fdde0314610214578063095ea7b31461023f57806314b6ca961461026c57806318160ddd1461028e5761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610629565b60405161023691906121a3565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611fea565b6106b7565b6040516102369190612198565b34801561027857600080fd5b5061028c610287366004611fea565b6106d5565b005b34801561029a57600080fd5b506102a361077b565b6040516102369190612619565b3480156102bc57600080fd5b5061028c610781565b3480156102d157600080fd5b5061025f6102e0366004611f75565b6107c2565b3480156102f157600080fd5b5061028c610300366004611f05565b610849565b34801561031157600080fd5b5061028c61032036600461214a565b6108b8565b34801561033157600080fd5b5061033a61091f565b604051610236919061270f565b34801561035357600080fd5b5061028c610362366004611fb5565b610924565b34801561037357600080fd5b5061028c610382366004611f05565b610984565b34801561039357600080fd5b5061025f6109dd565b3480156103a857600080fd5b5061028c6109e6565b3480156103bd57600080fd5b5061028c6103cc366004612015565b610a83565b3480156103dd57600080fd5b506102a36103ec366004611f05565b610b38565b3480156103fd57600080fd5b5061028c610b5a565b34801561041257600080fd5b506102a3610bd9565b34801561042757600080fd5b5061028c6104363660046120ce565b610bdf565b34801561044757600080fd5b50610450610c8d565b604051610236919061216b565b34801561046957600080fd5b50610229610c9c565b34801561047e57600080fd5b506102a3610cf7565b34801561049357600080fd5b5061028c6104a2366004611f05565b610cfd565b3480156104b357600080fd5b5061025f6104c2366004611fea565b610d6c565b3480156104d357600080fd5b50610450610d80565b3480156104e857600080fd5b5061028c6104f7366004612132565b610d8f565b34801561050857600080fd5b50610450610dea565b34801561051d57600080fd5b5061028c61052c366004611f05565b610df9565b34801561053d57600080fd5b506102a361054c366004611f3d565b610e4f565b34801561055d57600080fd5b5061028c610e7a565b34801561057257600080fd5b5061028c610581366004612132565b610ec4565b34801561059257600080fd5b5061028c6105a1366004612132565b610f1f565b3480156105b257600080fd5b5061028c6105c1366004612112565b610f7a565b3480156105d257600080fd5b5061028c6105e1366004611f05565b610fcd565b3480156105f257600080fd5b5061028c611083565b34801561060757600080fd5b50610610611111565b6040516102369d9c9b9a999897969594939291906126a0565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106af5780601f10610684576101008083540402835291602001916106af565b820191906000526020600020905b81548152906001019060200180831161069257829003601f168201915b505050505081565b60006106cb6106c4611150565b8484611154565b5060015b92915050565b6106dd611150565b6000546001600160a01b039081169116146107135760405162461bcd60e51b815260040161070a90612445565b60405180910390fd5b601254604051630a5b654b60e11b81526001600160a01b03909116906314b6ca9690610745908590859060040161217f565b600060405180830381600087803b15801561075f57600080fd5b505af1158015610773573d6000803e3d6000fd5b505050505050565b60055490565b610789611150565b6000546001600160a01b039081169116146107b65760405162461bcd60e51b815260040161070a90612445565b6010805460ff19169055565b60006107cf848484611208565b61083f846107db611150565b61083a8560405180606001604052806028815260200161277a602891396001600160a01b038a16600090815260036020526040812090610819611150565b6001600160a01b0316815260208101919091526040016000205491906115ea565b611154565b5060019392505050565b610851611150565b6000546001600160a01b0390811691161461087e5760405162461bcd60e51b815260040161070a90612445565b601d80546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff19166001179055565b6108c0611150565b6000546001600160a01b039081169116146108ed5760405162461bcd60e51b815260040161070a90612445565b6012546040516316a4744b60e11b81526001600160a01b0390911690632d48e896906107459085908590600401612692565b600981565b61092c611150565b6000546001600160a01b039081169116146109595760405162461bcd60e51b815260040161070a90612445565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b61098c611150565b6000546001600160a01b039081169116146109b95760405162461bcd60e51b815260040161070a90612445565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60105460ff1681565b601d546001600160a01b03166109fa611150565b6001600160a01b03161480610a295750601e546001600160a01b0316610a1e611150565b6001600160a01b0316145b80610a4e5750601f546001600160a01b0316610a43611150565b6001600160a01b0316145b610a6a5760405162461bcd60e51b815260040161070a906125f1565b6000610a7530610b38565b9050610a8081611616565b50565b610a8b611150565b6000546001600160a01b03908116911614610ab85760405162461bcd60e51b815260040161070a90612445565b80518251148015610acb57506101008251105b610ae75760405162461bcd60e51b815260040161070a9061241a565b60005b8251811015610b3357610b2b610afe611150565b848381518110610b0a57fe5b6020026020010151848481518110610b1e57fe5b6020026020010151611208565b600101610aea565b505050565b6001600160a01b0381166000908152600160205260408120546106cf90611792565b610b62611150565b6000546001600160a01b03908116911614610b8f5760405162461bcd60e51b815260040161070a90612445565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600e5481565b610be7611150565b6000546001600160a01b03908116911614610c145760405162461bcd60e51b815260040161070a90612445565b610100825110610c365760405162461bcd60e51b815260040161070a9061241a565b60005b8251811015610b33578160116000858481518110610c5357fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610c39565b6000546001600160a01b031690565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106af5780601f10610684576101008083540402835291602001916106af565b600f5481565b610d05611150565b6000546001600160a01b03908116911614610d325760405162461bcd60e51b815260040161070a90612445565b601f80546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff19166001179055565b60006106cb610d79611150565b8484611208565b6012546001600160a01b031681565b610d97611150565b6000546001600160a01b03908116911614610dc45760405162461bcd60e51b815260040161070a90612445565b60fa811115610de55760405162461bcd60e51b815260040161070a906125ba565b601455565b600d546001600160a01b031681565b610e01611150565b6000546001600160a01b03908116911614610e2e5760405162461bcd60e51b815260040161070a90612445565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610e82611150565b6000546001600160a01b03908116911614610eaf5760405162461bcd60e51b815260040161070a90612445565b600d805460ff60a01b1916600160a01b179055565b610ecc611150565b6000546001600160a01b03908116911614610ef95760405162461bcd60e51b815260040161070a90612445565b6019811115610f1a5760405162461bcd60e51b815260040161070a90612262565b601555565b610f27611150565b6000546001600160a01b03908116911614610f545760405162461bcd60e51b815260040161070a90612445565b610f746064610f6e836005546117d390919063ffffffff16565b9061180d565b600e5550565b610f82611150565b6000546001600160a01b03908116911614610faf5760405162461bcd60e51b815260040161070a90612445565b600d8054911515600160a81b0260ff60a81b19909216919091179055565b610fd5611150565b6000546001600160a01b039081169116146110025760405162461bcd60e51b815260040161070a90612445565b6001600160a01b0381166110285760405162461bcd60e51b815260040161070a906122e3565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b601d546001600160a01b0316611097611150565b6001600160a01b031614806110c65750601e546001600160a01b03166110bb611150565b6001600160a01b0316145b806110eb5750601f546001600160a01b03166110e0611150565b6001600160a01b0316145b6111075760405162461bcd60e51b815260040161070a906125f1565b47610a808161184f565b601354601454601554601654601754601854601954601a54601b54601c54601d54601e54601f546001600160a01b03938416939283169291821691168d565b3390565b6001600160a01b03831661117a5760405162461bcd60e51b815260040161070a90612508565b6001600160a01b0382166111a05760405162461bcd60e51b815260040161070a90612329565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906111fb908590612619565b60405180910390a3505050565b6001600160a01b03831661122e5760405162461bcd60e51b815260040161070a906124c3565b6001600160a01b0382166112545760405162461bcd60e51b815260040161070a9061221f565b600081116112745760405162461bcd60e51b815260040161070a9061247a565b600d54600160a01b900460ff166112fa576001600160a01b03831660009081526004602052604090205460ff16806112c457506001600160a01b03821660009081526004602052604090205460ff165b806112de57503260009081526004602052604090205460ff165b6112fa5760405162461bcd60e51b815260040161070a906123a2565b6001600160a01b03831660009081526011602052604090205460ff1615801561133357503260009081526011602052604090205460ff16155b61134f5760405162461bcd60e51b815260040161070a906121f6565b60105460ff16801561136b5750600d54600160b01b900460ff16155b15611462576001600160a01b03831660009081526004602052604090205460ff16806113af57506001600160a01b03821660009081526004602052604090205460ff165b806113bc5750600e548111155b6113d85760405162461bcd60e51b815260040161070a9061254c565b6001600160a01b03831660009081526004602052604090205460ff168061141757506001600160a01b03821660009081526004602052604090205460ff165b8061142f5750600d546001600160a01b038381169116145b806114465750600f548161144284610b38565b0111155b6114625760405162461bcd60e51b815260040161070a90612583565b600061146d30610b38565b600d54909150600160b01b900460ff161580156114985750600d546001600160a01b03858116911614155b80156114ad5750600d54600160a01b900460ff165b80156114c25750600d54600160a81b900460ff165b1561150b5780156114f957600d546114e990606490610f6e906001600160a01b0316610b38565b8111156114f9576114f981611616565b478015611509576115094761184f565b505b6001600160a01b03841660009081526004602052604090205460019060ff168061154d57506001600160a01b03841660009081526004602052604090205460ff165b15611556575060005b600d546001600160a01b038681169116148015906115825750600d546001600160a01b03858116911614155b1561158b575060005b611597858585846119b1565b8080156115b15750600d546001600160a01b038681169116145b156115bd57600b546014555b8080156115d75750600d546001600160a01b038581169116145b156115e357600a546015555b5050505050565b6000818484111561160e5760405162461bcd60e51b815260040161070a91906121a3565b505050900390565b600d805460ff60b01b1916600160b01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061165757fe5b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156116ab57600080fd5b505afa1580156116bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e39190611f21565b816001815181106116f057fe5b6001600160a01b039283166020918202929092010152600c546117169130911684611154565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061174f908590600090869030904290600401612622565b600060405180830381600087803b15801561176957600080fd5b505af115801561177d573d6000803e3d6000fd5b5050600d805460ff60b01b1916905550505050565b60006006548211156117b65760405162461bcd60e51b815260040161070a90612299565b60006117c06119dc565b90506117cc838261180d565b9392505050565b6000826117e2575060006106cf565b828202828482816117ef57fe5b04146117cc5760405162461bcd60e51b815260040161070a906123d9565b60006117cc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119ff565b601754601954601654601854601e54918101909201909201916001600160a01b0316906108fc9061188a90611884868661180d565b906117d3565b6040518115909202916000818181858888f193505050501580156118b2573d6000803e3d6000fd5b50601d546016546001600160a01b03909116906108fc906118d790611884868661180d565b6040518115909202916000818181858888f193505050501580156118ff573d6000803e3d6000fd5b50601f546019546001600160a01b03909116906108fc9061192490611884868661180d565b6040518115909202916000818181858888f1935050505015801561194c573d6000803e3d6000fd5b506012546017546001600160a01b039091169063d0e30db09061197390611884868661180d565b6040518263ffffffff1660e01b81526004016000604051808303818588803b15801561199e57600080fd5b505af193505050508015610b3357505050565b806119be576119be611a36565b6119c9848484611a68565b806119d6576119d6611c61565b50505050565b60008060006119e9611c6f565b90925090506119f8828261180d565b9250505090565b60008183611a205760405162461bcd60e51b815260040161070a91906121a3565b506000838581611a2c57fe5b0495945050505050565b601554158015611a465750601454155b15611a5057611a66565b60158054600a5560148054600b55600091829055555b565b600080600080600080611a7a87611ca6565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611aac9087611d09565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054611adb9086611d4b565b6001600160a01b03808a16600090815260016020908152604080832094909455918c1681526004909152205460ff16611b73576012546001600160a01b03166314b6ca968a611b2981610b38565b6040518363ffffffff1660e01b8152600401611b4692919061217f565b600060405180830381600087803b158015611b6057600080fd5b505af1925050508015611b71575060015b505b6001600160a01b03881660009081526004602052604090205460ff16611bf8576012546001600160a01b03166314b6ca9689611bae81610b38565b6040518363ffffffff1660e01b8152600401611bcb92919061217f565b600060405180830381600087803b158015611be557600080fd5b505af1925050508015611bf6575060015b505b611c0181611d70565b611c0b8483611dba565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611c4e9190612619565b60405180910390a3505050505050505050565b600a54601555600b54601455565b6006546005546000918291611c84828261180d565b821015611c9c57600654600554935093505050611ca2565b90925090505b9091565b6000806000806000806000806000611cc98a601360020154601360010154611dde565b9250925092506000611cd96119dc565b90506000806000611cec8e878787611e2e565b919e509c509a509598509396509194505050505091939550919395565b60006117cc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115ea565b6000828201838110156117cc5760405162461bcd60e51b815260040161070a9061236b565b6000611d7a6119dc565b90506000611d8883836117d3565b30600090815260016020526040902054909150611da59082611d4b565b30600090815260016020526040902055505050565b600654611dc79083611d09565b600655600754611dd79082611d4b565b6007555050565b6000808080611df26064610f6e89896117d3565b90506000611e066103e8610f6e8a896117d3565b90506000611e1e82611e188b86611d09565b90611d09565b9992985090965090945050505050565b6000808080611e3d88866117d3565b90506000611e4b88876117d3565b90506000611e5988886117d3565b90506000611e6b82611e188686611d09565b939b939a50919850919650505050505050565b600082601f830112611e8e578081fd5b8135611ea1611e9c82612744565b61271d565b818152915060208083019084810181840286018201871015611ec257600080fd5b60005b84811015611eea578135611ed881612764565b84529282019290820190600101611ec5565b505050505092915050565b803580151581146106cf57600080fd5b600060208284031215611f16578081fd5b81356117cc81612764565b600060208284031215611f32578081fd5b81516117cc81612764565b60008060408385031215611f4f578081fd5b8235611f5a81612764565b91506020830135611f6a81612764565b809150509250929050565b600080600060608486031215611f89578081fd5b8335611f9481612764565b92506020840135611fa481612764565b929592945050506040919091013590565b60008060408385031215611fc7578182fd5b8235611fd281612764565b9150611fe18460208501611ef5565b90509250929050565b60008060408385031215611ffc578182fd5b823561200781612764565b946020939093013593505050565b60008060408385031215612027578182fd5b823567ffffffffffffffff8082111561203e578384fd5b61204a86838701611e7e565b9350602091508185013581811115612060578384fd5b85019050601f81018613612072578283fd5b8035612080611e9c82612744565b81815283810190838501858402850186018a101561209c578687fd5b8694505b838510156120be5780358352600194909401939185019185016120a0565b5080955050505050509250929050565b600080604083850312156120e0578182fd5b823567ffffffffffffffff8111156120f6578283fd5b61210285828601611e7e565b925050611fe18460208501611ef5565b600060208284031215612123578081fd5b813580151581146117cc578182fd5b600060208284031215612143578081fd5b5035919050565b6000806040838503121561215c578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b818110156121cf578581018301518582016040015282016121b3565b818111156121e05783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600f908201526e109bdd08189b1858dadb1a5cdd1959608a1b604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601d908201527f54617820666565206d757374206265206c657373207468616e20323525000000604082015260600190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526017908201527f54726164696e67206973206e6f74206c69766520796574000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b602080825260119082015270496e636f7272656374206c656e6774687360781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601b908201527f4d6178205472616e73666572204c696d69742045786365656473210000000000604082015260600190565b6020808252601b908201527f4d6178204163636f756e7420416d6f756e742045786365656473210000000000604082015260600190565b6020808252601e908201527f5465616d20666565206d757374206265206c657373207468616e203235250000604082015260600190565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156126715784516001600160a01b03168352938301939183019160010161264c565b50506001600160a01b03969096166060850152505050608001529392505050565b918252602082015260400190565b9c8d5260208d019b909b5260408c019990995260608b019790975260808a019590955260a089019390935260c088019190915260e08701526101008601526001600160a01b03908116610120860152908116610140850152908116610160840152166101808201526101a00190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561273c57600080fd5b604052919050565b600067ffffffffffffffff82111561275a578081fd5b5060209081020190565b6001600160a01b0381168114610a8057600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b58d46b5eba999da1f27cb10757284922a6839f9be1e8e00a9f722e7d861ff3764736f6c634300060c003360806040526ec097ce7bc90715b34b9f1000000000600a55610e10600b55670de0b6b3a7640000600c5534801561003557600080fd5b506001600081905580546001600160a01b03191633179055610bc88061005c6000396000f3fe6080604052600436106100e85760003560e01c8063997664d71161008a578063e2d2e21911610059578063e2d2e219146102e2578063efca2eed146102f7578063f0fc6bca1461030c578063ffd49c8414610321576100e8565b8063997664d714610241578063abd3775314610256578063ce7c2ac214610289578063d0e30db0146102da576100e8565b80632d48e896116100c65780632d48e896146101825780633a98ef39146101b257806341ca641e146101c75780634fab0ae81461022c576100e8565b806311ce023d146100ed57806314b6ca961461011457806328fd31981461014f575b600080fd5b3480156100f957600080fd5b50610102610336565b60408051918252519081900360200190f35b34801561012057600080fd5b5061014d6004803603604081101561013757600080fd5b506001600160a01b03813516906020013561033c565b005b34801561015b57600080fd5b506101026004803603602081101561017257600080fd5b50356001600160a01b0316610461565b34801561018e57600080fd5b5061014d600480360360408110156101a557600080fd5b50803590602001356104ed565b3480156101be57600080fd5b5061010261050f565b3480156101d357600080fd5b506101dc610515565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610218578181015183820152602001610200565b505050509050019250505060405180910390f35b34801561023857600080fd5b50610102610577565b34801561024d57600080fd5b5061010261057d565b34801561026257600080fd5b506101026004803603602081101561027957600080fd5b50356001600160a01b0316610583565b34801561029557600080fd5b506102bc600480360360208110156102ac57600080fd5b50356001600160a01b031661059e565b60408051938452602084019290925282820152519081900360600190f35b61014d6105bf565b3480156102ee57600080fd5b50610102610612565b34801561030357600080fd5b50610102610618565b34801561031857600080fd5b5061014d61061e565b34801561032d57600080fd5b50610102610629565b600a5481565b6001546001600160a01b0316331461035357600080fd5b6001600160a01b0382166000908152600560205260409020541561037a5761037a8261062f565b6000811180156103a057506001600160a01b038216600090815260056020526040902054155b156103b3576103ae826107ca565b6103e6565b801580156103d857506001600160a01b03821660009081526005602052604090205415155b156103e6576103e68261082b565b6001600160a01b03821660009081526005602052604090205460065461041791839161041191610918565b90610963565b6006556001600160a01b038216600090815260056020526040902081905561043e816109bd565b6001600160a01b0390921660009081526005602052604090206001019190915550565b6001600160a01b038116600090815260056020526040812054610486575060006104e8565b6001600160a01b0382166000908152600560205260408120546104a8906109bd565b6001600160a01b0384166000908152600560205260409020600101549091508082116104d9576000925050506104e8565b6104e38282610918565b925050505b919050565b6001546001600160a01b0316331461050457600080fd5b600b91909155600c55565b60065481565b6060600280548060200260200160405190810160405280929190818152602001828054801561056d57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161054f575b5050505050905090565b600c5481565b60075481565b6001600160a01b031660009081526005602052604090205490565b60056020526000908152604090208054600182015460029092015490919083565b6001546001600160a01b031633146105d657600080fd5b6007546105e39034610963565b600755600654600a5461060d91610604916105fe90346109da565b90610a33565b60095490610963565b600955565b60095481565b60085481565b6106273361062f565b565b600b5481565b60026000541415610687576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260009081556001600160a01b0382168152600560205260409020546106ad576107c2565b60006106b882610461565b905080156107c0576008546106cd9082610963565b6008556040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610706573d6000803e3d6000fd5b506001600160a01b0382166000908152600460209081526040808320429055600590915290206002015461073a9082610963565b6001600160a01b0383166000908152600560205260409020600281019190915554610764906109bd565b6001600160a01b03831660008181526005602090815260409182902060010193909355805191825291810183905281517f84fcdd4a7f507f2206dd50958e7473061bf941f91791c6ffaf74033a07c82f12929181900390910190a15b505b506001600055565b600280546001600160a01b039092166000818152600360205260408120849055600184018355919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180546001600160a01b0319169091179055565b60028054600019810190811061083d57fe5b60009182526020808320909101546001600160a01b038481168452600390925260409092205460028054929093169291811061087557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905591831681526003918290526040812054600280549193929160001981019081106108c357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205560028054806108f357fe5b600082815260209020810160001990810180546001600160a01b031916905501905550565b600061095a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610a75565b90505b92915050565b60008282018381101561095a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061095d600a546105fe600954856109da90919063ffffffff16565b6000826109e95750600061095d565b828202828482816109f657fe5b041461095a5760405162461bcd60e51b8152600401808060200182810382526021815260200180610b726021913960400191505060405180910390fd5b600061095a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610b0c565b60008184841115610b045760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ac9578181015183820152602001610ab1565b50505050905090810190601f168015610af65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610b5b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610ac9578181015183820152602001610ab1565b506000838581610b6757fe5b049594505050505056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122098cdaff230485efc5b98fcc147b04ab1a61ca8743a89f106e482b0ad51a90f9464736f6c634300060c003300000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000087000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000b5e620f4800000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002ebef38c2c18c166cc4178b99955313b877494fc000000000000000000000000bac85faefe6aff9e3d5aec43447bace7e743f68c000000000000000000000000e8259462dd7853e27ce66f3f43627be7a3961db4000000000000000000000000000000000000000000000000000000000000000746726565646f6d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044652454500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102085760003560e01c80638d8c572b11610118578063cf0848f7116100a0578063ec28438a1161006f578063ec28438a14610586578063ec556ad0146105a6578063f2fde38b146105c6578063f4293890146105e6578063fcd802b1146105fb5761020f565b8063cf0848f714610511578063dd62ed3e14610531578063e156afd514610551578063e547be69146105665761020f565b8063a8602fea116100e7578063a8602fea14610487578063a9059cbb146104a7578063bfe10928146104c7578063c4081a4c146104dc578063c816841b146104fc5761020f565b80638d8c572b1461041b5780638da5cb5b1461043b57806395d89b411461045d578063a63d5e33146104725761020f565b8063313ce5671161019b57806351bc3c851161016a57806351bc3c851461039c57806367243482146103b157806370a08231146103d1578063715018a6146103f15780638c0b5e22146104065761020f565b8063313ce56714610325578063342aa8b514610347578063437823ec146103675780634e64c68a146103875761020f565b80631b35bed0116101d75780631b35bed0146102b057806323b872dd146102c5578063296f0a0c146102e55780632d48e896146103055761020f565b806306fdde0314610214578063095ea7b31461023f57806314b6ca961461026c57806318160ddd1461028e5761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610629565b60405161023691906121a3565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611fea565b6106b7565b6040516102369190612198565b34801561027857600080fd5b5061028c610287366004611fea565b6106d5565b005b34801561029a57600080fd5b506102a361077b565b6040516102369190612619565b3480156102bc57600080fd5b5061028c610781565b3480156102d157600080fd5b5061025f6102e0366004611f75565b6107c2565b3480156102f157600080fd5b5061028c610300366004611f05565b610849565b34801561031157600080fd5b5061028c61032036600461214a565b6108b8565b34801561033157600080fd5b5061033a61091f565b604051610236919061270f565b34801561035357600080fd5b5061028c610362366004611fb5565b610924565b34801561037357600080fd5b5061028c610382366004611f05565b610984565b34801561039357600080fd5b5061025f6109dd565b3480156103a857600080fd5b5061028c6109e6565b3480156103bd57600080fd5b5061028c6103cc366004612015565b610a83565b3480156103dd57600080fd5b506102a36103ec366004611f05565b610b38565b3480156103fd57600080fd5b5061028c610b5a565b34801561041257600080fd5b506102a3610bd9565b34801561042757600080fd5b5061028c6104363660046120ce565b610bdf565b34801561044757600080fd5b50610450610c8d565b604051610236919061216b565b34801561046957600080fd5b50610229610c9c565b34801561047e57600080fd5b506102a3610cf7565b34801561049357600080fd5b5061028c6104a2366004611f05565b610cfd565b3480156104b357600080fd5b5061025f6104c2366004611fea565b610d6c565b3480156104d357600080fd5b50610450610d80565b3480156104e857600080fd5b5061028c6104f7366004612132565b610d8f565b34801561050857600080fd5b50610450610dea565b34801561051d57600080fd5b5061028c61052c366004611f05565b610df9565b34801561053d57600080fd5b506102a361054c366004611f3d565b610e4f565b34801561055d57600080fd5b5061028c610e7a565b34801561057257600080fd5b5061028c610581366004612132565b610ec4565b34801561059257600080fd5b5061028c6105a1366004612132565b610f1f565b3480156105b257600080fd5b5061028c6105c1366004612112565b610f7a565b3480156105d257600080fd5b5061028c6105e1366004611f05565b610fcd565b3480156105f257600080fd5b5061028c611083565b34801561060757600080fd5b50610610611111565b6040516102369d9c9b9a999897969594939291906126a0565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106af5780601f10610684576101008083540402835291602001916106af565b820191906000526020600020905b81548152906001019060200180831161069257829003601f168201915b505050505081565b60006106cb6106c4611150565b8484611154565b5060015b92915050565b6106dd611150565b6000546001600160a01b039081169116146107135760405162461bcd60e51b815260040161070a90612445565b60405180910390fd5b601254604051630a5b654b60e11b81526001600160a01b03909116906314b6ca9690610745908590859060040161217f565b600060405180830381600087803b15801561075f57600080fd5b505af1158015610773573d6000803e3d6000fd5b505050505050565b60055490565b610789611150565b6000546001600160a01b039081169116146107b65760405162461bcd60e51b815260040161070a90612445565b6010805460ff19169055565b60006107cf848484611208565b61083f846107db611150565b61083a8560405180606001604052806028815260200161277a602891396001600160a01b038a16600090815260036020526040812090610819611150565b6001600160a01b0316815260208101919091526040016000205491906115ea565b611154565b5060019392505050565b610851611150565b6000546001600160a01b0390811691161461087e5760405162461bcd60e51b815260040161070a90612445565b601d80546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff19166001179055565b6108c0611150565b6000546001600160a01b039081169116146108ed5760405162461bcd60e51b815260040161070a90612445565b6012546040516316a4744b60e11b81526001600160a01b0390911690632d48e896906107459085908590600401612692565b600981565b61092c611150565b6000546001600160a01b039081169116146109595760405162461bcd60e51b815260040161070a90612445565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b61098c611150565b6000546001600160a01b039081169116146109b95760405162461bcd60e51b815260040161070a90612445565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60105460ff1681565b601d546001600160a01b03166109fa611150565b6001600160a01b03161480610a295750601e546001600160a01b0316610a1e611150565b6001600160a01b0316145b80610a4e5750601f546001600160a01b0316610a43611150565b6001600160a01b0316145b610a6a5760405162461bcd60e51b815260040161070a906125f1565b6000610a7530610b38565b9050610a8081611616565b50565b610a8b611150565b6000546001600160a01b03908116911614610ab85760405162461bcd60e51b815260040161070a90612445565b80518251148015610acb57506101008251105b610ae75760405162461bcd60e51b815260040161070a9061241a565b60005b8251811015610b3357610b2b610afe611150565b848381518110610b0a57fe5b6020026020010151848481518110610b1e57fe5b6020026020010151611208565b600101610aea565b505050565b6001600160a01b0381166000908152600160205260408120546106cf90611792565b610b62611150565b6000546001600160a01b03908116911614610b8f5760405162461bcd60e51b815260040161070a90612445565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600e5481565b610be7611150565b6000546001600160a01b03908116911614610c145760405162461bcd60e51b815260040161070a90612445565b610100825110610c365760405162461bcd60e51b815260040161070a9061241a565b60005b8251811015610b33578160116000858481518110610c5357fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610c39565b6000546001600160a01b031690565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106af5780601f10610684576101008083540402835291602001916106af565b600f5481565b610d05611150565b6000546001600160a01b03908116911614610d325760405162461bcd60e51b815260040161070a90612445565b601f80546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff19166001179055565b60006106cb610d79611150565b8484611208565b6012546001600160a01b031681565b610d97611150565b6000546001600160a01b03908116911614610dc45760405162461bcd60e51b815260040161070a90612445565b60fa811115610de55760405162461bcd60e51b815260040161070a906125ba565b601455565b600d546001600160a01b031681565b610e01611150565b6000546001600160a01b03908116911614610e2e5760405162461bcd60e51b815260040161070a90612445565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610e82611150565b6000546001600160a01b03908116911614610eaf5760405162461bcd60e51b815260040161070a90612445565b600d805460ff60a01b1916600160a01b179055565b610ecc611150565b6000546001600160a01b03908116911614610ef95760405162461bcd60e51b815260040161070a90612445565b6019811115610f1a5760405162461bcd60e51b815260040161070a90612262565b601555565b610f27611150565b6000546001600160a01b03908116911614610f545760405162461bcd60e51b815260040161070a90612445565b610f746064610f6e836005546117d390919063ffffffff16565b9061180d565b600e5550565b610f82611150565b6000546001600160a01b03908116911614610faf5760405162461bcd60e51b815260040161070a90612445565b600d8054911515600160a81b0260ff60a81b19909216919091179055565b610fd5611150565b6000546001600160a01b039081169116146110025760405162461bcd60e51b815260040161070a90612445565b6001600160a01b0381166110285760405162461bcd60e51b815260040161070a906122e3565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b601d546001600160a01b0316611097611150565b6001600160a01b031614806110c65750601e546001600160a01b03166110bb611150565b6001600160a01b0316145b806110eb5750601f546001600160a01b03166110e0611150565b6001600160a01b0316145b6111075760405162461bcd60e51b815260040161070a906125f1565b47610a808161184f565b601354601454601554601654601754601854601954601a54601b54601c54601d54601e54601f546001600160a01b03938416939283169291821691168d565b3390565b6001600160a01b03831661117a5760405162461bcd60e51b815260040161070a90612508565b6001600160a01b0382166111a05760405162461bcd60e51b815260040161070a90612329565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906111fb908590612619565b60405180910390a3505050565b6001600160a01b03831661122e5760405162461bcd60e51b815260040161070a906124c3565b6001600160a01b0382166112545760405162461bcd60e51b815260040161070a9061221f565b600081116112745760405162461bcd60e51b815260040161070a9061247a565b600d54600160a01b900460ff166112fa576001600160a01b03831660009081526004602052604090205460ff16806112c457506001600160a01b03821660009081526004602052604090205460ff165b806112de57503260009081526004602052604090205460ff165b6112fa5760405162461bcd60e51b815260040161070a906123a2565b6001600160a01b03831660009081526011602052604090205460ff1615801561133357503260009081526011602052604090205460ff16155b61134f5760405162461bcd60e51b815260040161070a906121f6565b60105460ff16801561136b5750600d54600160b01b900460ff16155b15611462576001600160a01b03831660009081526004602052604090205460ff16806113af57506001600160a01b03821660009081526004602052604090205460ff165b806113bc5750600e548111155b6113d85760405162461bcd60e51b815260040161070a9061254c565b6001600160a01b03831660009081526004602052604090205460ff168061141757506001600160a01b03821660009081526004602052604090205460ff165b8061142f5750600d546001600160a01b038381169116145b806114465750600f548161144284610b38565b0111155b6114625760405162461bcd60e51b815260040161070a90612583565b600061146d30610b38565b600d54909150600160b01b900460ff161580156114985750600d546001600160a01b03858116911614155b80156114ad5750600d54600160a01b900460ff165b80156114c25750600d54600160a81b900460ff165b1561150b5780156114f957600d546114e990606490610f6e906001600160a01b0316610b38565b8111156114f9576114f981611616565b478015611509576115094761184f565b505b6001600160a01b03841660009081526004602052604090205460019060ff168061154d57506001600160a01b03841660009081526004602052604090205460ff165b15611556575060005b600d546001600160a01b038681169116148015906115825750600d546001600160a01b03858116911614155b1561158b575060005b611597858585846119b1565b8080156115b15750600d546001600160a01b038681169116145b156115bd57600b546014555b8080156115d75750600d546001600160a01b038581169116145b156115e357600a546015555b5050505050565b6000818484111561160e5760405162461bcd60e51b815260040161070a91906121a3565b505050900390565b600d805460ff60b01b1916600160b01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061165757fe5b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156116ab57600080fd5b505afa1580156116bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e39190611f21565b816001815181106116f057fe5b6001600160a01b039283166020918202929092010152600c546117169130911684611154565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061174f908590600090869030904290600401612622565b600060405180830381600087803b15801561176957600080fd5b505af115801561177d573d6000803e3d6000fd5b5050600d805460ff60b01b1916905550505050565b60006006548211156117b65760405162461bcd60e51b815260040161070a90612299565b60006117c06119dc565b90506117cc838261180d565b9392505050565b6000826117e2575060006106cf565b828202828482816117ef57fe5b04146117cc5760405162461bcd60e51b815260040161070a906123d9565b60006117cc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119ff565b601754601954601654601854601e54918101909201909201916001600160a01b0316906108fc9061188a90611884868661180d565b906117d3565b6040518115909202916000818181858888f193505050501580156118b2573d6000803e3d6000fd5b50601d546016546001600160a01b03909116906108fc906118d790611884868661180d565b6040518115909202916000818181858888f193505050501580156118ff573d6000803e3d6000fd5b50601f546019546001600160a01b03909116906108fc9061192490611884868661180d565b6040518115909202916000818181858888f1935050505015801561194c573d6000803e3d6000fd5b506012546017546001600160a01b039091169063d0e30db09061197390611884868661180d565b6040518263ffffffff1660e01b81526004016000604051808303818588803b15801561199e57600080fd5b505af193505050508015610b3357505050565b806119be576119be611a36565b6119c9848484611a68565b806119d6576119d6611c61565b50505050565b60008060006119e9611c6f565b90925090506119f8828261180d565b9250505090565b60008183611a205760405162461bcd60e51b815260040161070a91906121a3565b506000838581611a2c57fe5b0495945050505050565b601554158015611a465750601454155b15611a5057611a66565b60158054600a5560148054600b55600091829055555b565b600080600080600080611a7a87611ca6565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611aac9087611d09565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054611adb9086611d4b565b6001600160a01b03808a16600090815260016020908152604080832094909455918c1681526004909152205460ff16611b73576012546001600160a01b03166314b6ca968a611b2981610b38565b6040518363ffffffff1660e01b8152600401611b4692919061217f565b600060405180830381600087803b158015611b6057600080fd5b505af1925050508015611b71575060015b505b6001600160a01b03881660009081526004602052604090205460ff16611bf8576012546001600160a01b03166314b6ca9689611bae81610b38565b6040518363ffffffff1660e01b8152600401611bcb92919061217f565b600060405180830381600087803b158015611be557600080fd5b505af1925050508015611bf6575060015b505b611c0181611d70565b611c0b8483611dba565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611c4e9190612619565b60405180910390a3505050505050505050565b600a54601555600b54601455565b6006546005546000918291611c84828261180d565b821015611c9c57600654600554935093505050611ca2565b90925090505b9091565b6000806000806000806000806000611cc98a601360020154601360010154611dde565b9250925092506000611cd96119dc565b90506000806000611cec8e878787611e2e565b919e509c509a509598509396509194505050505091939550919395565b60006117cc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115ea565b6000828201838110156117cc5760405162461bcd60e51b815260040161070a9061236b565b6000611d7a6119dc565b90506000611d8883836117d3565b30600090815260016020526040902054909150611da59082611d4b565b30600090815260016020526040902055505050565b600654611dc79083611d09565b600655600754611dd79082611d4b565b6007555050565b6000808080611df26064610f6e89896117d3565b90506000611e066103e8610f6e8a896117d3565b90506000611e1e82611e188b86611d09565b90611d09565b9992985090965090945050505050565b6000808080611e3d88866117d3565b90506000611e4b88876117d3565b90506000611e5988886117d3565b90506000611e6b82611e188686611d09565b939b939a50919850919650505050505050565b600082601f830112611e8e578081fd5b8135611ea1611e9c82612744565b61271d565b818152915060208083019084810181840286018201871015611ec257600080fd5b60005b84811015611eea578135611ed881612764565b84529282019290820190600101611ec5565b505050505092915050565b803580151581146106cf57600080fd5b600060208284031215611f16578081fd5b81356117cc81612764565b600060208284031215611f32578081fd5b81516117cc81612764565b60008060408385031215611f4f578081fd5b8235611f5a81612764565b91506020830135611f6a81612764565b809150509250929050565b600080600060608486031215611f89578081fd5b8335611f9481612764565b92506020840135611fa481612764565b929592945050506040919091013590565b60008060408385031215611fc7578182fd5b8235611fd281612764565b9150611fe18460208501611ef5565b90509250929050565b60008060408385031215611ffc578182fd5b823561200781612764565b946020939093013593505050565b60008060408385031215612027578182fd5b823567ffffffffffffffff8082111561203e578384fd5b61204a86838701611e7e565b9350602091508185013581811115612060578384fd5b85019050601f81018613612072578283fd5b8035612080611e9c82612744565b81815283810190838501858402850186018a101561209c578687fd5b8694505b838510156120be5780358352600194909401939185019185016120a0565b5080955050505050509250929050565b600080604083850312156120e0578182fd5b823567ffffffffffffffff8111156120f6578283fd5b61210285828601611e7e565b925050611fe18460208501611ef5565b600060208284031215612123578081fd5b813580151581146117cc578182fd5b600060208284031215612143578081fd5b5035919050565b6000806040838503121561215c578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b818110156121cf578581018301518582016040015282016121b3565b818111156121e05783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600f908201526e109bdd08189b1858dadb1a5cdd1959608a1b604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601d908201527f54617820666565206d757374206265206c657373207468616e20323525000000604082015260600190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526017908201527f54726164696e67206973206e6f74206c69766520796574000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b602080825260119082015270496e636f7272656374206c656e6774687360781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601b908201527f4d6178205472616e73666572204c696d69742045786365656473210000000000604082015260600190565b6020808252601b908201527f4d6178204163636f756e7420416d6f756e742045786365656473210000000000604082015260600190565b6020808252601e908201527f5465616d20666565206d757374206265206c657373207468616e203235250000604082015260600190565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156126715784516001600160a01b03168352938301939183019160010161264c565b50506001600160a01b03969096166060850152505050608001529392505050565b918252602082015260400190565b9c8d5260208d019b909b5260408c019990995260608b019790975260808a019590955260a089019390935260c088019190915260e08701526101008601526001600160a01b03908116610120860152908116610140850152908116610160840152166101808201526101a00190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561273c57600080fd5b604052919050565b600067ffffffffffffffff82111561275a578081fd5b5060209081020190565b6001600160a01b0381168114610a8057600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b58d46b5eba999da1f27cb10757284922a6839f9be1e8e00a9f722e7d861ff3764736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000087000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000b5e620f4800000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002ebef38c2c18c166cc4178b99955313b877494fc000000000000000000000000bac85faefe6aff9e3d5aec43447bace7e743f68c000000000000000000000000e8259462dd7853e27ce66f3f43627be7a3961db4000000000000000000000000000000000000000000000000000000000000000746726565646f6d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044652454500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Freedom
Arg [1] : _symbol (string): FREE
Arg [2] : _properties (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000087
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [8] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [9] : 0000000000000000000000000000000000000000000000000000b5e620f48000
Arg [10] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [11] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [12] : 0000000000000000000000002ebef38c2c18c166cc4178b99955313b877494fc
Arg [13] : 000000000000000000000000bac85faefe6aff9e3d5aec43447bace7e743f68c
Arg [14] : 000000000000000000000000e8259462dd7853e27ce66f3f43627be7a3961db4
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [16] : 46726565646f6d00000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [18] : 4652454500000000000000000000000000000000000000000000000000000000


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