ETH Price: $2,290.47 (-5.37%)

Token

XOriginalVision (XOV)
 

Overview

Max Total Supply

1,000,000,000 XOV

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
164,538.021580069519419835 XOV

Value
$0.00
0x52ce49801f07a5f263f75bf2fa39f398107b8209
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:
XOV

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-03
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.15;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _createInitialSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }
}

contract Ownable is Context {
    address private _owner;

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

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() external virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IDexRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

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

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

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

contract XOV is ERC20, Ownable {


    IDexRouter public dexRouter;
    address public lpPair;

    bool private swapping;
    uint256 public swapTokensAtAmount;

    address operationsAddress;

    uint256 public tradingActiveBlock = 0; 
    uint256 public blockForPenaltyEnd;

    bool public tradingActive = false;
    bool public swapEnabled = false;


    uint256 public buyTotalFees;
    uint256 public buyOperationsFee;

    uint256 public sellTotalFees;
    uint256 public sellOperationsFee;

    uint256 public tokensForOperations;

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;


    mapping (address => bool) public automatedMarketMakerPairs;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event EnabledTrading();

    event RemovedLimits();

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event UpdatedOperationsAddress(address indexed newWallet);

    event MaxTransactionExclusion(address _address, bool excluded);


    event OwnerForcedSwapBack(uint256 timestamp);


    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("XOriginalVision", "XOV") {

        address newOwner = msg.sender; // can leave alone if owner is deployer.

        IDexRouter _dexRouter = IDexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        dexRouter = _dexRouter;

        // create pair
        lpPair = IDexFactory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH());
        _excludeFromMaxTransaction(address(lpPair), true);
        _setAutomatedMarketMakerPair(address(lpPair), true);

        uint256 totalSupply = 1000000000 * 1e18;

        swapTokensAtAmount = totalSupply * 5 / 10000;

        buyOperationsFee = 2;

        buyTotalFees = buyOperationsFee;

        sellOperationsFee = 2;

        sellTotalFees = sellOperationsFee;

        _excludeFromMaxTransaction(newOwner, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);

        excludeFromFees(newOwner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        operationsAddress = address(newOwner);

        _createInitialSupply(newOwner, totalSupply);
        transferOwnership(newOwner);
    }

    receive() external payable {}

    // only enable if no plan to airdrop

    function enableTrading() external onlyOwner {
        require(!tradingActive, "Cannot reenable trading");
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
        blockForPenaltyEnd = tradingActiveBlock + 40;
        emit EnabledTrading();
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 1 / 1000, "Swap amount cannot be higher than 0.1% total supply.");
        swapTokensAtAmount = newAmount;
    }

    function _excludeFromMaxTransaction(address updAds, bool isExcluded) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }


    function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner {
        if(!isEx){
            require(updAds != lpPair, "Cannot remove uniswap pair from max txn");
        }
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != lpPair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        _excludeFromMaxTransaction(pair, value);

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateBuyFees(uint256 _operationsFee) external onlyOwner {
        buyOperationsFee = _operationsFee;
        buyTotalFees = buyOperationsFee;
        require(buyTotalFees <= 100, "Must keep fees at 100% or less");
    }

    function updateSellFees(uint256 _operationsFee) external onlyOwner {
        sellOperationsFee = _operationsFee;
        sellTotalFees = sellOperationsFee;
        require(sellTotalFees <= 100, "Must keep fees at 100% or less");
    }


    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function _transfer(address from, address to, uint256 amount) internal override {

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "amount must be greater than 0");

        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = true;
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            if(earlyBuyPenaltyInEffect() && automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to] && buyTotalFees > 0){
                fees = amount * 20 / 100;
                tokensForOperations += fees * buyOperationsFee / buyTotalFees;
            }

            // on sell
            else if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees / 100;
                tokensForOperations += fees * sellOperationsFee / sellTotalFees;
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * buyTotalFees / 100;
                tokensForOperations += fees * buyOperationsFee / buyTotalFees;
            }

            if(fees > 0){
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function earlyBuyPenaltyInEffect() public view returns (bool){
        return block.number < blockForPenaltyEnd;
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), tokenAmount);

        // make the swap
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(dexRouter), tokenAmount);

        // add the liquidity
        dexRouter.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0xdead),
            block.timestamp
        );
    }

    function swapBack() private {


        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForOperations ;

        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 20){
            contractBalance = swapTokensAtAmount * 20;
        }

        bool success;

        swapTokensForEth(contractBalance);
        tokensForOperations = 0;

        (success,) = address(operationsAddress).call{value: address(this).balance}("");
    }

    function setOperationsAddress(address _operationsAddress) external onlyOwner {
        require(_operationsAddress != address(0), "_operationsAddress address cannot be 0");
        operationsAddress = payable(_operationsAddress);
    }


    function forceSwapBack() external onlyOwner {
        require(balanceOf(address(this)) >= swapTokensAtAmount, "Can only swap when token amount is at or higher than restriction");
        swapping = true;
        swapBack();
        swapping = false;
        emit OwnerForcedSwapBack(block.timestamp);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedOperationsAddress","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockForPenaltyEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyBuyPenaltyInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsAddress","type":"address"}],"name":"setOperationsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","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":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600a55600c805461ffff191690553480156200002157600080fd5b506040518060400160405280600f81526020016e2c27b934b3b4b730b62b34b9b4b7b760891b815250604051806040016040528060038152602001622c27ab60e91b81525081600390816200007791906200076a565b5060046200008682826200076a565b50505060006200009b6200036260201b60201c565b600580546001600160a01b0319166001600160a01b03831690811790915560405191925090600090600080516020620027d3833981519152908290a350600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051339291829163c45a0155916004808201926020929091908290030181865afa15801562000142573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000168919062000836565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dc919062000836565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000250919062000836565b600780546001600160a01b0319166001600160a01b039290921691821790556200027c90600162000366565b60075462000295906001600160a01b03166001620003c9565b6b033b2e3c9fd0803ce8000000612710620002b28260056200087e565b620002be9190620008a0565b6008556002600e819055600d8190556010819055600f55620002e283600162000366565b620002ef30600162000366565b620002fe61dead600162000366565b6200030b83600162000435565b6200031830600162000435565b6200032761dead600162000435565b600980546001600160a01b0319166001600160a01b0385161790556200034e8382620004e3565b6200035983620005c8565b505050620008de565b3390565b6001600160a01b038216600081815260136020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382166000908152601460205260409020805460ff1916821515179055620003f9828262000366565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620004845760405162461bcd60e51b81526020600482018190526024820152600080516020620027b383398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200053b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200047b565b80600260008282546200054f9190620008c3565b90915550506001600160a01b038216600090815260208190526040812080548392906200057e908490620008c3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620006135760405162461bcd60e51b81526020600482018190526024820152600080516020620027b383398151915260448201526064016200047b565b6001600160a01b0381166200067a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200047b565b6005546040516001600160a01b03808416921690600080516020620027d383398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006f057607f821691505b6020821081036200071157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200076557600081815260208120601f850160051c81016020861015620007405750805b601f850160051c820191505b8181101562000761578281556001016200074c565b5050505b505050565b81516001600160401b03811115620007865762000786620006c5565b6200079e81620007978454620006db565b8462000717565b602080601f831160018114620007d65760008415620007bd5750858301515b600019600386901b1c1916600185901b17855562000761565b600085815260208120601f198616915b828110156200080757888601518255948401946001909101908401620007e6565b5085821015620008265787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200084957600080fd5b81516001600160a01b03811681146200086157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200089b576200089b62000868565b500290565b600082620008be57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008d957620008d962000868565b500190565b611ec580620008ee6000396000f3fe6080604052600436106102295760003560e01c80637571336a11610123578063bbc0c742116100ab578063e2f456051161006f578063e2f4560514610671578063eba4c33314610687578063ee40166e146106a7578063f2fde38b146106bd578063fb002c97146106dd57600080fd5b8063bbc0c742146105bb578063c0246668146105d5578063d257b34f146105f5578063d85ba06314610615578063dd62ed3e1461062b57600080fd5b80639a7a23d6116100f25780639a7a23d614610515578063a457c2d714610535578063a62068ce14610555578063a9059cbb1461056b578063b62496f51461058b57600080fd5b80637571336a146104ad5780638a8c523c146104cd5780638da5cb5b146104e257806395d89b411461050057600080fd5b8063499b8394116101b15780636a486a8e116101755780636a486a8e1461040d5780636ddd17131461042357806370a0823114610442578063715018a61461047857806371fc46881461048d57600080fd5b8063499b8394146103935780634f77f6c0146103b557806351f205e4146103cb57806358a6d531146103e05780635a139dd4146103f757600080fd5b806318160ddd116101f857806318160ddd146102f857806323b872dd14610317578063313ce567146103375780633950935114610353578063452ed4f11461037357600080fd5b806306fdde03146102355780630758d92414610260578063095ea7b31461029857806310d5de53146102c857600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106f3565b6040516102579190611aee565b60405180910390f35b34801561026c57600080fd5b50600654610280906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b3480156102a457600080fd5b506102b86102b3366004611b58565b610785565b6040519015158152602001610257565b3480156102d457600080fd5b506102b86102e3366004611b84565b60136020526000908152604090205460ff1681565b34801561030457600080fd5b506002545b604051908152602001610257565b34801561032357600080fd5b506102b8610332366004611ba8565b61079b565b34801561034357600080fd5b5060405160128152602001610257565b34801561035f57600080fd5b506102b861036e366004611b58565b61084a565b34801561037f57600080fd5b50600754610280906001600160a01b031681565b34801561039f57600080fd5b506103b36103ae366004611b84565b610886565b005b3480156103c157600080fd5b5061030960105481565b3480156103d757600080fd5b506103b3610937565b3480156103ec57600080fd5b50600b5443106102b8565b34801561040357600080fd5b50610309600e5481565b34801561041957600080fd5b50610309600f5481565b34801561042f57600080fd5b50600c546102b890610100900460ff1681565b34801561044e57600080fd5b5061030961045d366004611b84565b6001600160a01b031660009081526020819052604090205490565b34801561048457600080fd5b506103b3610a47565b34801561049957600080fd5b506103b36104a8366004611be9565b610abb565b3480156104b957600080fd5b506103b36104c8366004611c02565b610b43565b3480156104d957600080fd5b506103b3610c0b565b3480156104ee57600080fd5b506005546001600160a01b0316610280565b34801561050c57600080fd5b5061024a610cd6565b34801561052157600080fd5b506103b3610530366004611c02565b610ce5565b34801561054157600080fd5b506102b8610550366004611b58565b610dd9565b34801561056157600080fd5b50610309600b5481565b34801561057757600080fd5b506102b8610586366004611b58565b610e72565b34801561059757600080fd5b506102b86105a6366004611b84565b60146020526000908152604090205460ff1681565b3480156105c757600080fd5b50600c546102b89060ff1681565b3480156105e157600080fd5b506103b36105f0366004611c02565b610e7f565b34801561060157600080fd5b506103b3610610366004611be9565b610f08565b34801561062157600080fd5b50610309600d5481565b34801561063757600080fd5b50610309610646366004611c40565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067d57600080fd5b5061030960085481565b34801561069357600080fd5b506103b36106a2366004611be9565b611053565b3480156106b357600080fd5b50610309600a5481565b3480156106c957600080fd5b506103b36106d8366004611b84565b6110d8565b3480156106e957600080fd5b5061030960115481565b60606003805461070290611c6e565b80601f016020809104026020016040519081016040528092919081815260200182805461072e90611c6e565b801561077b5780601f106107505761010080835404028352916020019161077b565b820191906000526020600020905b81548152906001019060200180831161075e57829003601f168201915b5050505050905090565b60006107923384846111c3565b50600192915050565b60006107a88484846112e7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108325760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61083f85338584036111c3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610792918590610881908690611cbe565b6111c3565b6005546001600160a01b031633146108b05760405162461bcd60e51b815260040161082990611cd6565b6001600160a01b0381166109155760405162461bcd60e51b815260206004820152602660248201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60448201526507420626520360d41b6064820152608401610829565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109615760405162461bcd60e51b815260040161082990611cd6565b6008543060009081526020819052604090205410156109ea576040805162461bcd60e51b81526020600482015260248101919091527f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060448201527f6973206174206f7220686967686572207468616e207265737472696374696f6e6064820152608401610829565b6007805460ff60a01b1916600160a01b179055610a056116fe565b6007805460ff60a01b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b6005546001600160a01b03163314610a715760405162461bcd60e51b815260040161082990611cd6565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ae55760405162461bcd60e51b815260040161082990611cd6565b600e819055600d8190556064811115610b405760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c65737300006044820152606401610829565b50565b6005546001600160a01b03163314610b6d5760405162461bcd60e51b815260040161082990611cd6565b80610be0576007546001600160a01b0390811690831603610be05760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610829565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c355760405162461bcd60e51b815260040161082990611cd6565b600c5460ff1615610c885760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610829565b600c805461ffff191661010117905543600a819055610ca8906028611cbe565b600b556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb790600090a1565b60606004805461070290611c6e565b6005546001600160a01b03163314610d0f5760405162461bcd60e51b815260040161082990611cd6565b6007546001600160a01b0390811690831603610d935760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610829565b610d9d82826117b6565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610829565b610e6833858584036111c3565b5060019392505050565b60006107923384846112e7565b6005546001600160a01b03163314610ea95760405162461bcd60e51b815260040161082990611cd6565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f325760405162461bcd60e51b815260040161082990611cd6565b620186a0610f3f60025490565b610f4a906001611d0b565b610f549190611d2a565b811015610fc15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610829565b6103e8610fcd60025490565b610fd8906001611d0b565b610fe29190611d2a565b81111561104e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610829565b600855565b6005546001600160a01b0316331461107d5760405162461bcd60e51b815260040161082990611cd6565b6010819055600f8190556064811115610b405760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c65737300006044820152606401610829565b6005546001600160a01b031633146111025760405162461bcd60e51b815260040161082990611cd6565b6001600160a01b0381166111675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610829565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166112255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610829565b6001600160a01b0382166112865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610829565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661130d5760405162461bcd60e51b815260040161082990611d4c565b6001600160a01b0382166113335760405162461bcd60e51b815260040161082990611d91565b600081116113835760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610829565b600c5460ff16611411576001600160a01b03831660009081526012602052604090205460ff16806113cc57506001600160a01b03821660009081526012602052604090205460ff165b6114115760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610829565b306000908152602081905260409020546008548110801590819061143c5750600c54610100900460ff165b80156114525750600754600160a01b900460ff16155b801561147757506001600160a01b03851660009081526014602052604090205460ff16155b801561149c57506001600160a01b03851660009081526012602052604090205460ff16155b80156114c157506001600160a01b03841660009081526012602052604090205460ff16155b156114ef576007805460ff60a01b1916600160a01b1790556114e16116fe565b6007805460ff60a01b191690555b6001600160a01b03851660009081526012602052604090205460019060ff168061153157506001600160a01b03851660009081526012602052604090205460ff165b1561153a575060005b600081156116ea57600b544310801561156b57506001600160a01b03871660009081526014602052604090205460ff165b801561159057506001600160a01b03861660009081526014602052604090205460ff16155b801561159e57506000600d54115b156115f35760646115b0866014611d0b565b6115ba9190611d2a565b9050600d54600e54826115cd9190611d0b565b6115d79190611d2a565b601160008282546115e89190611cbe565b909155506116cc9050565b6001600160a01b03861660009081526014602052604090205460ff16801561161d57506000600f54115b1561164f576064600f54866116329190611d0b565b61163c9190611d2a565b9050600f54601054826115cd9190611d0b565b6001600160a01b03871660009081526014602052604090205460ff16801561167957506000600d54115b156116cc576064600d548661168e9190611d0b565b6116989190611d2a565b9050600d54600e54826116ab9190611d0b565b6116b59190611d2a565b601160008282546116c69190611cbe565b90915550505b80156116dd576116dd8730836117e4565b6116e78186611dd4565b94505b6116f58787876117e4565b50505050505050565b3060009081526020819052604090205460115481158061171c575080155b15611725575050565b600854611733906014611d0b565b82111561174b57600854611748906014611d0b565b91505b600061175683611939565b600060118190556009546040516001600160a01b039091169147919081818185875af1925050503d80600081146117a9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ae565b606091505b505050505050565b6001600160a01b0382166000908152601460205260409020805460ff1916821515179055610d9d8282611a8b565b6001600160a01b03831661180a5760405162461bcd60e51b815260040161082990611d4c565b6001600160a01b0382166118305760405162461bcd60e51b815260040161082990611d91565b6001600160a01b038316600090815260208190526040902054818110156118a85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610829565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118df908490611cbe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161192b91815260200190565b60405180910390a350505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196e5761196e611deb565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119eb9190611e01565b816001815181106119fe576119fe611deb565b6001600160a01b039283166020918202929092010152600654611a2491309116846111c3565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a5d908590600090869030904290600401611e1e565b600060405180830381600087803b158015611a7757600080fd5b505af11580156117ae573d6000803e3d6000fd5b6001600160a01b038216600081815260136020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b600060208083528351808285015260005b81811015611b1b57858101830151858201604001528201611aff565b81811115611b2d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610b4057600080fd5b60008060408385031215611b6b57600080fd5b8235611b7681611b43565b946020939093013593505050565b600060208284031215611b9657600080fd5b8135611ba181611b43565b9392505050565b600080600060608486031215611bbd57600080fd5b8335611bc881611b43565b92506020840135611bd881611b43565b929592945050506040919091013590565b600060208284031215611bfb57600080fd5b5035919050565b60008060408385031215611c1557600080fd5b8235611c2081611b43565b915060208301358015158114611c3557600080fd5b809150509250929050565b60008060408385031215611c5357600080fd5b8235611c5e81611b43565b91506020830135611c3581611b43565b600181811c90821680611c8257607f821691505b602082108103611ca257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cd157611cd1611ca8565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611d2557611d25611ca8565b500290565b600082611d4757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611de657611de6611ca8565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611e1357600080fd5b8151611ba181611b43565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e6e5784516001600160a01b031683529383019391830191600101611e49565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ee22a1afd432e9b0af414e8c71442c7ff76d554a17ad42842c03f697d7b4bf2a64736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x6080604052600436106102295760003560e01c80637571336a11610123578063bbc0c742116100ab578063e2f456051161006f578063e2f4560514610671578063eba4c33314610687578063ee40166e146106a7578063f2fde38b146106bd578063fb002c97146106dd57600080fd5b8063bbc0c742146105bb578063c0246668146105d5578063d257b34f146105f5578063d85ba06314610615578063dd62ed3e1461062b57600080fd5b80639a7a23d6116100f25780639a7a23d614610515578063a457c2d714610535578063a62068ce14610555578063a9059cbb1461056b578063b62496f51461058b57600080fd5b80637571336a146104ad5780638a8c523c146104cd5780638da5cb5b146104e257806395d89b411461050057600080fd5b8063499b8394116101b15780636a486a8e116101755780636a486a8e1461040d5780636ddd17131461042357806370a0823114610442578063715018a61461047857806371fc46881461048d57600080fd5b8063499b8394146103935780634f77f6c0146103b557806351f205e4146103cb57806358a6d531146103e05780635a139dd4146103f757600080fd5b806318160ddd116101f857806318160ddd146102f857806323b872dd14610317578063313ce567146103375780633950935114610353578063452ed4f11461037357600080fd5b806306fdde03146102355780630758d92414610260578063095ea7b31461029857806310d5de53146102c857600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106f3565b6040516102579190611aee565b60405180910390f35b34801561026c57600080fd5b50600654610280906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b3480156102a457600080fd5b506102b86102b3366004611b58565b610785565b6040519015158152602001610257565b3480156102d457600080fd5b506102b86102e3366004611b84565b60136020526000908152604090205460ff1681565b34801561030457600080fd5b506002545b604051908152602001610257565b34801561032357600080fd5b506102b8610332366004611ba8565b61079b565b34801561034357600080fd5b5060405160128152602001610257565b34801561035f57600080fd5b506102b861036e366004611b58565b61084a565b34801561037f57600080fd5b50600754610280906001600160a01b031681565b34801561039f57600080fd5b506103b36103ae366004611b84565b610886565b005b3480156103c157600080fd5b5061030960105481565b3480156103d757600080fd5b506103b3610937565b3480156103ec57600080fd5b50600b5443106102b8565b34801561040357600080fd5b50610309600e5481565b34801561041957600080fd5b50610309600f5481565b34801561042f57600080fd5b50600c546102b890610100900460ff1681565b34801561044e57600080fd5b5061030961045d366004611b84565b6001600160a01b031660009081526020819052604090205490565b34801561048457600080fd5b506103b3610a47565b34801561049957600080fd5b506103b36104a8366004611be9565b610abb565b3480156104b957600080fd5b506103b36104c8366004611c02565b610b43565b3480156104d957600080fd5b506103b3610c0b565b3480156104ee57600080fd5b506005546001600160a01b0316610280565b34801561050c57600080fd5b5061024a610cd6565b34801561052157600080fd5b506103b3610530366004611c02565b610ce5565b34801561054157600080fd5b506102b8610550366004611b58565b610dd9565b34801561056157600080fd5b50610309600b5481565b34801561057757600080fd5b506102b8610586366004611b58565b610e72565b34801561059757600080fd5b506102b86105a6366004611b84565b60146020526000908152604090205460ff1681565b3480156105c757600080fd5b50600c546102b89060ff1681565b3480156105e157600080fd5b506103b36105f0366004611c02565b610e7f565b34801561060157600080fd5b506103b3610610366004611be9565b610f08565b34801561062157600080fd5b50610309600d5481565b34801561063757600080fd5b50610309610646366004611c40565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067d57600080fd5b5061030960085481565b34801561069357600080fd5b506103b36106a2366004611be9565b611053565b3480156106b357600080fd5b50610309600a5481565b3480156106c957600080fd5b506103b36106d8366004611b84565b6110d8565b3480156106e957600080fd5b5061030960115481565b60606003805461070290611c6e565b80601f016020809104026020016040519081016040528092919081815260200182805461072e90611c6e565b801561077b5780601f106107505761010080835404028352916020019161077b565b820191906000526020600020905b81548152906001019060200180831161075e57829003601f168201915b5050505050905090565b60006107923384846111c3565b50600192915050565b60006107a88484846112e7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108325760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61083f85338584036111c3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610792918590610881908690611cbe565b6111c3565b6005546001600160a01b031633146108b05760405162461bcd60e51b815260040161082990611cd6565b6001600160a01b0381166109155760405162461bcd60e51b815260206004820152602660248201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60448201526507420626520360d41b6064820152608401610829565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109615760405162461bcd60e51b815260040161082990611cd6565b6008543060009081526020819052604090205410156109ea576040805162461bcd60e51b81526020600482015260248101919091527f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060448201527f6973206174206f7220686967686572207468616e207265737472696374696f6e6064820152608401610829565b6007805460ff60a01b1916600160a01b179055610a056116fe565b6007805460ff60a01b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b6005546001600160a01b03163314610a715760405162461bcd60e51b815260040161082990611cd6565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ae55760405162461bcd60e51b815260040161082990611cd6565b600e819055600d8190556064811115610b405760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c65737300006044820152606401610829565b50565b6005546001600160a01b03163314610b6d5760405162461bcd60e51b815260040161082990611cd6565b80610be0576007546001600160a01b0390811690831603610be05760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610829565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c355760405162461bcd60e51b815260040161082990611cd6565b600c5460ff1615610c885760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610829565b600c805461ffff191661010117905543600a819055610ca8906028611cbe565b600b556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb790600090a1565b60606004805461070290611c6e565b6005546001600160a01b03163314610d0f5760405162461bcd60e51b815260040161082990611cd6565b6007546001600160a01b0390811690831603610d935760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610829565b610d9d82826117b6565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610829565b610e6833858584036111c3565b5060019392505050565b60006107923384846112e7565b6005546001600160a01b03163314610ea95760405162461bcd60e51b815260040161082990611cd6565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f325760405162461bcd60e51b815260040161082990611cd6565b620186a0610f3f60025490565b610f4a906001611d0b565b610f549190611d2a565b811015610fc15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610829565b6103e8610fcd60025490565b610fd8906001611d0b565b610fe29190611d2a565b81111561104e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610829565b600855565b6005546001600160a01b0316331461107d5760405162461bcd60e51b815260040161082990611cd6565b6010819055600f8190556064811115610b405760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c65737300006044820152606401610829565b6005546001600160a01b031633146111025760405162461bcd60e51b815260040161082990611cd6565b6001600160a01b0381166111675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610829565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166112255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610829565b6001600160a01b0382166112865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610829565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661130d5760405162461bcd60e51b815260040161082990611d4c565b6001600160a01b0382166113335760405162461bcd60e51b815260040161082990611d91565b600081116113835760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610829565b600c5460ff16611411576001600160a01b03831660009081526012602052604090205460ff16806113cc57506001600160a01b03821660009081526012602052604090205460ff165b6114115760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610829565b306000908152602081905260409020546008548110801590819061143c5750600c54610100900460ff165b80156114525750600754600160a01b900460ff16155b801561147757506001600160a01b03851660009081526014602052604090205460ff16155b801561149c57506001600160a01b03851660009081526012602052604090205460ff16155b80156114c157506001600160a01b03841660009081526012602052604090205460ff16155b156114ef576007805460ff60a01b1916600160a01b1790556114e16116fe565b6007805460ff60a01b191690555b6001600160a01b03851660009081526012602052604090205460019060ff168061153157506001600160a01b03851660009081526012602052604090205460ff165b1561153a575060005b600081156116ea57600b544310801561156b57506001600160a01b03871660009081526014602052604090205460ff165b801561159057506001600160a01b03861660009081526014602052604090205460ff16155b801561159e57506000600d54115b156115f35760646115b0866014611d0b565b6115ba9190611d2a565b9050600d54600e54826115cd9190611d0b565b6115d79190611d2a565b601160008282546115e89190611cbe565b909155506116cc9050565b6001600160a01b03861660009081526014602052604090205460ff16801561161d57506000600f54115b1561164f576064600f54866116329190611d0b565b61163c9190611d2a565b9050600f54601054826115cd9190611d0b565b6001600160a01b03871660009081526014602052604090205460ff16801561167957506000600d54115b156116cc576064600d548661168e9190611d0b565b6116989190611d2a565b9050600d54600e54826116ab9190611d0b565b6116b59190611d2a565b601160008282546116c69190611cbe565b90915550505b80156116dd576116dd8730836117e4565b6116e78186611dd4565b94505b6116f58787876117e4565b50505050505050565b3060009081526020819052604090205460115481158061171c575080155b15611725575050565b600854611733906014611d0b565b82111561174b57600854611748906014611d0b565b91505b600061175683611939565b600060118190556009546040516001600160a01b039091169147919081818185875af1925050503d80600081146117a9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ae565b606091505b505050505050565b6001600160a01b0382166000908152601460205260409020805460ff1916821515179055610d9d8282611a8b565b6001600160a01b03831661180a5760405162461bcd60e51b815260040161082990611d4c565b6001600160a01b0382166118305760405162461bcd60e51b815260040161082990611d91565b6001600160a01b038316600090815260208190526040902054818110156118a85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610829565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118df908490611cbe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161192b91815260200190565b60405180910390a350505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196e5761196e611deb565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119eb9190611e01565b816001815181106119fe576119fe611deb565b6001600160a01b039283166020918202929092010152600654611a2491309116846111c3565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a5d908590600090869030904290600401611e1e565b600060405180830381600087803b158015611a7757600080fd5b505af11580156117ae573d6000803e3d6000fd5b6001600160a01b038216600081815260136020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b600060208083528351808285015260005b81811015611b1b57858101830151858201604001528201611aff565b81811115611b2d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610b4057600080fd5b60008060408385031215611b6b57600080fd5b8235611b7681611b43565b946020939093013593505050565b600060208284031215611b9657600080fd5b8135611ba181611b43565b9392505050565b600080600060608486031215611bbd57600080fd5b8335611bc881611b43565b92506020840135611bd881611b43565b929592945050506040919091013590565b600060208284031215611bfb57600080fd5b5035919050565b60008060408385031215611c1557600080fd5b8235611c2081611b43565b915060208301358015158114611c3557600080fd5b809150509250929050565b60008060408385031215611c5357600080fd5b8235611c5e81611b43565b91506020830135611c3581611b43565b600181811c90821680611c8257607f821691505b602082108103611ca257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cd157611cd1611ca8565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611d2557611d25611ca8565b500290565b600082611d4757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611de657611de6611ca8565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611e1357600080fd5b8151611ba181611b43565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e6e5784516001600160a01b031683529383019391830191600101611e49565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ee22a1afd432e9b0af414e8c71442c7ff76d554a17ad42842c03f697d7b4bf2a64736f6c634300080f0033

Deployed Bytecode Sourcemap

10057:9598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3946:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10099:27;;;;;;;;;;-1:-1:-1;10099:27:0;;;;-1:-1:-1;;;;;10099:27:0;;;;;;-1:-1:-1;;;;;798:32:1;;;780:51;;768:2;753:18;10099:27:0;616:221:1;4860:169:0;;;;;;;;;;-1:-1:-1;4860:169:0;;;;;:::i;:::-;;:::i;:::-;;;1463:14:1;;1456:22;1438:41;;1426:2;1411:18;4860:169:0;1298:187:1;10689:64:0;;;;;;;;;;-1:-1:-1;10689:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;4267:108;;;;;;;;;;-1:-1:-1;4355:12:0;;4267:108;;;1888:25:1;;;1876:2;1861:18;4267:108:0;1742:177:1;5037:492:0;;;;;;;;;;-1:-1:-1;5037:492:0;;;;;:::i;:::-;;:::i;4166:93::-;;;;;;;;;;-1:-1:-1;4166:93:0;;4249:2;2527:36:1;;2515:2;2500:18;4166:93:0;2385:184:1;5537:215:0;;;;;;;;;;-1:-1:-1;5537:215:0;;;;;:::i;:::-;;:::i;10133:21::-;;;;;;;;;;-1:-1:-1;10133:21:0;;;;-1:-1:-1;;;;;10133:21:0;;;19091:237;;;;;;;;;;-1:-1:-1;19091:237:0;;;;;:::i;:::-;;:::i;:::-;;10545:32;;;;;;;;;;;;;;;;19338:312;;;;;;;;;;;;;:::i;17304:120::-;;;;;;;;;;-1:-1:-1;17398:18:0;;17383:12;:33;17304:120;;10470:31;;;;;;;;;;;;;;;;10510:28;;;;;;;;;;;;;;;;10394:31;;;;;;;;;;-1:-1:-1;10394:31:0;;;;;;;;;;;4383:127;;;;;;;;;;-1:-1:-1;4383:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;4484:18:0;4457:7;4484:18;;;;;;;;;;;;4383:127;8581:150;;;;;;;;;;;;;:::i;14465:233::-;;;;;;;;;;-1:-1:-1;14465:233:0;;;;;:::i;:::-;;:::i;13646:260::-;;;;;;;;;;-1:-1:-1;13646:260:0;;;;;:::i;:::-;;:::i;12697:304::-;;;;;;;;;;;;;:::i;8367:79::-;;;;;;;;;;-1:-1:-1;8432:6:0;;-1:-1:-1;;;;;8432:6:0;8367:79;;4054:104;;;;;;;;;;;;;:::i;13914:295::-;;;;;;;;;;-1:-1:-1;13914:295:0;;;;;:::i;:::-;;:::i;5760:413::-;;;;;;;;;;-1:-1:-1;5760:413:0;;;;;:::i;:::-;;:::i;10312:33::-;;;;;;;;;;;;;;;;4518:175;;;;;;;;;;-1:-1:-1;4518:175:0;;;;;:::i;:::-;;:::i;10764:58::-;;;;;;;;;;-1:-1:-1;10764:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10354:33;;;;;;;;;;-1:-1:-1;10354:33:0;;;;;;;;14954:182;;;;;;;;;;-1:-1:-1;14954:182:0;;;;;:::i;:::-;;:::i;13071:350::-;;;;;;;;;;-1:-1:-1;13071:350:0;;;;;:::i;:::-;;:::i;10436:27::-;;;;;;;;;;;;;;;;4701:151;;;;;;;;;;-1:-1:-1;4701:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;4817:18:0;;;4790:7;4817:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4701:151;10191:33;;;;;;;;;;;;;;;;14706:238;;;;;;;;;;-1:-1:-1;14706:238:0;;;;;:::i;:::-;;:::i;10267:37::-;;;;;;;;;;;;;;;;8739:244;;;;;;;;;;-1:-1:-1;8739:244:0;;;;;:::i;:::-;;:::i;10586:34::-;;;;;;;;;;;;;;;;3946:100;4000:13;4033:5;4026:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3946:100;:::o;4860:169::-;4943:4;4960:39;175:10;4983:7;4992:6;4960:8;:39::i;:::-;-1:-1:-1;5017:4:0;4860:169;;;;:::o;5037:492::-;5177:4;5194:36;5204:6;5212:9;5223:6;5194:9;:36::i;:::-;-1:-1:-1;;;;;5270:19:0;;5243:24;5270:19;;;:11;:19;;;;;;;;175:10;5270:33;;;;;;;;5322:26;;;;5314:79;;;;-1:-1:-1;;;5314:79:0;;4368:2:1;5314:79:0;;;4350:21:1;4407:2;4387:18;;;4380:30;4446:34;4426:18;;;4419:62;-1:-1:-1;;;4497:18:1;;;4490:38;4545:19;;5314:79:0;;;;;;;;;5429:57;5438:6;175:10;5479:6;5460:16;:25;5429:8;:57::i;:::-;-1:-1:-1;5517:4:0;;5037:492;-1:-1:-1;;;;5037:492:0:o;5537:215::-;175:10;5625:4;5674:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5674:34:0;;;;;;;;;;5625:4;;5642:80;;5665:7;;5674:47;;5711:10;;5674:47;:::i;:::-;5642:8;:80::i;19091:237::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19187:32:0;::::1;19179:83;;;::::0;-1:-1:-1;;;19179:83:0;;5403:2:1;19179:83:0::1;::::0;::::1;5385:21:1::0;5442:2;5422:18;;;5415:30;5481:34;5461:18;;;5454:62;-1:-1:-1;;;5532:18:1;;;5525:36;5578:19;;19179:83:0::1;5201:402:1::0;19179:83:0::1;19273:17;:47:::0;;-1:-1:-1;;;;;;19273:47:0::1;-1:-1:-1::0;;;;;19273:47:0;;;::::1;::::0;;;::::1;::::0;;19091:237::o;19338:312::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;19429:18:::1;::::0;19419:4:::1;4457:7:::0;4484:18;;;;;;;;;;;19401:46:::1;;19393:123;;;::::0;;-1:-1:-1;;;19393:123:0;;5810:2:1;19393:123:0::1;::::0;::::1;5792:21:1::0;5829:18;;;5822:30;;;;5888:34;5868:18;;;5861:62;5959:34;5939:18;;;5932:62;6011:19;;19393:123:0::1;5608:428:1::0;19393:123:0::1;19527:8;:15:::0;;-1:-1:-1;;;;19527:15:0::1;-1:-1:-1::0;;;19527:15:0::1;::::0;;19553:10:::1;:8;:10::i;:::-;19574:8;:16:::0;;-1:-1:-1;;;;19574:16:0::1;::::0;;19606:36:::1;::::0;19626:15:::1;1888:25:1::0;;19606:36:0::1;::::0;1876:2:1;1861:18;19606:36:0::1;;;;;;;19338:312::o:0;8581:150::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;8674:6:::1;::::0;8653:40:::1;::::0;8690:1:::1;::::0;-1:-1:-1;;;;;8674:6:0::1;::::0;8653:40:::1;::::0;8690:1;;8653:40:::1;8704:6;:19:::0;;-1:-1:-1;;;;;;8704:19:0::1;::::0;;8581:150::o;14465:233::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;14542:16:::1;:33:::0;;;14586:12:::1;:31:::0;;;14652:3:::1;14636:19:::0;::::1;;14628:62;;;::::0;-1:-1:-1;;;14628:62:0;;6243:2:1;14628:62:0::1;::::0;::::1;6225:21:1::0;6282:2;6262:18;;;6255:30;6321:32;6301:18;;;6294:60;6371:18;;14628:62:0::1;6041:354:1::0;14628:62:0::1;14465:233:::0;:::o;13646:260::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;13742:4:::1;13738:104;;13780:6;::::0;-1:-1:-1;;;;;13780:6:0;;::::1;13770:16:::0;;::::1;::::0;13762:68:::1;;;::::0;-1:-1:-1;;;13762:68:0;;6602:2:1;13762:68:0::1;::::0;::::1;6584:21:1::0;6641:2;6621:18;;;6614:30;6680:34;6660:18;;;6653:62;-1:-1:-1;;;6731:18:1;;;6724:37;6778:19;;13762:68:0::1;6400:403:1::0;13762:68:0::1;-1:-1:-1::0;;;;;13852:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;13852:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;13646:260::o;12697:304::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;12761:13:::1;::::0;::::1;;12760:14;12752:50;;;::::0;-1:-1:-1;;;12752:50:0;;7010:2:1;12752:50:0::1;::::0;::::1;6992:21:1::0;7049:2;7029:18;;;7022:30;7088:25;7068:18;;;7061:53;7131:18;;12752:50:0::1;6808:347:1::0;12752:50:0::1;12813:13;:20:::0;;-1:-1:-1;;12844:18:0;;;;;12894:12:::1;12873:18;:33:::0;;;12938:23:::1;::::0;12959:2:::1;12938:23;:::i;:::-;12917:18;:44:::0;12977:16:::1;::::0;::::1;::::0;;;::::1;12697:304::o:0;4054:104::-;4110:13;4143:7;4136:14;;;;;:::i;13914:295::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;14023:6:::1;::::0;-1:-1:-1;;;;;14023:6:0;;::::1;14015:14:::0;;::::1;::::0;14007:84:::1;;;::::0;-1:-1:-1;;;14007:84:0;;7362:2:1;14007:84:0::1;::::0;::::1;7344:21:1::0;7401:2;7381:18;;;7374:30;7440:34;7420:18;;;7413:62;7511:27;7491:18;;;7484:55;7556:19;;14007:84:0::1;7160:421:1::0;14007:84:0::1;14104:41;14133:4;14139:5;14104:28;:41::i;:::-;14161:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;14161:40:0;::::1;::::0;::::1;::::0;;;::::1;13914:295:::0;;:::o;5760:413::-;175:10;5853:4;5897:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5897:34:0;;;;;;;;;;5950:35;;;;5942:85;;;;-1:-1:-1;;;5942:85:0;;7788:2:1;5942:85:0;;;7770:21:1;7827:2;7807:18;;;7800:30;7866:34;7846:18;;;7839:62;-1:-1:-1;;;7917:18:1;;;7910:35;7962:19;;5942:85:0;7586:401:1;5942:85:0;6063:67;175:10;6086:7;6114:15;6095:16;:34;6063:8;:67::i;:::-;-1:-1:-1;6161:4:0;;5760:413;-1:-1:-1;;;5760:413:0:o;4518:175::-;4604:4;4621:42;175:10;4645:9;4656:6;4621:9;:42::i;14954:182::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15039:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;15039:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;15094:34;;1438:41:1;;;15094:34:0::1;::::0;1411:18:1;15094:34:0::1;;;;;;;14954:182:::0;;:::o;13071:350::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;13195:6:::1;13175:13;4355:12:::0;;;4267:108;13175:13:::1;:17;::::0;13191:1:::1;13175:17;:::i;:::-;:26;;;;:::i;:::-;13162:9;:39;;13154:105;;;::::0;-1:-1:-1;;;13154:105:0;;8589:2:1;13154:105:0::1;::::0;::::1;8571:21:1::0;8628:2;8608:18;;;8601:30;8667:34;8647:18;;;8640:62;-1:-1:-1;;;8718:18:1;;;8711:51;8779:19;;13154:105:0::1;8387:417:1::0;13154:105:0::1;13311:4;13291:13;4355:12:::0;;;4267:108;13291:13:::1;:17;::::0;13307:1:::1;13291:17;:::i;:::-;:24;;;;:::i;:::-;13278:9;:37;;13270:102;;;::::0;-1:-1:-1;;;13270:102:0;;9011:2:1;13270:102:0::1;::::0;::::1;8993:21:1::0;9050:2;9030:18;;;9023:30;9089:34;9069:18;;;9062:62;-1:-1:-1;;;9140:18:1;;;9133:50;9200:19;;13270:102:0::1;8809:416:1::0;13270:102:0::1;13383:18;:30:::0;13071:350::o;14706:238::-;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;14784:17:::1;:34:::0;;;14829:13:::1;:33:::0;;;14898:3:::1;14881:20:::0;::::1;;14873:63;;;::::0;-1:-1:-1;;;14873:63:0;;6243:2:1;14873:63:0::1;::::0;::::1;6225:21:1::0;6282:2;6262:18;;;6255:30;6321:32;6301:18;;;6294:60;6371:18;;14873:63:0::1;6041:354:1::0;8739:244:0;8494:6;;-1:-1:-1;;;;;8494:6:0;175:10;8494:22;8486:67;;;;-1:-1:-1;;;8486:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8828:22:0;::::1;8820:73;;;::::0;-1:-1:-1;;;8820:73:0;;9432:2:1;8820:73:0::1;::::0;::::1;9414:21:1::0;9471:2;9451:18;;;9444:30;9510:34;9490:18;;;9483:62;-1:-1:-1;;;9561:18:1;;;9554:36;9607:19;;8820:73:0::1;9230:402:1::0;8820:73:0::1;8930:6;::::0;8909:38:::1;::::0;-1:-1:-1;;;;;8909:38:0;;::::1;::::0;8930:6:::1;::::0;8909:38:::1;::::0;8930:6:::1;::::0;8909:38:::1;8958:6;:17:::0;;-1:-1:-1;;;;;;8958:17:0::1;-1:-1:-1::0;;;;;8958:17:0;;;::::1;::::0;;;::::1;::::0;;8739:244::o;7660:380::-;-1:-1:-1;;;;;7796:19:0;;7788:68;;;;-1:-1:-1;;;7788:68:0;;9839:2:1;7788:68:0;;;9821:21:1;9878:2;9858:18;;;9851:30;9917:34;9897:18;;;9890:62;-1:-1:-1;;;9968:18:1;;;9961:34;10012:19;;7788:68:0;9637:400:1;7788:68:0;-1:-1:-1;;;;;7875:21:0;;7867:68;;;;-1:-1:-1;;;7867:68:0;;10244:2:1;7867:68:0;;;10226:21:1;10283:2;10263:18;;;10256:30;10322:34;10302:18;;;10295:62;-1:-1:-1;;;10373:18:1;;;10366:32;10415:19;;7867:68:0;10042:398:1;7867:68:0;-1:-1:-1;;;;;7948:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;8000:32;;1888:25:1;;;8000:32:0;;1861:18:1;8000:32:0;;;;;;;7660:380;;;:::o;15144:2152::-;-1:-1:-1;;;;;15244:18:0;;15236:68;;;;-1:-1:-1;;;15236:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15323:16:0;;15315:64;;;;-1:-1:-1;;;15315:64:0;;;;;;;:::i;:::-;15407:1;15398:6;:10;15390:52;;;;-1:-1:-1;;;15390:52:0;;11457:2:1;15390:52:0;;;11439:21:1;11496:2;11476:18;;;11469:30;11535:31;11515:18;;;11508:59;11584:18;;15390:52:0;11255:353:1;15390:52:0;15459:13;;;;15455:132;;-1:-1:-1;;;;;15496:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;15525:23:0;;;;;;:19;:23;;;;;;;;15496:52;15488:87;;;;-1:-1:-1;;;15488:87:0;;11815:2:1;15488:87:0;;;11797:21:1;11854:2;11834:18;;;11827:30;-1:-1:-1;;;11873:18:1;;;11866:52;11935:18;;15488:87:0;11613:346:1;15488:87:0;15648:4;15599:28;4484:18;;;;;;;;;;;15706;;15682:42;;;;;;;15740:22;;-1:-1:-1;15751:11:0;;;;;;;15740:22;:35;;;;-1:-1:-1;15767:8:0;;-1:-1:-1;;;15767:8:0;;;;15766:9;15740:35;:71;;;;-1:-1:-1;;;;;;15780:31:0;;;;;;:25;:31;;;;;;;;15779:32;15740:71;:101;;;;-1:-1:-1;;;;;;15816:25:0;;;;;;:19;:25;;;;;;;;15815:26;15740:101;:129;;;;-1:-1:-1;;;;;;15846:23:0;;;;;;:19;:23;;;;;;;;15845:24;15740:129;15737:236;;;15886:8;:15;;-1:-1:-1;;;;15886:15:0;-1:-1:-1;;;15886:15:0;;;15918:10;:8;:10::i;:::-;15945:8;:16;;-1:-1:-1;;;;15945:16:0;;;15737:236;-1:-1:-1;;;;;16103:25:0;;15985:12;16103:25;;;:19;:25;;;;;;16000:4;;16103:25;;;:52;;-1:-1:-1;;;;;;16132:23:0;;;;;;:19;:23;;;;;;;;16103:52;16100:99;;;-1:-1:-1;16182:5:0;16100:99;16211:12;16315:7;16312:931;;;17398:18;;17383:12;:33;16341:60;;;;-1:-1:-1;;;;;;16370:31:0;;;;;;:25;:31;;;;;;;;16341:60;:94;;;;-1:-1:-1;;;;;;16406:29:0;;;;;;:25;:29;;;;;;;;16405:30;16341:94;:114;;;;;16454:1;16439:12;;:16;16341:114;16338:758;;;16496:3;16482:11;:6;16491:2;16482:11;:::i;:::-;:17;;;;:::i;:::-;16475:24;;16567:12;;16548:16;;16541:4;:23;;;;:::i;:::-;:38;;;;:::i;:::-;16518:19;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;16338:758:0;;-1:-1:-1;16338:758:0;;-1:-1:-1;;;;;16644:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;16693:1;16677:13;;:17;16644:50;16640:456;;;16746:3;16730:13;;16721:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;16714:35;;16818:13;;16798:17;;16791:4;:24;;;;:::i;16640:456::-;-1:-1:-1;;;;;16894:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;16944:1;16929:12;;:16;16894:51;16891:205;;;16997:3;16982:12;;16973:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;16966:34;;17068:12;;17049:16;;17042:4;:23;;;;:::i;:::-;:38;;;;:::i;:::-;17019:19;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;16891:205:0;17115:8;;17112:89;;17143:42;17159:4;17173;17180;17143:15;:42::i;:::-;17217:14;17227:4;17217:14;;:::i;:::-;;;16312:931;17255:33;17271:4;17277:2;17281:6;17255:15;:33::i;:::-;15223:2073;;;;15144:2152;;;:::o;18530:553::-;18617:4;18573:23;4484:18;;;;;;;;;;;18662:19;;18698:20;;;:46;;-1:-1:-1;18722:22:0;;18698:46;18695:60;;;18747:7;;18530:553::o;18695:60::-;18788:18;;:23;;18809:2;18788:23;:::i;:::-;18770:15;:41;18767:113;;;18845:18;;:23;;18866:2;18845:23;:::i;:::-;18827:41;;18767:113;18892:12;18917:33;18934:15;18917:16;:33::i;:::-;18983:1;18961:19;:23;;;19018:17;;19010:65;;-1:-1:-1;;;;;19018:17:0;;;;19049:21;;19010:65;;18983:1;19010:65;19049:21;19018:17;19010:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18530:553:0:o;14217:240::-;-1:-1:-1;;;;;14300:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;14300:39:0;;;;;;;14352;14300:31;:39;14352:26;:39::i;6181:614::-;-1:-1:-1;;;;;6321:20:0;;6313:70;;;;-1:-1:-1;;;6313:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6402:23:0;;6394:71;;;;-1:-1:-1;;;6394:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6502:17:0;;6478:21;6502:17;;;;;;;;;;;6538:23;;;;6530:74;;;;-1:-1:-1;;;6530:74:0;;12506:2:1;6530:74:0;;;12488:21:1;12545:2;12525:18;;;12518:30;12584:34;12564:18;;;12557:62;-1:-1:-1;;;12635:18:1;;;12628:36;12681:19;;6530:74:0;12304:402:1;6530:74:0;-1:-1:-1;;;;;6640:17:0;;;:9;:17;;;;;;;;;;;6660:22;;;6640:42;;6704:20;;;;;;;;:30;;6676:6;;6640:9;6704:30;;6676:6;;6704:30;:::i;:::-;;;;;;;;6769:9;-1:-1:-1;;;;;6752:35:0;6761:6;-1:-1:-1;;;;;6752:35:0;;6780:6;6752:35;;;;1888:25:1;;1876:2;1861:18;;1742:177;6752:35:0;;;;;;;;6302:493;6181:614;;;:::o;17432:573::-;17584:16;;;17598:1;17584:16;;;;;;;;17560:21;;17584:16;;;;;;;;;;-1:-1:-1;17584:16:0;17560:40;;17629:4;17611;17616:1;17611:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;17611:23:0;;;:7;;;;;;;;;;:23;;;;17655:9;;:16;;;-1:-1:-1;;;17655:16:0;;;;:9;;;;;:14;;:16;;;;;17611:7;;17655:16;;;;;:9;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17645:4;17650:1;17645:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;17645:26:0;;;:7;;;;;;;;;:26;17716:9;;17684:56;;17701:4;;17716:9;17728:11;17684:8;:56::i;:::-;17779:9;;:218;;-1:-1:-1;;;17779:218:0;;-1:-1:-1;;;;;17779:9:0;;;;:60;;:218;;17854:11;;17779:9;;17924:4;;17951;;17971:15;;17779:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13429:207;-1:-1:-1;;;;;13517:39:0;;;;;;:31;:39;;;;;;;;;:52;;-1:-1:-1;;13517:52:0;;;;;;;;;;13585:43;;14384:51:1;;;14451:18;;;14444:50;13585:43:0;;14357:18:1;13585:43:0;;;;;;;13429:207;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;842:131::-;-1:-1:-1;;;;;917:31:1;;907:42;;897:70;;963:1;960;953:12;978:315;1046:6;1054;1107:2;1095:9;1086:7;1082:23;1078:32;1075:52;;;1123:1;1120;1113:12;1075:52;1162:9;1149:23;1181:31;1206:5;1181:31;:::i;:::-;1231:5;1283:2;1268:18;;;;1255:32;;-1:-1:-1;;;978:315:1:o;1490:247::-;1549:6;1602:2;1590:9;1581:7;1577:23;1573:32;1570:52;;;1618:1;1615;1608:12;1570:52;1657:9;1644:23;1676:31;1701:5;1676:31;:::i;:::-;1726:5;1490:247;-1:-1:-1;;;1490:247:1:o;1924:456::-;2001:6;2009;2017;2070:2;2058:9;2049:7;2045:23;2041:32;2038:52;;;2086:1;2083;2076:12;2038:52;2125:9;2112:23;2144:31;2169:5;2144:31;:::i;:::-;2194:5;-1:-1:-1;2251:2:1;2236:18;;2223:32;2264:33;2223:32;2264:33;:::i;:::-;1924:456;;2316:7;;-1:-1:-1;;;2370:2:1;2355:18;;;;2342:32;;1924:456::o;2782:180::-;2841:6;2894:2;2882:9;2873:7;2869:23;2865:32;2862:52;;;2910:1;2907;2900:12;2862:52;-1:-1:-1;2933:23:1;;2782:180;-1:-1:-1;2782:180:1:o;2967:416::-;3032:6;3040;3093:2;3081:9;3072:7;3068:23;3064:32;3061:52;;;3109:1;3106;3099:12;3061:52;3148:9;3135:23;3167:31;3192:5;3167:31;:::i;:::-;3217:5;-1:-1:-1;3274:2:1;3259:18;;3246:32;3316:15;;3309:23;3297:36;;3287:64;;3347:1;3344;3337:12;3287:64;3370:7;3360:17;;;2967:416;;;;;:::o;3388:388::-;3456:6;3464;3517:2;3505:9;3496:7;3492:23;3488:32;3485:52;;;3533:1;3530;3523:12;3485:52;3572:9;3559:23;3591:31;3616:5;3591:31;:::i;:::-;3641:5;-1:-1:-1;3698:2:1;3683:18;;3670:32;3711:33;3670:32;3711:33;:::i;3781:380::-;3860:1;3856:12;;;;3903;;;3924:61;;3978:4;3970:6;3966:17;3956:27;;3924:61;4031:2;4023:6;4020:14;4000:18;3997:38;3994:161;;4077:10;4072:3;4068:20;4065:1;4058:31;4112:4;4109:1;4102:15;4140:4;4137:1;4130:15;3994:161;;3781:380;;;:::o;4575:127::-;4636:10;4631:3;4627:20;4624:1;4617:31;4667:4;4664:1;4657:15;4691:4;4688:1;4681:15;4707:128;4747:3;4778:1;4774:6;4771:1;4768:13;4765:39;;;4784:18;;:::i;:::-;-1:-1:-1;4820:9:1;;4707:128::o;4840:356::-;5042:2;5024:21;;;5061:18;;;5054:30;5120:34;5115:2;5100:18;;5093:62;5187:2;5172:18;;4840:356::o;7992:168::-;8032:7;8098:1;8094;8090:6;8086:14;8083:1;8080:21;8075:1;8068:9;8061:17;8057:45;8054:71;;;8105:18;;:::i;:::-;-1:-1:-1;8145:9:1;;7992:168::o;8165:217::-;8205:1;8231;8221:132;;8275:10;8270:3;8266:20;8263:1;8256:31;8310:4;8307:1;8300:15;8338:4;8335:1;8328:15;8221:132;-1:-1:-1;8367:9:1;;8165:217::o;10445:401::-;10647:2;10629:21;;;10686:2;10666:18;;;10659:30;10725:34;10720:2;10705:18;;10698:62;-1:-1:-1;;;10791:2:1;10776:18;;10769:35;10836:3;10821:19;;10445:401::o;10851:399::-;11053:2;11035:21;;;11092:2;11072:18;;;11065:30;11131:34;11126:2;11111:18;;11104:62;-1:-1:-1;;;11197:2:1;11182:18;;11175:33;11240:3;11225:19;;10851:399::o;11964:125::-;12004:4;12032:1;12029;12026:8;12023:34;;;12037:18;;:::i;:::-;-1:-1:-1;12074:9:1;;11964:125::o;12843:127::-;12904:10;12899:3;12895:20;12892:1;12885:31;12935:4;12932:1;12925:15;12959:4;12956:1;12949:15;12975:251;13045:6;13098:2;13086:9;13077:7;13073:23;13069:32;13066:52;;;13114:1;13111;13104:12;13066:52;13146:9;13140:16;13165:31;13190:5;13165:31;:::i;13231:980::-;13493:4;13541:3;13530:9;13526:19;13572:6;13561:9;13554:25;13598:2;13636:6;13631:2;13620:9;13616:18;13609:34;13679:3;13674:2;13663:9;13659:18;13652:31;13703:6;13738;13732:13;13769:6;13761;13754:22;13807:3;13796:9;13792:19;13785:26;;13846:2;13838:6;13834:15;13820:29;;13867:1;13877:195;13891:6;13888:1;13885:13;13877:195;;;13956:13;;-1:-1:-1;;;;;13952:39:1;13940:52;;14047:15;;;;14012:12;;;;13988:1;13906:9;13877:195;;;-1:-1:-1;;;;;;;14128:32:1;;;;14123:2;14108:18;;14101:60;-1:-1:-1;;;14192:3:1;14177:19;14170:35;14089:3;13231:980;-1:-1:-1;;;13231:980:1:o

Swarm Source

ipfs://ee22a1afd432e9b0af414e8c71442c7ff76d554a17ad42842c03f697d7b4bf2a
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.