ETH Price: $3,128.84 (-5.63%)
 

Overview

Max Total Supply

10,000,000 DRS

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
197,998.020000000005501749 DRS

Value
$0.00
0xe57F6659aaec601C885F955428e339EE8D482F00
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:
DAENERYS

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-19
*/

// https://daeneryseth.com/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
 


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

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

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

}

 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

        mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal 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);
    }

    
}
 
library SafeMath {
   
    function add(uint256 a, uint256 b) internal pure returns(uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

   
    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

   
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns(uint256) {
    
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

 
    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        return div(a, b, "SafeMath: division by 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;
    }

    
}
 
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() {
        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;
    }
}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns(int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns(int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns(uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns(int256) {
    int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}


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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns(uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns(uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns(uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns(uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns(uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns(uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    payable
    returns(uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
    external
    returns(uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    returns(uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
    external
    payable
    returns(uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns(uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns(uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns(uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns(uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns(uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns(uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        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 swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract DAENERYS is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable router;
    address public immutable uniswapV2Pair;


    // addresses
    address private marketingWallet;

    // limits 
    uint256 private maxBuyAmount;
    uint256 private maxSellAmount;   
    uint256 private maxWalletAmount;
 
    uint256 private thresholdSwapAmount;

    // status flags
    bool private isTrading = false;
    bool public swapEnabled = false;
    bool public isSwapping;


    // Blacklist Map
    mapping(address => bool) private _blacklist;


    struct Fees {
        uint256 buyTotalFees;
        uint256 buyMarketingFee;
        uint256 buyLiquidityFee;

        uint256 sellTotalFees;
        uint256 sellMarketingFee;
        uint256 sellLiquidityFee;
    }  

    Fees public _fees = Fees({
        buyTotalFees: 0,
        buyMarketingFee: 0,
        buyLiquidityFee: 0,

        sellTotalFees: 0,
        sellMarketingFee: 0,
        sellLiquidityFee: 0
    });
    
    

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;


    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedMaxWalletAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public marketPair;
 
  
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );


    constructor() ERC20("DAENERYS", "DRS") {
 
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);


        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        _isExcludedMaxTransactionAmount[address(router)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;        
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;

        _isExcludedMaxWalletAmount[owner()] = true;
        _isExcludedMaxWalletAmount[address(this)] = true;
        _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true;


        marketPair[address(uniswapV2Pair)] = true;

        approve(address(router), type(uint256).max);
        uint256 totalSupply = 1 * 1e7 * 1e18;

        maxBuyAmount = totalSupply / 100; // 1% maxTransactionAmountTxn
        maxSellAmount = totalSupply / 100; // 1% maxTransactionAmountTxn
        maxWalletAmount = totalSupply * 3 / 100; // 3% maxWallet
        thresholdSwapAmount = totalSupply * 1 / 10000; // 0.01% swap wallet

        _fees.buyMarketingFee = 1;
        _fees.buyLiquidityFee = 0;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee;

        _fees.sellMarketingFee = 1;
        _fees.sellLiquidityFee = 0;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee;


        marketingWallet = address(0x97b6e7686E767C5EB2934966fb9b2215A2A1A7b0); // set as marketing wallet

        // exclude from paying fees or having max transaction amount




        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

    }

    // once enabled, can never be turned off
    function swapTrading() external onlyOwner {
        isTrading = true;
        swapEnabled = true;
    }



    // change the minimum amount of tokens to sell from fees
    function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns(bool){
        thresholdSwapAmount = newAmount;
        return true;
    }


    function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) external onlyOwner {
        require(((totalSupply() * newMaxBuy) / 1000) >= (totalSupply() / 100), "Cannot set maxTransactionAmounts lower than 1%");
        require(((totalSupply() * newMaxSell) / 1000) >= (totalSupply() / 100), "Cannot set maxTransactionAmounts lower than 1%");
        maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
        maxSellAmount = (totalSupply() * newMaxSell) / 1000;
    }


    function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner {
        require(((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 100), "Cannot set maxWallet lower than 1%");
        maxWalletAmount = (totalSupply() * newPercentage) / 1000;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function toggleSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateFees(uint256 _marketingFeeBuy, uint256 _liquidityFeeBuy,uint256 _marketingFeeSell, uint256 _liquidityFeeSell) external onlyOwner{
        _fees.buyMarketingFee = _marketingFeeBuy;
        _fees.buyLiquidityFee = _liquidityFeeBuy;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee;

        _fees.sellMarketingFee = _marketingFeeSell;
        _fees.sellLiquidityFee = _liquidityFeeSell;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee;
        require(_fees.buyTotalFees <= 9, "Must keep fees at 9% or less");   
        require(_fees.sellTotalFees <= 9, "Must keep fees at 9% or less");
     
    }
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }
    function excludeFromWalletLimit(address account, bool excluded) public onlyOwner {
        _isExcludedMaxWalletAmount[account] = excluded;
    }
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }


    function setMarketPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from marketPair");
        marketPair[pair] = value;
    }


    function setMarketingWallet(address _marketingWallet) external onlyOwner{
        marketingWallet = _marketingWallet;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        
        require(!_blacklist[recipient] && !_blacklist[sender], "You have been blacklisted from transfering tokens");
        
        if (amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }

        if (
            sender != owner() &&
            recipient != owner() &&
            !isSwapping
        ) {

            if (!isTrading) {
                require(_isExcludedFromFees[sender] || _isExcludedFromFees[recipient], "Trading is not active.");
            }
            if (marketPair[sender] && !_isExcludedMaxTransactionAmount[recipient]) {
                require(amount <= maxBuyAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
            } 
            else if (marketPair[recipient] && !_isExcludedMaxTransactionAmount[sender]) {
                require(amount <= maxSellAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
            }

            if (!_isExcludedMaxWalletAmount[recipient]) {
                require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded");
            }

        }
 
        
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= thresholdSwapAmount;

        if (
            canSwap &&
            swapEnabled &&
            !isSwapping &&
            marketPair[recipient] &&
            !_isExcludedFromFees[sender] &&
            !_isExcludedFromFees[recipient]
        ) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }
 
        bool takeFee = !isSwapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            
            // on sell
            if (marketPair[recipient] && _fees.sellTotalFees > 0) {
                fees = amount.mul(_fees.sellTotalFees).div(100);
                tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees;
                tokensForMarketing += fees * _fees.sellMarketingFee / _fees.sellTotalFees;
            }
            // on buy
            else if (marketPair[sender] && _fees.buyTotalFees > 0) {
                fees = amount.mul(_fees.buyTotalFees).div(100);
                tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees;
                tokensForMarketing += fees * _fees.buyMarketingFee / _fees.buyTotalFees;
            }

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

            amount -= fees;

        }

        super._transfer(sender, recipient, amount);
    }

    function swapTokensForEth(uint256 tAmount) private {

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

        _approve(address(this), address(router), tAmount);

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

    }

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

        // add the liquidity
        router.addLiquidityETH{ value: ethAmount } (address(this), tAmount, 0, 0 , address(this), block.timestamp);
    }

    function swapBack() private {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 toSwap = tokensForLiquidity + tokensForMarketing ;
        bool success;

        if (contractTokenBalance == 0 || toSwap == 0) { return; }

        if (contractTokenBalance > thresholdSwapAmount * 20) {
            contractTokenBalance = thresholdSwapAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractTokenBalance * tokensForLiquidity / toSwap / 2;
        uint256 amountToSwapForETH = contractTokenBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
 
        uint256 newBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap);
        uint256 ethForLiquidity = newBalance - ethForMarketing;


        tokensForLiquidity = 0;
        tokensForMarketing = 0;


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity);
        }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","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"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","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":"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":[{"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":[{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600b805461ffff19169055610180604052600060c081905260e0819052610100819052610120819052610140819052610160819052600d819055600e819055600f819055601081905560118190556012553480156200005d57600080fd5b50604051806040016040528060088152602001674441454e4552595360c01b8152506040518060400160405280600381526020016244525360e81b8152508160039080519060200190620000b3929190620007ce565b508051620000c9906004906020840190620007ce565b5050506000620000de6200052060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200017d57600080fd5b505afa15801562000192573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b8919062000874565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020357600080fd5b505afa15801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e919062000874565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200028757600080fd5b505af11580156200029c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c2919062000874565b6001600160a01b0390811660a081905260805190911660009081526016602081905260408083208054600160ff19918216811790925594845290832080549094168117909355906200031c6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526016909252812080549092166001908117909255601590620003756005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080549092166001908117909255601790620003ce6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526017845282812080548616600190811790915560a05190921681528281208054861683179055601890935291208054909216179055608051620004459060001962000524565b506a084595161401484a0000006200045f606482620008b5565b6007556200046f606482620008b5565b600855606462000481826003620008d8565b6200048d9190620008b5565b600955612710620004a0826001620008d8565b620004ac9190620008b5565b600a556001600e8190556000600f819055620004c891620008fa565b600d556001601181905560006012819055620004e491620008fa565b601055600680546001600160a01b0319167397b6e7686e767c5eb2934966fb9b2215a2a1a7b01790556200051933826200053c565b5062000952565b3390565b6000620005333384846200063c565b50600192915050565b6001600160a01b038216620005985760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620005b4816002546200076460201b620010881790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005e79183906200108862000764821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620006a05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200058f565b6001600160a01b038216620007035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200058f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080620007738385620008fa565b905083811015620007c75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200058f565b9392505050565b828054620007dc9062000915565b90600052602060002090601f0160209004810192826200080057600085556200084b565b82601f106200081b57805160ff19168380011785556200084b565b828001600101855582156200084b579182015b828111156200084b5782518255916020019190600101906200082e565b50620008599291506200085d565b5090565b5b808211156200085957600081556001016200085e565b6000602082840312156200088757600080fd5b81516001600160a01b0381168114620007c757600080fd5b634e487b7160e01b600052601160045260246000fd5b600082620008d357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620008f557620008f56200089f565b500290565b600082198211156200091057620009106200089f565b500190565b600181811c908216806200092a57607f821691505b602082108114156200094c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516124c6620009a2600039600081816103a50152610ca601526000818161075a01528181611ced01528181611db501528181611df101528181611e6b0152611ec701526124c66000f3fe6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b6040516102419190611f82565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611fef565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461201b565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c5366004612038565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c36600461206a565b61094c565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a610352366004612085565b610990565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004611fef565b6109f9565b34801561039f57600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461201b565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a6104333660046120c6565b610a2f565b34801561044457600080fd5b506102ca61045336600461201b565b610a6a565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461201b565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab6565b3480156104ce57600080fd5b506102ca6104dd3660046120df565b610b2a565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b7f565b34801561052157600080fd5b5061026a61053036600461201b565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004611fef565b610b8e565b34801561057157600080fd5b5061026a610580366004611fef565b610bdd565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bea565b3480156105c657600080fd5b506102ca6105d53660046120df565b610c25565b3480156105e657600080fd5b506102ca6105f53660046120df565b610c7a565b34801561060657600080fd5b506102ca6106153660046120c6565b610d64565b34801561062657600080fd5b506102ca610635366004612114565b610e44565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad366004612146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f33660046120df565b610f48565b34801561070457600080fd5b506102ca61071336600461201b565b610f9d565b34801561072457600080fd5b5061026a61073336600461201b565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b60606003805461078b9061217f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061217f565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110ee565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f906121ba565b60405180910390fd5b606461086360025490565b61086d9190612205565b6103e88361087a60025490565b6108849190612227565b61088e9190612205565b10156108ac5760405162461bcd60e51b815260040161084f90612246565b60646108b760025490565b6108c19190612205565b6103e8826108ce60025490565b6108d89190612227565b6108e29190612205565b10156109005760405162461bcd60e51b815260040161084f90612246565b6103e88261090d60025490565b6109179190612227565b6109219190612205565b6007556103e88161093160025490565b61093b9190612227565b6109459190612205565b6008555050565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161084f906121ba565b600b80549115156101000261ff0019909216919091179055565b600061099d848484611213565b6109ef84336109ea85604051806060016040528060288152602001612469602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118b1565b6110ee565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ea9086611088565b6005546000906001600160a01b03163314610a5c5760405162461bcd60e51b815260040161084f906121ba565b50600a81905560015b919050565b6005546001600160a01b03163314610a945760405162461bcd60e51b815260040161084f906121ba565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae05760405162461bcd60e51b815260040161084f906121ba565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b9061217f565b600061081b33846109ea8560405180606001604052806025815260200161241e602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118b1565b600061081b338484611213565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161084f906121ba565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084f906121ba565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610d395760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b815260040161084f906121ba565b6064610d9960025490565b610da39190612205565b6103e882610db060025490565b610dba9190612227565b610dc49190612205565b1015610e1d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161084f565b6103e881610e2a60025490565b610e349190612227565b610e3e9190612205565b60095550565b6005546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161084f906121ba565b600e849055600f839055610e828385612294565b600d5560118290556012819055610e998183612294565b601055600d5460091015610eef5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b60105460091015610f425760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f725760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc75760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110958385612294565b9050838110156110e75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112395760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b03821661125f5760405162461bcd60e51b815260040161084f906122f1565b6001600160a01b0382166000908152600c602052604090205460ff161580156112a157506001600160a01b0383166000908152600c602052604090205460ff16155b6113075760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b8061131d57611318838360006118eb565b505050565b6005546001600160a01b0384811691161480159061134957506005546001600160a01b03838116911614155b801561135e5750600b5462010000900460ff16155b156115ed57600b5460ff166113f1576001600160a01b03831660009081526015602052604090205460ff16806113ac57506001600160a01b03821660009081526015602052604090205460ff165b6113f15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff16801561143257506001600160a01b03821660009081526016602052604090205460ff16155b156114ac576007548111156114a75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611563565b6001600160a01b03821660009081526018602052604090205460ff1680156114ed57506001600160a01b03831660009081526016602052604090205460ff16155b15611563576008548111156115635760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff166115ed576009546001600160a01b0383166000908152602081905260409020546115a99083612294565b11156115ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906116185750600b54610100900460ff165b801561162d5750600b5462010000900460ff16155b801561165157506001600160a01b03841660009081526018602052604090205460ff165b801561167657506001600160a01b03851660009081526015602052604090205460ff16155b801561169b57506001600160a01b03841660009081526015602052604090205460ff16155b156116c657600b805462ff00001916620100001790556116b96119f4565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061171357506001600160a01b03851660009081526015602052604090205460ff165b1561171c575060005b6000811561189d576001600160a01b03861660009081526018602052604090205460ff16801561174d575060105415155b156117d75760105461176d90606490611767908890611b93565b90611c12565b601054601254919250906117819083612227565b61178b9190612205565b6014600082825461179c9190612294565b90915550506010546011546117b19083612227565b6117bb9190612205565b601360008282546117cc9190612294565b9091555061187f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156118005750600d5415155b1561187f57600d5461181a90606490611767908890611b93565b600d54600f549192509061182e9083612227565b6118389190612205565b601460008282546118499190612294565b9091555050600d54600e5461185e9083612227565b6118689190612205565b601360008282546118799190612294565b90915550505b8015611890576118908730836118eb565b61189a8186612334565b94505b6118a88787876118eb565b50505050505050565b600081848411156118d55760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612334565b95945050505050565b6001600160a01b0383166119115760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b0382166119375760405162461bcd60e51b815260040161084f906122f1565b61197481604051806060016040528060268152602001612443602691396001600160a01b03861660009081526020819052604090205491906118b1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119a39082611088565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611206565b3060009081526020819052604081205490506000601354601454611a189190612294565b90506000821580611a27575081155b15611a3157505050565b600a54611a3f906014612227565b831115611a5757600a54611a54906014612227565b92505b600060028360145486611a6a9190612227565b611a749190612205565b611a7e9190612205565b90506000611a8c8583611c54565b905047611a9882611c96565b6000611aa44783611c54565b90506000611ac18761176760135485611b9390919063ffffffff16565b90506000611acf8284612334565b6000601481905560135590508515801590611aea5750600081115b15611b3357611af98682611e65565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b505050505050505050505050565b600082611ba25750600061081f565b6000611bae8385612227565b905082611bbb8583612205565b146110e75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f54565b60006110e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ccb57611ccb61234b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d4457600080fd5b505afa158015611d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7c9190612361565b81600181518110611d8f57611d8f61234b565b60200260200101906001600160a01b031690816001600160a01b031681525050611dda307f0000000000000000000000000000000000000000000000000000000000000000846110ee565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e2f90859060009086903090429060040161237e565b600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b505050505050565b611e90307f0000000000000000000000000000000000000000000000000000000000000000846110ee565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f4d91906123ef565b5050505050565b60008183611f755760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612205565b600060208083528351808285015260005b81811015611faf57858101830151858201604001528201611f93565b81811115611fc1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611fec57600080fd5b50565b6000806040838503121561200257600080fd5b823561200d81611fd7565b946020939093013593505050565b60006020828403121561202d57600080fd5b81356110e781611fd7565b6000806040838503121561204b57600080fd5b50508035926020909101359150565b80358015158114610a6557600080fd5b60006020828403121561207c57600080fd5b6110e78261205a565b60008060006060848603121561209a57600080fd5b83356120a581611fd7565b925060208401356120b581611fd7565b929592945050506040919091013590565b6000602082840312156120d857600080fd5b5035919050565b600080604083850312156120f257600080fd5b82356120fd81611fd7565b915061210b6020840161205a565b90509250929050565b6000806000806080858703121561212a57600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561215957600080fd5b823561216481611fd7565b9150602083013561217481611fd7565b809150509250929050565b600181811c9082168061219357607f821691505b602082108114156121b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261222257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612241576122416121ef565b500290565b6020808252602e908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526d206c6f776572207468616e20312560901b606082015260800190565b600082198211156122a7576122a76121ef565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612346576123466121ef565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237357600080fd5b81516110e781611fd7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ce5784516001600160a01b0316835293830193918301916001016123a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201048b9ecaf67eec42abbc81a8a4fb76e15adffa568e5c976810493b677757da964736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b6040516102419190611f82565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611fef565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461201b565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c5366004612038565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c36600461206a565b61094c565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a610352366004612085565b610990565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004611fef565b6109f9565b34801561039f57600080fd5b506103c77f0000000000000000000000005231c09bc2fce9d37bb0de7f876f1d327fba9c7a81565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461201b565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a6104333660046120c6565b610a2f565b34801561044457600080fd5b506102ca61045336600461201b565b610a6a565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461201b565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab6565b3480156104ce57600080fd5b506102ca6104dd3660046120df565b610b2a565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b7f565b34801561052157600080fd5b5061026a61053036600461201b565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004611fef565b610b8e565b34801561057157600080fd5b5061026a610580366004611fef565b610bdd565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bea565b3480156105c657600080fd5b506102ca6105d53660046120df565b610c25565b3480156105e657600080fd5b506102ca6105f53660046120df565b610c7a565b34801561060657600080fd5b506102ca6106153660046120c6565b610d64565b34801561062657600080fd5b506102ca610635366004612114565b610e44565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad366004612146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f33660046120df565b610f48565b34801561070457600080fd5b506102ca61071336600461201b565b610f9d565b34801561072457600080fd5b5061026a61073336600461201b565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60606003805461078b9061217f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061217f565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110ee565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f906121ba565b60405180910390fd5b606461086360025490565b61086d9190612205565b6103e88361087a60025490565b6108849190612227565b61088e9190612205565b10156108ac5760405162461bcd60e51b815260040161084f90612246565b60646108b760025490565b6108c19190612205565b6103e8826108ce60025490565b6108d89190612227565b6108e29190612205565b10156109005760405162461bcd60e51b815260040161084f90612246565b6103e88261090d60025490565b6109179190612227565b6109219190612205565b6007556103e88161093160025490565b61093b9190612227565b6109459190612205565b6008555050565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161084f906121ba565b600b80549115156101000261ff0019909216919091179055565b600061099d848484611213565b6109ef84336109ea85604051806060016040528060288152602001612469602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118b1565b6110ee565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ea9086611088565b6005546000906001600160a01b03163314610a5c5760405162461bcd60e51b815260040161084f906121ba565b50600a81905560015b919050565b6005546001600160a01b03163314610a945760405162461bcd60e51b815260040161084f906121ba565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae05760405162461bcd60e51b815260040161084f906121ba565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b9061217f565b600061081b33846109ea8560405180606001604052806025815260200161241e602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118b1565b600061081b338484611213565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161084f906121ba565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084f906121ba565b7f0000000000000000000000005231c09bc2fce9d37bb0de7f876f1d327fba9c7a6001600160a01b0316826001600160a01b03161415610d395760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b815260040161084f906121ba565b6064610d9960025490565b610da39190612205565b6103e882610db060025490565b610dba9190612227565b610dc49190612205565b1015610e1d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161084f565b6103e881610e2a60025490565b610e349190612227565b610e3e9190612205565b60095550565b6005546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161084f906121ba565b600e849055600f839055610e828385612294565b600d5560118290556012819055610e998183612294565b601055600d5460091015610eef5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b60105460091015610f425760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f725760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc75760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110958385612294565b9050838110156110e75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112395760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b03821661125f5760405162461bcd60e51b815260040161084f906122f1565b6001600160a01b0382166000908152600c602052604090205460ff161580156112a157506001600160a01b0383166000908152600c602052604090205460ff16155b6113075760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b8061131d57611318838360006118eb565b505050565b6005546001600160a01b0384811691161480159061134957506005546001600160a01b03838116911614155b801561135e5750600b5462010000900460ff16155b156115ed57600b5460ff166113f1576001600160a01b03831660009081526015602052604090205460ff16806113ac57506001600160a01b03821660009081526015602052604090205460ff165b6113f15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff16801561143257506001600160a01b03821660009081526016602052604090205460ff16155b156114ac576007548111156114a75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611563565b6001600160a01b03821660009081526018602052604090205460ff1680156114ed57506001600160a01b03831660009081526016602052604090205460ff16155b15611563576008548111156115635760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff166115ed576009546001600160a01b0383166000908152602081905260409020546115a99083612294565b11156115ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906116185750600b54610100900460ff165b801561162d5750600b5462010000900460ff16155b801561165157506001600160a01b03841660009081526018602052604090205460ff165b801561167657506001600160a01b03851660009081526015602052604090205460ff16155b801561169b57506001600160a01b03841660009081526015602052604090205460ff16155b156116c657600b805462ff00001916620100001790556116b96119f4565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061171357506001600160a01b03851660009081526015602052604090205460ff165b1561171c575060005b6000811561189d576001600160a01b03861660009081526018602052604090205460ff16801561174d575060105415155b156117d75760105461176d90606490611767908890611b93565b90611c12565b601054601254919250906117819083612227565b61178b9190612205565b6014600082825461179c9190612294565b90915550506010546011546117b19083612227565b6117bb9190612205565b601360008282546117cc9190612294565b9091555061187f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156118005750600d5415155b1561187f57600d5461181a90606490611767908890611b93565b600d54600f549192509061182e9083612227565b6118389190612205565b601460008282546118499190612294565b9091555050600d54600e5461185e9083612227565b6118689190612205565b601360008282546118799190612294565b90915550505b8015611890576118908730836118eb565b61189a8186612334565b94505b6118a88787876118eb565b50505050505050565b600081848411156118d55760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612334565b95945050505050565b6001600160a01b0383166119115760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b0382166119375760405162461bcd60e51b815260040161084f906122f1565b61197481604051806060016040528060268152602001612443602691396001600160a01b03861660009081526020819052604090205491906118b1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119a39082611088565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611206565b3060009081526020819052604081205490506000601354601454611a189190612294565b90506000821580611a27575081155b15611a3157505050565b600a54611a3f906014612227565b831115611a5757600a54611a54906014612227565b92505b600060028360145486611a6a9190612227565b611a749190612205565b611a7e9190612205565b90506000611a8c8583611c54565b905047611a9882611c96565b6000611aa44783611c54565b90506000611ac18761176760135485611b9390919063ffffffff16565b90506000611acf8284612334565b6000601481905560135590508515801590611aea5750600081115b15611b3357611af98682611e65565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b505050505050505050505050565b600082611ba25750600061081f565b6000611bae8385612227565b905082611bbb8583612205565b146110e75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f54565b60006110e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ccb57611ccb61234b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d4457600080fd5b505afa158015611d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7c9190612361565b81600181518110611d8f57611d8f61234b565b60200260200101906001600160a01b031690816001600160a01b031681525050611dda307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ee565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e2f90859060009086903090429060040161237e565b600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b505050505050565b611e90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ee565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f4d91906123ef565b5050505050565b60008183611f755760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612205565b600060208083528351808285015260005b81811015611faf57858101830151858201604001528201611f93565b81811115611fc1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611fec57600080fd5b50565b6000806040838503121561200257600080fd5b823561200d81611fd7565b946020939093013593505050565b60006020828403121561202d57600080fd5b81356110e781611fd7565b6000806040838503121561204b57600080fd5b50508035926020909101359150565b80358015158114610a6557600080fd5b60006020828403121561207c57600080fd5b6110e78261205a565b60008060006060848603121561209a57600080fd5b83356120a581611fd7565b925060208401356120b581611fd7565b929592945050506040919091013590565b6000602082840312156120d857600080fd5b5035919050565b600080604083850312156120f257600080fd5b82356120fd81611fd7565b915061210b6020840161205a565b90509250929050565b6000806000806080858703121561212a57600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561215957600080fd5b823561216481611fd7565b9150602083013561217481611fd7565b809150509250929050565b600181811c9082168061219357607f821691505b602082108114156121b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261222257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612241576122416121ef565b500290565b6020808252602e908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526d206c6f776572207468616e20312560901b606082015260800190565b600082198211156122a7576122a76121ef565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612346576123466121ef565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237357600080fd5b81516110e781611fd7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ce5784516001600160a01b0316835293830193918301916001016123a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201048b9ecaf67eec42abbc81a8a4fb76e15adffa568e5c976810493b677757da964736f6c63430008090033

Deployed Bytecode Sourcemap

21026:12174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4276:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6436:168;;;;;;;;;;-1:-1:-1;6436:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6436:168:0;1072:187:1;22296:63:0;;;;;;;;;;-1:-1:-1;22296:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25118:479;;;;;;;;;;-1:-1:-1;25118:479:0;;;;;:::i;:::-;;:::i;:::-;;5393:107;;;;;;;;;;-1:-1:-1;5480:12:0;;5393:107;;;1915:25:1;;;1903:2;1888:18;5393:107:0;1769:177:1;22140:33:0;;;;;;;;;;;;;;;;25974:101;;;;;;;;;;-1:-1:-1;25974:101:0;;;;;:::i;:::-;;:::i;22100:33::-;;;;;;;;;;;;;;;;7086:354;;;;;;;;;;-1:-1:-1;7086:354:0;;;;;:::i;:::-;;:::i;5236:92::-;;;;;;;;;;-1:-1:-1;5236:92:0;;5318:2;2904:36:1;;2892:2;2877:18;5236:92:0;2762:184:1;7849:217:0;;;;;;;;;;-1:-1:-1;7849:217:0;;;;;:::i;:::-;;:::i;21153:38::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;21153:38:0;2951:203:1;27557:125:0;;;;;;;;;;-1:-1:-1;27557:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27646:28:0;27622:4;27646:28;;;:19;:28;;;;;;;;;27557:125;24950:158;;;;;;;;;;-1:-1:-1;24950:158:0;;;;;:::i;:::-;;:::i;27424:125::-;;;;;;;;;;-1:-1:-1;27424:125:0;;;;;:::i;:::-;;:::i;21493:31::-;;;;;;;;;;-1:-1:-1;21493:31:0;;;;;;;;;;;5563:126;;;;;;;;;;-1:-1:-1;5563:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5663:18:0;5636:7;5663:18;;;;;;;;;;;;5563:126;13698:148;;;;;;;;;;;;;:::i;27064:144::-;;;;;;;;;;-1:-1:-1;27064:144:0;;;;;:::i;:::-;;:::i;13057:78::-;;;;;;;;;;-1:-1:-1;13121:6:0;;-1:-1:-1;;;;;13121:6:0;13057:78;;4494:103;;;;;;;;;;;;;:::i;22366:58::-;;;;;;;;;;-1:-1:-1;22366:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8569:268;;;;;;;;;;-1:-1:-1;8569:268:0;;;;;:::i;:::-;;:::i;5902:174::-;;;;;;;;;;-1:-1:-1;5902:174:0;;;;;:::i;:::-;;:::i;21531:22::-;;;;;;;;;;-1:-1:-1;21531:22:0;;;;;;;;;;;24770:106;;;;;;;;;;;;;:::i;26774:132::-;;;;;;;;;;-1:-1:-1;26774:132:0;;;;;:::i;:::-;;:::i;27218:196::-;;;;;;;;;;-1:-1:-1;27218:196:0;;;;;:::i;:::-;;:::i;25607:271::-;;;;;;;;;;-1:-1:-1;25607:271:0;;;;;:::i;:::-;;:::i;26083:679::-;;;;;;;;;;-1:-1:-1;26083:679:0;;;;;:::i;:::-;;:::i;21873:206::-;;;;;;;;;;-1:-1:-1;21873:206:0;;;;;;;;;;;;;;;;;;;;;;;;;4341:25:1;;;4397:2;4382:18;;4375:34;;;;4425:18;;;4418:34;;;;4483:2;4468:18;;4461:34;4526:3;4511:19;;4504:35;4570:3;4555:19;;4548:35;4328:3;4313:19;21873:206:0;4054:535:1;6139:150:0;;;;;;;;;;-1:-1:-1;6139:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6254:18:0;;;6227:7;6254:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6139:150;26912:146;;;;;;;;;;-1:-1:-1;26912:146:0;;;;;:::i;:::-;;:::i;14001:244::-;;;;;;;;;;-1:-1:-1;14001:244:0;;;;;:::i;:::-;;:::i;22582:42::-;;;;;;;;;;-1:-1:-1;22582:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21104;;;;;;;;;;;;;;;4276:99;4329:13;4362:5;4355:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4276:99;:::o;6436:168::-;6518:4;6535:39;3425:10;6558:7;6567:6;6535:8;:39::i;:::-;-1:-1:-1;6592:4:0;6436:168;;;;;:::o;25118:479::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;;;;;;;;;25280:3:::1;25264:13;5480:12:::0;;;5393:107;25264:13:::1;:19;;;;:::i;:::-;25254:4;25241:9;25225:13;5480:12:::0;;;5393:107;25225:13:::1;:25;;;;:::i;:::-;25224:34;;;;:::i;:::-;25223:61;;25215:120;;;;-1:-1:-1::0;;;25215:120:0::1;;;;;;;:::i;:::-;25412:3;25396:13;5480:12:::0;;;5393:107;25396:13:::1;:19;;;;:::i;:::-;25386:4;25372:10;25356:13;5480:12:::0;;;5393:107;25356:13:::1;:26;;;;:::i;:::-;25355:35;;;;:::i;:::-;25354:62;;25346:121;;;;-1:-1:-1::0;;;25346:121:0::1;;;;;;;:::i;:::-;25523:4;25510:9;25494:13;5480:12:::0;;;5393:107;25494:13:::1;:25;;;;:::i;:::-;25493:34;;;;:::i;:::-;25478:12;:49:::0;25585:4:::1;25571:10:::0;25555:13:::1;5480:12:::0;;;5393:107;25555:13:::1;:26;;;;:::i;:::-;25554:35;;;;:::i;:::-;25538:13;:51:::0;-1:-1:-1;;25118:479:0:o;25974:101::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;26046:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;26046:21:0;;::::1;::::0;;;::::1;::::0;;25974:101::o;7086:354::-;7225:4;7242:36;7252:6;7260:9;7271:6;7242:9;:36::i;:::-;7289:121;7298:6;3425:10;7320:89;7358:6;7320:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7320:19:0;;;;;;:11;:19;;;;;;;;3425:10;7320:33;;;;;;;;;;:37;:89::i;:::-;7289:8;:121::i;:::-;-1:-1:-1;7428:4:0;7086:354;;;;;:::o;7849:217::-;3425:10;7936:4;7985:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7985:34:0;;;;;;;;;;7936:4;;7953:83;;7976:7;;7985:50;;8024:10;7985:38;:50::i;24950:158::-;13268:6;;25031:4;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;-1:-1:-1;25047:19:0::1;:31:::0;;;25096:4:::1;13338:1;24950:158:::0;;;:::o;27424:125::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;27507:15:::1;:34:::0;;-1:-1:-1;;;;;;27507:34:0::1;-1:-1:-1::0;;;;;27507:34:0;;;::::1;::::0;;;::::1;::::0;;27424:125::o;13698:148::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;13789:6:::1;::::0;13768:40:::1;::::0;13805:1:::1;::::0;-1:-1:-1;;;;;13789:6:0::1;::::0;13768:40:::1;::::0;13805:1;;13768:40:::1;13819:6;:19:::0;;-1:-1:-1;;;;;;13819:19:0::1;::::0;;13698:148::o;27064:144::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27154:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27154:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27064:144::o;4494:103::-;4549:13;4582:7;4575:14;;;;;:::i;8569:268::-;8661:4;8678:129;3425:10;8701:7;8710:96;8749:15;8710:96;;;;;;;;;;;;;;;;;3425:10;8710:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8710:34:0;;;;;;;;;;;;:38;:96::i;5902:174::-;5987:4;6004:42;3425:10;6028:9;6039:6;6004:9;:42::i;24770:106::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;24823:9:::1;:16:::0;;-1:-1:-1;;24850:18:0;;;;;24770:106::o;26774:132::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26859:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26859:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26774:132::o;27218:196::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;27311:13:::1;-1:-1:-1::0;;;;;27303:21:0::1;:4;-1:-1:-1::0;;;;;27303:21:0::1;;;27295:76;;;::::0;-1:-1:-1;;;27295:76:0;;7112:2:1;27295:76:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:40;7291:19;;27295:76:0::1;6910:406:1::0;27295:76:0::1;-1:-1:-1::0;;;;;27382:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27382:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27218:196::o;25607:271::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;25760:3:::1;25744:13;5480:12:::0;;;5393:107;25744:13:::1;:19;;;;:::i;:::-;25734:4;25717:13;25701;5480:12:::0;;;5393:107;25701:13:::1;:29;;;;:::i;:::-;25700:38;;;;:::i;:::-;25699:65;;25691:112;;;::::0;-1:-1:-1;;;25691:112:0;;7523:2:1;25691:112:0::1;::::0;::::1;7505:21:1::0;7562:2;7542:18;;;7535:30;7601:34;7581:18;;;7574:62;-1:-1:-1;;;7652:18:1;;;7645:32;7694:19;;25691:112:0::1;7321:398:1::0;25691:112:0::1;25866:4;25849:13;25833;5480:12:::0;;;5393:107;25833:13:::1;:29;;;;:::i;:::-;25832:38;;;;:::i;:::-;25814:15;:56:::0;-1:-1:-1;25607:271:0:o;26083:679::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;26237:21;:40;;;26288:21;:40;;;26360:45:::1;26312:16:::0;26261;26360:45:::1;:::i;:::-;26339:5;:66:::0;26418:22;:42;;;26471:22;:42;;;26546:47:::1;26496:17:::0;26443;26546:47:::1;:::i;:::-;26524:19:::0;:69;:5:::1;26612:18:::0;26634:1:::1;-1:-1:-1::0;26612:23:0::1;26604:64;;;::::0;-1:-1:-1;;;26604:64:0;;8059:2:1;26604:64:0::1;::::0;::::1;8041:21:1::0;8098:2;8078:18;;;8071:30;8137;8117:18;;;8110:58;8185:18;;26604:64:0::1;7857:352:1::0;26604:64:0::1;26690:19:::0;;26713:1:::1;-1:-1:-1::0;26690:24:0::1;26682:65;;;::::0;-1:-1:-1;;;26682:65:0;;8059:2:1;26682:65:0::1;::::0;::::1;8041:21:1::0;8098:2;8078:18;;;8071:30;8137;8117:18;;;8110:58;8185:18;;26682:65:0::1;7857:352:1::0;26682:65:0::1;26083:679:::0;;;;:::o;26912:146::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27004:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;27004:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26912:146::o;14001:244::-;13268:6;;-1:-1:-1;;;;;13268:6:0;3425:10;13268:22;13260:67;;;;-1:-1:-1;;;13260:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14090:22:0;::::1;14082:73;;;::::0;-1:-1:-1;;;14082:73:0;;8416:2:1;14082:73:0::1;::::0;::::1;8398:21:1::0;8455:2;8435:18;;;8428:30;8494:34;8474:18;;;8467:62;-1:-1:-1;;;8545:18:1;;;8538:36;8591:19;;14082:73:0::1;8214:402:1::0;14082:73:0::1;14192:6;::::0;14171:38:::1;::::0;-1:-1:-1;;;;;14171:38:0;;::::1;::::0;14192:6:::1;::::0;14171:38:::1;::::0;14192:6:::1;::::0;14171:38:::1;14220:6;:17:::0;;-1:-1:-1;;;;;;14220:17:0::1;-1:-1:-1::0;;;;;14220:17:0;;;::::1;::::0;;;::::1;::::0;;14001:244::o;11322:180::-;11379:7;;11411:5;11415:1;11411;:5;:::i;:::-;11399:17;;11440:1;11435;:6;;11427:46;;;;-1:-1:-1;;;11427:46:0;;8823:2:1;11427:46:0;;;8805:21:1;8862:2;8842:18;;;8835:30;8901:29;8881:18;;;8874:57;8948:18;;11427:46:0;8621:351:1;11427:46:0;11493:1;11322:180;-1:-1:-1;;;11322:180:0:o;10895:382::-;-1:-1:-1;;;;;11031:19:0;;11023:68;;;;-1:-1:-1;;;11023:68:0;;9179:2:1;11023:68:0;;;9161:21:1;9218:2;9198:18;;;9191:30;9257:34;9237:18;;;9230:62;-1:-1:-1;;;9308:18:1;;;9301:34;9352:19;;11023:68:0;8977:400:1;11023:68:0;-1:-1:-1;;;;;11110:21:0;;11102:68;;;;-1:-1:-1;;;11102:68:0;;9584:2:1;11102:68:0;;;9566:21:1;9623:2;9603:18;;;9596:30;9662:34;9642:18;;;9635:62;-1:-1:-1;;;9713:18:1;;;9706:32;9755:19;;11102:68:0;9382:398:1;11102:68:0;-1:-1:-1;;;;;11185:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11237:32;;1915:25:1;;;11237:32:0;;1888:18:1;11237:32:0;;;;;;;;10895:382;;;:::o;27690:3242::-;-1:-1:-1;;;;;27831:20:0;;27823:70;;;;-1:-1:-1;;;27823:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27912:23:0;;27904:71;;;;-1:-1:-1;;;27904:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28005:21:0;;;;;;:10;:21;;;;;;;;28004:22;:45;;;;-1:-1:-1;;;;;;28031:18:0;;;;;;:10;:18;;;;;;;;28030:19;28004:45;27996:107;;;;-1:-1:-1;;;27996:107:0;;10797:2:1;27996:107:0;;;10779:21:1;10836:2;10816:18;;;10809:30;10875:34;10855:18;;;10848:62;-1:-1:-1;;;10926:18:1;;;10919:47;10983:19;;27996:107:0;10595:413:1;27996:107:0;28128:11;28124:102;;28156:37;28172:6;28180:9;28191:1;28156:15;:37::i;:::-;27690:3242;;;:::o;28124:102::-;13121:6;;-1:-1:-1;;;;;28256:17:0;;;13121:6;;28256:17;;;;:54;;-1:-1:-1;13121:6:0;;-1:-1:-1;;;;;28290:20:0;;;13121:6;;28290:20;;28256:54;:82;;;;-1:-1:-1;28328:10:0;;;;;;;28327:11;28256:82;28238:888;;;28372:9;;;;28367:147;;-1:-1:-1;;;;;28410:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28441:30:0;;;;;;:19;:30;;;;;;;;28410:61;28402:96;;;;-1:-1:-1;;;28402:96:0;;11215:2:1;28402:96:0;;;11197:21:1;11254:2;11234:18;;;11227:30;-1:-1:-1;;;11273:18:1;;;11266:52;11335:18;;28402:96:0;11013:346:1;28402:96:0;-1:-1:-1;;;;;28532:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28555:42:0;;;;;;:31;:42;;;;;;;;28554:43;28532:65;28528:410;;;28636:12;;28626:6;:22;;28618:88;;;;-1:-1:-1;;;28618:88:0;;11566:2:1;28618:88:0;;;11548:21:1;11605:2;11585:18;;;11578:30;11644:34;11624:18;;;11617:62;-1:-1:-1;;;11695:18:1;;;11688:51;11756:19;;28618:88:0;11364:417:1;28618:88:0;28528:410;;;-1:-1:-1;;;;;28746:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28772:39:0;;;;;;:31;:39;;;;;;;;28771:40;28746:65;28742:196;;;28850:13;;28840:6;:23;;28832:90;;;;-1:-1:-1;;;28832:90:0;;11988:2:1;28832:90:0;;;11970:21:1;12027:2;12007:18;;;12000:30;12066:34;12046:18;;;12039:62;-1:-1:-1;;;12117:18:1;;;12110:52;12179:19;;28832:90:0;11786:418:1;28832:90:0;-1:-1:-1;;;;;28959:37:0;;;;;;:26;:37;;;;;;;;28954:159;;29058:15;;-1:-1:-1;;;;;5663:18:0;;5636:7;5663:18;;;;;;;;;;;29025:29;;:6;:29;:::i;:::-;:48;;29017:80;;;;-1:-1:-1;;;29017:80:0;;12411:2:1;29017:80:0;;;12393:21:1;12450:2;12430:18;;;12423:30;-1:-1:-1;;;12469:18:1;;;12462:49;12528:18;;29017:80:0;12209:343:1;29017:80:0;29201:4;29152:28;5663:18;;;;;;;;;;;29260:19;;29236:43;;;;;;;29310:35;;-1:-1:-1;29334:11:0;;;;;;;29310:35;:63;;;;-1:-1:-1;29363:10:0;;;;;;;29362:11;29310:63;:101;;;;-1:-1:-1;;;;;;29390:21:0;;;;;;:10;:21;;;;;;;;29310:101;:146;;;;-1:-1:-1;;;;;;29429:27:0;;;;;;:19;:27;;;;;;;;29428:28;29310:146;:194;;;;-1:-1:-1;;;;;;29474:30:0;;;;;;:19;:30;;;;;;;;29473:31;29310:194;29292:326;;;29531:10;:17;;-1:-1:-1;;29531:17:0;;;;;29563:10;:8;:10::i;:::-;29588;:18;;-1:-1:-1;;29588:18:0;;;29292:326;29647:10;;-1:-1:-1;;;;;29759:27:0;;29631:12;29759:27;;;:19;:27;;;;;;29647:10;;;;;;;29646:11;;29759:27;;:61;;-1:-1:-1;;;;;;29790:30:0;;;;;;:19;:30;;;;;;;;29759:61;29755:109;;;-1:-1:-1;29847:5:0;29755:109;29877:12;29982:7;29978:892;;;-1:-1:-1;;;;;30048:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30073:19:0;;:23;;30048:48;30044:673;;;30135:19;;30124:40;;30160:3;;30124:31;;:6;;:10;:31::i;:::-;:35;;:40::i;:::-;30237:19;;30212:22;;30117:47;;-1:-1:-1;30237:19:0;30205:29;;30117:47;30205:29;:::i;:::-;:51;;;;:::i;:::-;30183:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30329:19:0;;30304:22;;30297:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30275:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;30044:673:0;;-1:-1:-1;30044:673:0;;-1:-1:-1;;;;;30410:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30432:5:0;:18;:22;;30410:44;30406:311;;;30493:5;:18;30482:39;;30517:3;;30482:30;;:6;;:10;:30::i;:39::-;30593:5;:18;30569:21;;30475:46;;-1:-1:-1;30593:18:0;30562:28;;30475:46;30562:28;:::i;:::-;:49;;;;:::i;:::-;30540:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30683:5:0;:18;30659:21;;30652:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30630:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30406:311:0;30737:8;;30733:93;;30766:44;30782:6;30798:4;30805;30766:15;:44::i;:::-;30842:14;30852:4;30842:14;;:::i;:::-;;;29978:892;30882:42;30898:6;30906:9;30917:6;30882:15;:42::i;:::-;27812:3120;;;;27690:3242;;;:::o;11663:191::-;11748:7;11784:12;11776:6;;;;11768:29;;;;-1:-1:-1;;;11768:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11808:9:0;11820:5;11824:1;11820;:5;:::i;:::-;11808:17;11663:191;-1:-1:-1;;;;;11663:191:0:o;9327:521::-;-1:-1:-1;;;;;9467:20:0;;9459:70;;;;-1:-1:-1;;;9459:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9548:23:0;;9540:71;;;;-1:-1:-1;;;9540:71:0;;;;;;;:::i;:::-;9652;9674:6;9652:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9652:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9632:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9757:20;;;;;;;:32;;9782:6;9757:24;:32::i;:::-;-1:-1:-1;;;;;9734:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9805:35;1915:25:1;;;9734:20:0;;9805:35;;;;;;1888:18:1;9805:35:0;1769:177:1;31860:1335:0;31948:4;31899:28;5663:18;;;;;;;;;;;31899:55;;31965:14;32003:18;;31982;;:39;;;;:::i;:::-;31965:56;-1:-1:-1;32033:12:0;32062:25;;;:40;;-1:-1:-1;32091:11:0;;32062:40;32058:57;;;32106:7;;;31860:1335::o;32058:57::-;32154:19;;:24;;32176:2;32154:24;:::i;:::-;32131:20;:47;32127:127;;;32218:19;;:24;;32240:2;32218:24;:::i;:::-;32195:47;;32127:127;32315:23;32394:1;32385:6;32364:18;;32341:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32315:80;-1:-1:-1;32406:26:0;32435:41;:20;32315:80;32435:24;:41::i;:::-;32406:70;-1:-1:-1;32518:21:0;32552:36;32406:70;32552:16;:36::i;:::-;32603:18;32624:44;:21;32650:17;32624:25;:44::i;:::-;32603:65;;32682:23;32708:46;32747:6;32708:34;32723:18;;32708:10;:14;;:34;;;;:::i;:46::-;32682:72;-1:-1:-1;32765:23:0;32791:28;32682:72;32791:10;:28;:::i;:::-;32855:1;32834:18;:22;;;32867:18;:22;32765:54;-1:-1:-1;32908:19:0;;;;;:42;;;32949:1;32931:15;:19;32908:42;32904:192;;;32967:46;32980:15;32997;32967:12;:46::i;:::-;33033:51;;;12861:25:1;;;12917:2;12902:18;;12895:34;;;33033:51:0;;12834:18:1;33033:51:0;;;;;;;32904:192;33129:15;;33121:66;;-1:-1:-1;;;;;33129:15:0;;;;33159:21;;33121:66;;;;33159:21;33129:15;33121:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;31860:1335:0:o;11862:256::-;11919:7;11949:6;11945:47;;-1:-1:-1;11979:1:0;11972:8;;11945:47;12005:9;12017:5;12021:1;12017;:5;:::i;:::-;12005:17;-1:-1:-1;12050:1:0;12041:5;12045:1;12005:17;12041:5;:::i;:::-;:10;12033:56;;;;-1:-1:-1;;;12033:56:0;;13352:2:1;12033:56:0;;;13334:21:1;13391:2;13371:18;;;13364:30;13430:34;13410:18;;;13403:62;-1:-1:-1;;;13481:18:1;;;13474:31;13522:19;;12033:56:0;13150:397:1;12129:131:0;12186:7;12213:39;12217:1;12220;12213:39;;;;;;;;;;;;;;;;;:3;:39::i;11515:135::-;11572:7;11599:43;11603:1;11606;11599:43;;;;;;;;;;;;;;;;;:3;:43::i;30940:554::-;31088:16;;;31102:1;31088:16;;;;;;;;31064:21;;31088:16;;;;;;;;;;-1:-1:-1;31088:16:0;31064:40;;31133:4;31115;31120:1;31115:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31115:23:0;;;-1:-1:-1;;;;;31115:23:0;;;;;31159:6;-1:-1:-1;;;;;31159:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31149:4;31154:1;31149:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31149:23:0;;;-1:-1:-1;;;;;31149:23:0;;;;;31185:49;31202:4;31217:6;31226:7;31185:8;:49::i;:::-;31273:211;;-1:-1:-1;;;31273:211:0;;-1:-1:-1;;;;;31273:6:0;:57;;;;:211;;31345:7;;31367:1;;31411:4;;31438;;31458:15;;31273:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30991:503;30940:554;:::o;31502:350::-;31646:49;31663:4;31678:6;31687:7;31646:8;:49::i;:::-;31738:106;;-1:-1:-1;;;31738:106:0;;31790:4;31738:106;;;15398:34:1;;;15448:18;;;15441:34;;;31806:1:0;15491:18:1;;;15484:34;;;15534:18;;;15527:34;15577:19;;;15570:44;31828:15:0;15630:19:1;;;15623:35;31738:6:0;-1:-1:-1;;;;;31738:22:0;;;;31769:9;;15332:19:1;;31738:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31502:350;;:::o;12272:277::-;12357:7;12392:12;12385:5;12377:28;;;;-1:-1:-1;;;12377:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12416:9:0;12428:5;12432:1;12428;:5;:::i;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;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:248::-;1584:6;1592;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;-1:-1:-1;;1684:23:1;;;1754:2;1739:18;;;1726:32;;-1:-1:-1;1516:248:1:o;1951:160::-;2016:20;;2072:13;;2065:21;2055:32;;2045:60;;2101:1;2098;2091:12;2116:180;2172:6;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:26;2280:9;2264:26;:::i;2301:456::-;2378:6;2386;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2502:9;2489:23;2521:31;2546:5;2521:31;:::i;:::-;2571:5;-1:-1:-1;2628:2:1;2613:18;;2600:32;2641:33;2600:32;2641:33;:::i;:::-;2301:456;;2693:7;;-1:-1:-1;;;2747:2:1;2732:18;;;;2719:32;;2301:456::o;3159:180::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;-1:-1:-1;3310:23:1;;3159:180;-1:-1:-1;3159:180:1:o;3344:315::-;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:385::-;3750:6;3758;3766;3774;3827:3;3815:9;3806:7;3802:23;3798:33;3795:53;;;3844:1;3841;3834:12;3795:53;-1:-1:-1;;3867:23:1;;;3937:2;3922:18;;3909:32;;-1:-1:-1;3988:2:1;3973:18;;3960:32;;4039:2;4024:18;4011:32;;-1:-1:-1;3664:385:1;-1:-1:-1;3664:385:1:o;4594:388::-;4662:6;4670;4723:2;4711:9;4702:7;4698:23;4694:32;4691:52;;;4739:1;4736;4729:12;4691:52;4778:9;4765:23;4797:31;4822:5;4797:31;:::i;:::-;4847:5;-1:-1:-1;4904:2:1;4889:18;;4876:32;4917:33;4876:32;4917:33;:::i;:::-;4969:7;4959:17;;;4594:388;;;;;:::o;5222:380::-;5301:1;5297:12;;;;5344;;;5365:61;;5419:4;5411:6;5407:17;5397:27;;5365:61;5472:2;5464:6;5461:14;5441:18;5438:38;5435:161;;;5518:10;5513:3;5509:20;5506:1;5499:31;5553:4;5550:1;5543:15;5581:4;5578:1;5571:15;5435:161;;5222:380;;;:::o;5607:356::-;5809:2;5791:21;;;5828:18;;;5821:30;5887:34;5882:2;5867:18;;5860:62;5954:2;5939:18;;5607:356::o;5968:127::-;6029:10;6024:3;6020:20;6017:1;6010:31;6060:4;6057:1;6050:15;6084:4;6081:1;6074:15;6100:217;6140:1;6166;6156:132;;6210:10;6205:3;6201:20;6198:1;6191:31;6245:4;6242:1;6235:15;6273:4;6270:1;6263:15;6156:132;-1:-1:-1;6302:9:1;;6100:217::o;6322:168::-;6362:7;6428:1;6424;6420:6;6416:14;6413:1;6410:21;6405:1;6398:9;6391:17;6387:45;6384:71;;;6435:18;;:::i;:::-;-1:-1:-1;6475:9:1;;6322:168::o;6495:410::-;6697:2;6679:21;;;6736:2;6716:18;;;6709:30;6775:34;6770:2;6755:18;;6748:62;-1:-1:-1;;;6841:2:1;6826:18;;6819:44;6895:3;6880:19;;6495:410::o;7724:128::-;7764:3;7795:1;7791:6;7788:1;7785:13;7782:39;;;7801:18;;:::i;:::-;-1:-1:-1;7837:9:1;;7724:128::o;9785:401::-;9987:2;9969:21;;;10026:2;10006:18;;;9999:30;10065:34;10060:2;10045:18;;10038:62;-1:-1:-1;;;10131:2:1;10116:18;;10109:35;10176:3;10161:19;;9785:401::o;10191:399::-;10393:2;10375:21;;;10432:2;10412:18;;;10405:30;10471:34;10466:2;10451:18;;10444:62;-1:-1:-1;;;10537:2:1;10522:18;;10515:33;10580:3;10565:19;;10191:399::o;12557:125::-;12597:4;12625:1;12622;12619:8;12616:34;;;12630:18;;:::i;:::-;-1:-1:-1;12667:9:1;;12557:125::o;13684:127::-;13745:10;13740:3;13736:20;13733:1;13726:31;13776:4;13773:1;13766:15;13800:4;13797:1;13790:15;13816:251;13886:6;13939:2;13927:9;13918:7;13914:23;13910:32;13907:52;;;13955:1;13952;13945:12;13907:52;13987:9;13981:16;14006:31;14031:5;14006:31;:::i;14072:980::-;14334:4;14382:3;14371:9;14367:19;14413:6;14402:9;14395:25;14439:2;14477:6;14472:2;14461:9;14457:18;14450:34;14520:3;14515:2;14504:9;14500:18;14493:31;14544:6;14579;14573:13;14610:6;14602;14595:22;14648:3;14637:9;14633:19;14626:26;;14687:2;14679:6;14675:15;14661:29;;14708:1;14718:195;14732:6;14729:1;14726:13;14718:195;;;14797:13;;-1:-1:-1;;;;;14793:39:1;14781:52;;14888:15;;;;14853:12;;;;14829:1;14747:9;14718:195;;;-1:-1:-1;;;;;;;14969:32:1;;;;14964:2;14949:18;;14942:60;-1:-1:-1;;;15033:3:1;15018:19;15011:35;14930:3;14072:980;-1:-1:-1;;;14072:980:1:o;15669:306::-;15757:6;15765;15773;15826:2;15814:9;15805:7;15801:23;15797:32;15794:52;;;15842:1;15839;15832:12;15794:52;15871:9;15865:16;15855:26;;15921:2;15910:9;15906:18;15900:25;15890:35;;15965:2;15954:9;15950:18;15944:25;15934:35;;15669:306;;;;;:::o

Swarm Source

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