ETH Price: $3,458.20 (-0.72%)
Gas: 2 Gwei

Token

Black Chad (BLACKED)
 

Overview

Max Total Supply

1,000,000,000 BLACKED

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.469442078814751773 BLACKED

Value
$0.00
0x8ab18461a73079d8a95af2ceb91bb680f45aa168
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:
BlackChad

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-31
*/

/*
 ▀█████████▄   ▄█          ▄████████  ▄████████    ▄█   ▄█▄       ▄████████    ▄█    █▄       ▄████████ ████████▄  
  ███    ███ ███         ███    ███ ███    ███   ███ ▄███▀      ███    ███   ███    ███     ███    ███ ███   ▀███ 
  ███    ███ ███         ███    ███ ███    █▀    ███▐██▀        ███    █▀    ███    ███     ███    ███ ███    ███ 
 ▄███▄▄▄██▀  ███         ███    ███ ███         ▄█████▀         ███         ▄███▄▄▄▄███▄▄   ███    ███ ███    ███ 
▀▀███▀▀▀██▄  ███       ▀███████████ ███        ▀▀█████▄         ███        ▀▀███▀▀▀▀███▀  ▀███████████ ███    ███ 
  ███    ██▄ ███         ███    ███ ███    █▄    ███▐██▄        ███    █▄    ███    ███     ███    ███ ███    ███ 
  ███    ███ ███▌    ▄   ███    ███ ███    ███   ███ ▀███▄      ███    ███   ███    ███     ███    ███ ███   ▄███ 
▄█████████▀  █████▄▄██   ███    █▀  ████████▀    ███   ▀█▀      ████████▀    ███    █▀      ███    █▀  ████████▀  
             ▀                                   ▀                                                                 */

// SPDX-License-Identifier: MIT
//Black Chad Official
//https://t.me/blackchadETH
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

// File: contracts/IterableMapping.sol


pragma solidity ^0.8.6;

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) internal view returns (uint) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) internal view returns (int) {
        if(!map.inserted[key]) {
            return -1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint index) internal view returns (address) {
        return map.keys[index];
    }



    function size(Map storage map) internal view returns (uint) {
        return map.keys.length;
    }

    function set(Map storage map, address key, uint val) internal {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) internal {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint index = map.indexOf[key];
        uint lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}

// File: contracts/DividendPayingTokenOptionalInterface.sol



pragma solidity ^0.8.6;


/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendPayingTokenOptionalInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);
}

// File: contracts/DividendPayingTokenInterface.sol



pragma solidity ^0.8.6;


/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);


  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}

// File: contracts/SafeMathInt.sol



/*
MIT License

Copyright (c) 2018 requestnetwork
Copyright (c) 2018 Fragments, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

pragma solidity ^0.8.6;

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
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);
    }
}

// File: contracts/SafeMathUint.sol



pragma solidity ^0.8.6;

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}











// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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");

        _beforeTokenTransfer(sender, recipient, amount);

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

        if (amount > 0) {

        emit Transfer(sender, recipient, amount);}

        _afterTokenTransfer(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");

        _beforeTokenTransfer(address(0), account, amount);

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

        _afterTokenTransfer(address(0), account, amount);
    }

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

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), 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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File: contracts/Token.sol


pragma solidity ^0.8.10;


contract BlackChad is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);


    struct BuyFee {
        
        uint16 marketingFee;
        uint16 liquidityFee;
       
    }

    struct SellFee {
        
        uint16 marketingFee;
        uint16 liquidityFee;
      
    }

    bool private swapping;

    BuyFee public buyFee;
    SellFee public sellFee;

    

    uint256 public swapTokensAtAmount = 1 * 10**3 * (10**18); //0.01% of the supply

    uint256 public maxBuyAmount = 1 * 10**6 * 10**18; // 0.1% of the supply
    uint256 public maxWalletAmount = 1 * 10**7 * 10**18; // 1% of the supply (antiwhale)

    uint16 private totalBuyFee;
    uint16 private totalSellFee;
    

    bool public swapEnabled;
    bool private isTradingEnabled;
    uint256 public tradingStartBlock;
    uint8 public constant BLOCKCOUNT = 3;
   

    address payable _marketingWallet = payable(address(0x1bF6990e2cd55F896e4E36009fE73bc975126974)); // marketingWallet
    address payable _devWallet = payable(address(0x082077C69a2595a589958bf1c2962C4eBd95D2dC)); // devWallet
   
    

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimit;
    mapping(address => bool) public _isBlackListed;

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

    
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

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

    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );

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

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

    constructor() ERC20("Black Chad", "BLACKED") {
       
        buyFee.marketingFee = 4;
        buyFee.liquidityFee = 1;
       
        totalBuyFee = 5;

        
        sellFee.marketingFee = 4;
        sellFee.liquidityFee = 1;
        
        totalSellFee = 5;

        

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D// Uniswap V2 Router
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

       
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        swapEnabled = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1 * 10**9 * (10**18)); // 1 billion tokens
    }

    receive() external payable {}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(
            newAddress != address(uniswapV2Router),
            "Token: The router already has that address"
        );
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Token: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

     function claimStuckTokens(address _token) external onlyOwner {
        require(_token != address(this), "No rugs");
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

    function excludefromLimit(address account, bool excluded)
        external
        onlyOwner
    {
        _isExcludedFromLimit[account] = excluded;
    }

    function setBlackList(address addr, bool value) external onlyOwner {
        _isBlackListed[addr] = value;
    }

   function enableTrading() external onlyOwner {
        isTradingEnabled = true;
        tradingStartBlock = block.number;
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "Token: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "Token: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function setBuyFee(
        uint16 marketing,
        uint16 liquidity ) external onlyOwner

    {
        require(marketing+liquidity <= 25, "tax too high");
        buyFee.marketingFee = marketing;
        buyFee.liquidityFee = liquidity;
    }


    function setSellFee(
        uint16 marketing,
        uint16 liquidity
        
    ) external onlyOwner  {
        require(marketing+liquidity <= 25, "tax too high");
        sellFee.marketingFee = marketing; 
        sellFee.liquidityFee = liquidity;
    }

   

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

  

    function setMarketingWallet(address newWallet) external onlyOwner {
    require (newWallet != address(0), "Marketing wallet can not be a zero address");
        _marketingWallet = payable(newWallet);
    }

    function setSwapEnabled(bool value) external onlyOwner {
        swapEnabled = value;
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        maxWalletAmount = amount * 10**18;
    }

    function setMaxBuyAmount(uint256 amount) external onlyOwner {
      require(amount >= 100000, "Can't set lower amount, No rugPull");
        maxBuyAmount = amount * 10**18;
    }

   function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
       swapTokensAtAmount =  amount * 10**18;
    }

    
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "Token: transfer from the zero address");
        require(to != address(0), "Token: transfer to the zero address");
        require(
            !_isBlackListed[from] && !_isBlackListed[to],
            "Account is blacklisted"
        );
   require( isTradingEnabled || _isExcludedFromFees[from],
            "Trading not enabled yet"
        );

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >=
            swapTokensAtAmount;

        if (
            swapEnabled &&
            !swapping &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance
        ) {
            contractTokenBalance = swapTokensAtAmount;
            uint16 totalFee = totalBuyFee + totalSellFee;

            uint256 swapTokens = contractTokenBalance
                .mul(buyFee.liquidityFee + sellFee.liquidityFee)
                .div(totalFee);
            swapAndLiquify(swapTokens);

            uint256 feeTokens = contractTokenBalance - swapTokens;
                swapAndSendToMarketing(feeTokens);

        }

        bool takeFee = true;

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

        if (takeFee) {
            uint256 fees;

          

            if (automatedMarketMakerPairs[to]) {
                fees = totalSellFee;
            } else if (automatedMarketMakerPairs[from]) {
                fees = totalBuyFee;
            }

            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                if (automatedMarketMakerPairs[from]) {
                  require(amount <= maxBuyAmount, "Buy exceeds limit");
                   if (block.number < tradingStartBlock + BLOCKCOUNT) {
                    _isBlackListed[to] = true;
                   }
                }

                if (!automatedMarketMakerPairs[to]) {
                    require(
                        balanceOf(to) + amount <= maxWalletAmount,
                        "Balance exceeds limit"
                    );
                }
            }

            uint256 feeAmount = amount.mul(fees).div(100);
            amount = amount.sub(feeAmount);

            super._transfer(from, address(this), feeAmount);
        }

        super._transfer(from, to, amount);

    }

    function swapAndSendToMarketing(uint256 tokens) private lockTheSwap {
        uint256 initialBalance = address(this).balance;

        swapTokensForEth(tokens);
        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        
        uint256 devShare = newBalance.div(9);
        uint256 marketingShare = newBalance - devShare; 
        
        _devWallet.transfer(devShare);
        _marketingWallet.transfer(marketingShare);
        
    }

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

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

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"BLOCKCOUNT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"liquidityFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","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":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"liquidityFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartBlock","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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052683635c9adc5dea0000060095569d3c21bcecceda1000000600a556a084595161401484a000000600b55600e80546001600160a01b0319908116731bf6990e2cd55f896e4e36009fe73bc97512697417909155600f805490911673082077c69a2595a589958bf1c2962c4ebd95d2dc1790553480156200008357600080fd5b50604080518082018252600a815269109b1858dac810da185960b21b60208083019182528351808501909452600784526610931050d2d15160ca1b908401528151919291620000d591600391620006b2565b508051620000eb906004906020840190620006b2565b50505062000108620001026200034260201b60201c565b62000346565b6007805463ffffffff1990811662010004908117909255600c80546008805484169094179093559116620500051790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a01559160048281019260209291908290030181865afa1580156200018e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b4919062000758565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000228919062000758565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000276573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029c919062000758565b600680546001600160a01b0319166001600160a01b038581169190911790915581166080529050620002d081600162000398565b620002ef620002e76005546001600160a01b031690565b600162000487565b620002fc30600162000487565b600c805460ff60201b19166401000000001790556200033a620003276005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620005cd565b5050620007ee565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415620004335760405162461bcd60e51b815260206004820152603f60248201527f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084015b60405180910390fd5b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200042a565b6001600160a01b03821660009081526010602052604090205460ff16151581151514156200056e5760405162461bcd60e51b815260206004820152603160248201527f546f6b656e3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b60648201526084016200042a565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006255760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200042a565b80600260008282546200063991906200078a565b90915550506001600160a01b03821660009081526020819052604081208054839290620006689084906200078a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006c090620007b1565b90600052602060002090601f016020900481019282620006e457600085556200072f565b82601f10620006ff57805160ff19168380011785556200072f565b828001600101855582156200072f579182015b828111156200072f57825182559160200191906001019062000712565b506200073d92915062000741565b5090565b5b808211156200073d576000815560010162000742565b6000602082840312156200076b57600080fd5b81516001600160a01b03811681146200078357600080fd5b9392505050565b60008219821115620007ac57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620007c657607f821691505b60208210811415620007e857634e487b7160e01b600052602260045260246000fd5b50919050565b6080516125c8620008186000396000818161040201528181610daa015261179601526125c86000f3fe6080604052600436106102555760003560e01c80637537a47f11610139578063afa4f3b2116100b6578063e01af92c1161007a578063e01af92c14610771578063e2f4560514610791578063ec2a520a146107a7578063f2fde38b146107c7578063f34eb0b8146107e7578063f9d0831a1461080757600080fd5b8063afa4f3b2146106a5578063b62496f5146106c5578063c0246668146106f5578063d798cbd214610715578063dd62ed3e1461072b57600080fd5b806395d89b41116100fd57806395d89b411461061a5780639a7a23d61461062f578063a457c2d71461064f578063a9059cbb1461066f578063aa4bde281461068f57600080fd5b80637537a47f146105915780637afad249146105b157806388e765ff146105d15780638a8c523c146105e75780638da5cb5b146105fc57600080fd5b806349bd5a5e116101d257806365b8dbc01161019657806365b8dbc0146104b457806368092bd9146104d45780636c9bb93b146104f45780636ddd17131461052457806370a0823114610546578063715018a61461057c57600080fd5b806349bd5a5e146103f05780634dce97f1146104245780634fbee193146104395780635d0044ca146104725780635d098b381461049457600080fd5b806327c8f8351161021957806327c8f835146103335780632b14ca5614610349578063313ce5671461038957806339509351146103ab57806347062402146103cb57600080fd5b806306fdde0314610261578063095ea7b31461028c5780631694505e146102bc57806318160ddd146102f457806323b872dd1461031357600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610827565b6040516102839190612185565b60405180910390f35b34801561029857600080fd5b506102ac6102a73660046121ef565b6108b9565b6040519015158152602001610283565b3480156102c857600080fd5b506006546102dc906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561030057600080fd5b506002545b604051908152602001610283565b34801561031f57600080fd5b506102ac61032e36600461221b565b6108cf565b34801561033f57600080fd5b506102dc61dead81565b34801561035557600080fd5b5060085461036e9061ffff808216916201000090041682565b6040805161ffff938416815292909116602083015201610283565b34801561039557600080fd5b5060125b60405160ff9091168152602001610283565b3480156103b757600080fd5b506102ac6103c63660046121ef565b61097e565b3480156103d757600080fd5b5060075461036e9061ffff808216916201000090041682565b3480156103fc57600080fd5b506102dc7f000000000000000000000000000000000000000000000000000000000000000081565b34801561043057600080fd5b50610399600381565b34801561044557600080fd5b506102ac61045436600461225c565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561047e57600080fd5b5061049261048d366004612279565b6109ba565b005b3480156104a057600080fd5b506104926104af36600461225c565b6109fc565b3480156104c057600080fd5b506104926104cf36600461225c565b610ab1565b3480156104e057600080fd5b506104926104ef3660046122a0565b610ba9565b34801561050057600080fd5b506102ac61050f36600461225c565b60126020526000908152604090205460ff1681565b34801561053057600080fd5b50600c546102ac90640100000000900460ff1681565b34801561055257600080fd5b5061030561056136600461225c565b6001600160a01b031660009081526020819052604090205490565b34801561058857600080fd5b50610492610bfe565b34801561059d57600080fd5b506104926105ac3660046122a0565b610c34565b3480156105bd57600080fd5b506104926105cc3660046122f0565b610c89565b3480156105dd57600080fd5b50610305600a5481565b3480156105f357600080fd5b50610492610d28565b34801561060857600080fd5b506005546001600160a01b03166102dc565b34801561062657600080fd5b50610276610d6f565b34801561063b57600080fd5b5061049261064a3660046122a0565b610d7e565b34801561065b57600080fd5b506102ac61066a3660046121ef565b610e73565b34801561067b57600080fd5b506102ac61068a3660046121ef565b610f0c565b34801561069b57600080fd5b50610305600b5481565b3480156106b157600080fd5b506104926106c0366004612279565b610f19565b3480156106d157600080fd5b506102ac6106e036600461225c565b60136020526000908152604090205460ff1681565b34801561070157600080fd5b506104926107103660046122a0565b610f5b565b34801561072157600080fd5b50610305600d5481565b34801561073757600080fd5b50610305610746366004612323565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077d57600080fd5b5061049261078c366004612351565b61106d565b34801561079d57600080fd5b5061030560095481565b3480156107b357600080fd5b506104926107c23660046122f0565b6110b7565b3480156107d357600080fd5b506104926107e236600461225c565b611156565b3480156107f357600080fd5b50610492610802366004612279565b6111f1565b34801561081357600080fd5b5061049261082236600461225c565b611291565b6060600380546108369061236e565b80601f01602080910402602001604051908101604052809291908181526020018280546108629061236e565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c633848461144c565b50600192915050565b60006108dc848484611570565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109665760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610973853385840361144c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108c69185906109b59086906123bf565b61144c565b6005546001600160a01b031633146109e45760405162461bcd60e51b815260040161095d906123d7565b6109f681670de0b6b3a764000061240c565b600b5550565b6005546001600160a01b03163314610a265760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b038116610a8f5760405162461bcd60e51b815260206004820152602a60248201527f4d61726b6574696e672077616c6c65742063616e206e6f742062652061207a65604482015269726f206164647265737360b01b606482015260840161095d565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161095d906123d7565b6006546001600160a01b0382811691161415610b4c5760405162461bcd60e51b815260206004820152602a60248201527f546f6b656e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b606482015260840161095d565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bd35760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c285760405162461bcd60e51b815260040161095d906123d7565b610c326000611ad0565b565b6005546001600160a01b03163314610c5e5760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cb35760405162461bcd60e51b815260040161095d906123d7565b6019610cbf828461242b565b61ffff161115610d005760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b604482015260640161095d565b6007805461ffff928316620100000263ffffffff199091169290931691909117919091179055565b6005546001600160a01b03163314610d525760405162461bcd60e51b815260040161095d906123d7565b600c805465ff000000000019166501000000000017905543600d55565b6060600480546108369061236e565b6005546001600160a01b03163314610da85760405162461bcd60e51b815260040161095d906123d7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610e655760405162461bcd60e51b815260206004820152604c60248201527f546f6b656e3a205468652050616e63616b655377617020706169722063616e6e60448201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60648201526b65744d616b6572506169727360a01b608482015260a40161095d565b610e6f8282611b22565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ef55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161095d565b610f02338585840361144c565b5060019392505050565b60006108c6338484611570565b6005546001600160a01b03163314610f435760405162461bcd60e51b815260040161095d906123d7565b610f5581670de0b6b3a764000061240c565b60095550565b6005546001600160a01b03163314610f855760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b03821660009081526010602052604090205460ff161515811515141561100e5760405162461bcd60e51b815260206004820152603160248201527f546f6b656e3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b606482015260840161095d565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110975760405162461bcd60e51b815260040161095d906123d7565b600c80549115156401000000000264ff0000000019909216919091179055565b6005546001600160a01b031633146110e15760405162461bcd60e51b815260040161095d906123d7565b60196110ed828461242b565b61ffff16111561112e5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b604482015260640161095d565b6008805461ffff928316620100000263ffffffff199091169290931691909117919091179055565b6005546001600160a01b031633146111805760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b0381166111e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095d565b6111ee81611ad0565b50565b6005546001600160a01b0316331461121b5760405162461bcd60e51b815260040161095d906123d7565b620186a08110156112795760405162461bcd60e51b815260206004820152602260248201527f43616e277420736574206c6f77657220616d6f756e742c204e6f2072756750756044820152611b1b60f21b606482015260840161095d565b61128b81670de0b6b3a764000061240c565b600a5550565b6005546001600160a01b031633146112bb5760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b0381163014156112fe5760405162461bcd60e51b81526020600482015260076024820152664e6f207275677360c81b604482015260640161095d565b6001600160a01b038116611345576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e6f573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561138e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b29190612451565b9050816001600160a01b031663a9059cbb6113d56005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611422573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611446919061246a565b50505050565b6001600160a01b0383166114ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161095d565b6001600160a01b03821661150f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161095d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115d45760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161095d565b6001600160a01b0382166116365760405162461bcd60e51b815260206004820152602360248201527f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161095d565b6001600160a01b03831660009081526012602052604090205460ff1615801561167857506001600160a01b03821660009081526012602052604090205460ff16155b6116bd5760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b604482015260640161095d565b600c5465010000000000900460ff16806116ef57506001600160a01b03831660009081526010602052604090205460ff165b61173b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c656420796574000000000000000000604482015260640161095d565b806117515761174c83836000611c0b565b505050565b30600090815260208190526040902054600954600c549082101590640100000000900460ff16801561178d5750600654600160a01b900460ff16155b80156117cb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156117d45750805b1561186657600954600c549092506000906117fb9061ffff6201000082048116911661242b565b6008546007549192506000916118409161ffff8086169261183a9261182f926201000091829004811692919091041661242b565b879061ffff16611dde565b90611df1565b905061184b81611dfd565b60006118578286612487565b905061186281611ea4565b5050505b6001600160a01b03851660009081526010602052604090205460019060ff16806118a857506001600160a01b03851660009081526010602052604090205460ff165b156118b1575060005b8015611abd576001600160a01b03851660009081526013602052604081205460ff16156118eb5750600c5462010000900461ffff16611915565b6001600160a01b03871660009081526013602052604090205460ff16156119155750600c5461ffff165b6001600160a01b03871660009081526011602052604090205460ff1615801561195757506001600160a01b03861660009081526011602052604090205460ff16155b15611a90576001600160a01b03871660009081526013602052604090205460ff16156119fd57600a548511156119c35760405162461bcd60e51b8152602060048201526011602482015270109d5e48195e18d959591cc81b1a5b5a5d607a1b604482015260640161095d565b600d546119d2906003906123bf565b4310156119fd576001600160a01b0386166000908152601260205260409020805460ff191660011790555b6001600160a01b03861660009081526013602052604090205460ff16611a9057600b5485611a40886001600160a01b031660009081526020819052604090205490565b611a4a91906123bf565b1115611a905760405162461bcd60e51b815260206004820152601560248201527410985b185b98d948195e18d959591cc81b1a5b5a5d605a1b604482015260640161095d565b6000611aa1606461183a8885611dde565b9050611aad8682611f75565b9550611aba883083611c0b565b50505b611ac8868686611c0b565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415611bb75760405162461bcd60e51b815260206004820152603f60248201527f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c756500606482015260840161095d565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c6f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161095d565b6001600160a01b038216611cd15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161095d565b6001600160a01b03831660009081526020819052604090205481811015611d495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161095d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d809084906123bf565b90915550508115611dd957826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dd091815260200190565b60405180910390a35b611446565b6000611dea828461240c565b9392505050565b6000611dea828461249e565b6006805460ff60a01b1916600160a01b1790556000611e1d826002611df1565b90506000611e2b8383611f75565b905047611e3783611f81565b6000611e434783611f75565b9050611e4f83826120d3565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506006805460ff60a01b19169055505050565b6006805460ff60a01b1916600160a01b17905547611ec182611f81565b6000611ecd4783611f75565b90506000611edc826009611df1565b90506000611eea8284612487565b600f546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015611f25573d6000803e3d6000fd5b50600e546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611f60573d6000803e3d6000fd5b50506006805460ff60a01b1916905550505050565b6000611dea8284612487565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fb657611fb66124c0565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561200f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203391906124d6565b81600181518110612046576120466124c0565b6001600160a01b03928316602091820292909201015260065461206c913091168461144c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906120a59085906000908690309042906004016124f3565b600060405180830381600087803b1580156120bf57600080fd5b505af1158015611ac8573d6000803e3d6000fd5b6006546120eb9030906001600160a01b03168461144c565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612159573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217e9190612564565b5050505050565b600060208083528351808285015260005b818110156121b257858101830151858201604001528201612196565b818111156121c4576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146111ee57600080fd5b6000806040838503121561220257600080fd5b823561220d816121da565b946020939093013593505050565b60008060006060848603121561223057600080fd5b833561223b816121da565b9250602084013561224b816121da565b929592945050506040919091013590565b60006020828403121561226e57600080fd5b8135611dea816121da565b60006020828403121561228b57600080fd5b5035919050565b80151581146111ee57600080fd5b600080604083850312156122b357600080fd5b82356122be816121da565b915060208301356122ce81612292565b809150509250929050565b803561ffff811681146122eb57600080fd5b919050565b6000806040838503121561230357600080fd5b61230c836122d9565b915061231a602084016122d9565b90509250929050565b6000806040838503121561233657600080fd5b8235612341816121da565b915060208301356122ce816121da565b60006020828403121561236357600080fd5b8135611dea81612292565b600181811c9082168061238257607f821691505b602082108114156123a357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156123d2576123d26123a9565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615612426576124266123a9565b500290565b600061ffff808316818516808303821115612448576124486123a9565b01949350505050565b60006020828403121561246357600080fd5b5051919050565b60006020828403121561247c57600080fd5b8151611dea81612292565b600082821015612499576124996123a9565b500390565b6000826124bb57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156124e857600080fd5b8151611dea816121da565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125435784516001600160a01b03168352938301939183019160010161251e565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561257957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220222619d348b3235370c06781d5d3f62e822143baa52e996d1f24f590fd50b4fc64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80637537a47f11610139578063afa4f3b2116100b6578063e01af92c1161007a578063e01af92c14610771578063e2f4560514610791578063ec2a520a146107a7578063f2fde38b146107c7578063f34eb0b8146107e7578063f9d0831a1461080757600080fd5b8063afa4f3b2146106a5578063b62496f5146106c5578063c0246668146106f5578063d798cbd214610715578063dd62ed3e1461072b57600080fd5b806395d89b41116100fd57806395d89b411461061a5780639a7a23d61461062f578063a457c2d71461064f578063a9059cbb1461066f578063aa4bde281461068f57600080fd5b80637537a47f146105915780637afad249146105b157806388e765ff146105d15780638a8c523c146105e75780638da5cb5b146105fc57600080fd5b806349bd5a5e116101d257806365b8dbc01161019657806365b8dbc0146104b457806368092bd9146104d45780636c9bb93b146104f45780636ddd17131461052457806370a0823114610546578063715018a61461057c57600080fd5b806349bd5a5e146103f05780634dce97f1146104245780634fbee193146104395780635d0044ca146104725780635d098b381461049457600080fd5b806327c8f8351161021957806327c8f835146103335780632b14ca5614610349578063313ce5671461038957806339509351146103ab57806347062402146103cb57600080fd5b806306fdde0314610261578063095ea7b31461028c5780631694505e146102bc57806318160ddd146102f457806323b872dd1461031357600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610827565b6040516102839190612185565b60405180910390f35b34801561029857600080fd5b506102ac6102a73660046121ef565b6108b9565b6040519015158152602001610283565b3480156102c857600080fd5b506006546102dc906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561030057600080fd5b506002545b604051908152602001610283565b34801561031f57600080fd5b506102ac61032e36600461221b565b6108cf565b34801561033f57600080fd5b506102dc61dead81565b34801561035557600080fd5b5060085461036e9061ffff808216916201000090041682565b6040805161ffff938416815292909116602083015201610283565b34801561039557600080fd5b5060125b60405160ff9091168152602001610283565b3480156103b757600080fd5b506102ac6103c63660046121ef565b61097e565b3480156103d757600080fd5b5060075461036e9061ffff808216916201000090041682565b3480156103fc57600080fd5b506102dc7f000000000000000000000000c577a776bfcf46527e5fb5b35d3506d9da9602fe81565b34801561043057600080fd5b50610399600381565b34801561044557600080fd5b506102ac61045436600461225c565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561047e57600080fd5b5061049261048d366004612279565b6109ba565b005b3480156104a057600080fd5b506104926104af36600461225c565b6109fc565b3480156104c057600080fd5b506104926104cf36600461225c565b610ab1565b3480156104e057600080fd5b506104926104ef3660046122a0565b610ba9565b34801561050057600080fd5b506102ac61050f36600461225c565b60126020526000908152604090205460ff1681565b34801561053057600080fd5b50600c546102ac90640100000000900460ff1681565b34801561055257600080fd5b5061030561056136600461225c565b6001600160a01b031660009081526020819052604090205490565b34801561058857600080fd5b50610492610bfe565b34801561059d57600080fd5b506104926105ac3660046122a0565b610c34565b3480156105bd57600080fd5b506104926105cc3660046122f0565b610c89565b3480156105dd57600080fd5b50610305600a5481565b3480156105f357600080fd5b50610492610d28565b34801561060857600080fd5b506005546001600160a01b03166102dc565b34801561062657600080fd5b50610276610d6f565b34801561063b57600080fd5b5061049261064a3660046122a0565b610d7e565b34801561065b57600080fd5b506102ac61066a3660046121ef565b610e73565b34801561067b57600080fd5b506102ac61068a3660046121ef565b610f0c565b34801561069b57600080fd5b50610305600b5481565b3480156106b157600080fd5b506104926106c0366004612279565b610f19565b3480156106d157600080fd5b506102ac6106e036600461225c565b60136020526000908152604090205460ff1681565b34801561070157600080fd5b506104926107103660046122a0565b610f5b565b34801561072157600080fd5b50610305600d5481565b34801561073757600080fd5b50610305610746366004612323565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077d57600080fd5b5061049261078c366004612351565b61106d565b34801561079d57600080fd5b5061030560095481565b3480156107b357600080fd5b506104926107c23660046122f0565b6110b7565b3480156107d357600080fd5b506104926107e236600461225c565b611156565b3480156107f357600080fd5b50610492610802366004612279565b6111f1565b34801561081357600080fd5b5061049261082236600461225c565b611291565b6060600380546108369061236e565b80601f01602080910402602001604051908101604052809291908181526020018280546108629061236e565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c633848461144c565b50600192915050565b60006108dc848484611570565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109665760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610973853385840361144c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108c69185906109b59086906123bf565b61144c565b6005546001600160a01b031633146109e45760405162461bcd60e51b815260040161095d906123d7565b6109f681670de0b6b3a764000061240c565b600b5550565b6005546001600160a01b03163314610a265760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b038116610a8f5760405162461bcd60e51b815260206004820152602a60248201527f4d61726b6574696e672077616c6c65742063616e206e6f742062652061207a65604482015269726f206164647265737360b01b606482015260840161095d565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161095d906123d7565b6006546001600160a01b0382811691161415610b4c5760405162461bcd60e51b815260206004820152602a60248201527f546f6b656e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b606482015260840161095d565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bd35760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c285760405162461bcd60e51b815260040161095d906123d7565b610c326000611ad0565b565b6005546001600160a01b03163314610c5e5760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cb35760405162461bcd60e51b815260040161095d906123d7565b6019610cbf828461242b565b61ffff161115610d005760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b604482015260640161095d565b6007805461ffff928316620100000263ffffffff199091169290931691909117919091179055565b6005546001600160a01b03163314610d525760405162461bcd60e51b815260040161095d906123d7565b600c805465ff000000000019166501000000000017905543600d55565b6060600480546108369061236e565b6005546001600160a01b03163314610da85760405162461bcd60e51b815260040161095d906123d7565b7f000000000000000000000000c577a776bfcf46527e5fb5b35d3506d9da9602fe6001600160a01b0316826001600160a01b03161415610e655760405162461bcd60e51b815260206004820152604c60248201527f546f6b656e3a205468652050616e63616b655377617020706169722063616e6e60448201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60648201526b65744d616b6572506169727360a01b608482015260a40161095d565b610e6f8282611b22565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ef55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161095d565b610f02338585840361144c565b5060019392505050565b60006108c6338484611570565b6005546001600160a01b03163314610f435760405162461bcd60e51b815260040161095d906123d7565b610f5581670de0b6b3a764000061240c565b60095550565b6005546001600160a01b03163314610f855760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b03821660009081526010602052604090205460ff161515811515141561100e5760405162461bcd60e51b815260206004820152603160248201527f546f6b656e3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b606482015260840161095d565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110975760405162461bcd60e51b815260040161095d906123d7565b600c80549115156401000000000264ff0000000019909216919091179055565b6005546001600160a01b031633146110e15760405162461bcd60e51b815260040161095d906123d7565b60196110ed828461242b565b61ffff16111561112e5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b604482015260640161095d565b6008805461ffff928316620100000263ffffffff199091169290931691909117919091179055565b6005546001600160a01b031633146111805760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b0381166111e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095d565b6111ee81611ad0565b50565b6005546001600160a01b0316331461121b5760405162461bcd60e51b815260040161095d906123d7565b620186a08110156112795760405162461bcd60e51b815260206004820152602260248201527f43616e277420736574206c6f77657220616d6f756e742c204e6f2072756750756044820152611b1b60f21b606482015260840161095d565b61128b81670de0b6b3a764000061240c565b600a5550565b6005546001600160a01b031633146112bb5760405162461bcd60e51b815260040161095d906123d7565b6001600160a01b0381163014156112fe5760405162461bcd60e51b81526020600482015260076024820152664e6f207275677360c81b604482015260640161095d565b6001600160a01b038116611345576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e6f573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561138e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b29190612451565b9050816001600160a01b031663a9059cbb6113d56005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611422573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611446919061246a565b50505050565b6001600160a01b0383166114ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161095d565b6001600160a01b03821661150f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161095d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115d45760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161095d565b6001600160a01b0382166116365760405162461bcd60e51b815260206004820152602360248201527f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161095d565b6001600160a01b03831660009081526012602052604090205460ff1615801561167857506001600160a01b03821660009081526012602052604090205460ff16155b6116bd5760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b604482015260640161095d565b600c5465010000000000900460ff16806116ef57506001600160a01b03831660009081526010602052604090205460ff165b61173b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c656420796574000000000000000000604482015260640161095d565b806117515761174c83836000611c0b565b505050565b30600090815260208190526040902054600954600c549082101590640100000000900460ff16801561178d5750600654600160a01b900460ff16155b80156117cb57507f000000000000000000000000c577a776bfcf46527e5fb5b35d3506d9da9602fe6001600160a01b0316856001600160a01b031614155b80156117d45750805b1561186657600954600c549092506000906117fb9061ffff6201000082048116911661242b565b6008546007549192506000916118409161ffff8086169261183a9261182f926201000091829004811692919091041661242b565b879061ffff16611dde565b90611df1565b905061184b81611dfd565b60006118578286612487565b905061186281611ea4565b5050505b6001600160a01b03851660009081526010602052604090205460019060ff16806118a857506001600160a01b03851660009081526010602052604090205460ff165b156118b1575060005b8015611abd576001600160a01b03851660009081526013602052604081205460ff16156118eb5750600c5462010000900461ffff16611915565b6001600160a01b03871660009081526013602052604090205460ff16156119155750600c5461ffff165b6001600160a01b03871660009081526011602052604090205460ff1615801561195757506001600160a01b03861660009081526011602052604090205460ff16155b15611a90576001600160a01b03871660009081526013602052604090205460ff16156119fd57600a548511156119c35760405162461bcd60e51b8152602060048201526011602482015270109d5e48195e18d959591cc81b1a5b5a5d607a1b604482015260640161095d565b600d546119d2906003906123bf565b4310156119fd576001600160a01b0386166000908152601260205260409020805460ff191660011790555b6001600160a01b03861660009081526013602052604090205460ff16611a9057600b5485611a40886001600160a01b031660009081526020819052604090205490565b611a4a91906123bf565b1115611a905760405162461bcd60e51b815260206004820152601560248201527410985b185b98d948195e18d959591cc81b1a5b5a5d605a1b604482015260640161095d565b6000611aa1606461183a8885611dde565b9050611aad8682611f75565b9550611aba883083611c0b565b50505b611ac8868686611c0b565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415611bb75760405162461bcd60e51b815260206004820152603f60248201527f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c756500606482015260840161095d565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c6f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161095d565b6001600160a01b038216611cd15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161095d565b6001600160a01b03831660009081526020819052604090205481811015611d495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161095d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d809084906123bf565b90915550508115611dd957826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dd091815260200190565b60405180910390a35b611446565b6000611dea828461240c565b9392505050565b6000611dea828461249e565b6006805460ff60a01b1916600160a01b1790556000611e1d826002611df1565b90506000611e2b8383611f75565b905047611e3783611f81565b6000611e434783611f75565b9050611e4f83826120d3565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506006805460ff60a01b19169055505050565b6006805460ff60a01b1916600160a01b17905547611ec182611f81565b6000611ecd4783611f75565b90506000611edc826009611df1565b90506000611eea8284612487565b600f546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015611f25573d6000803e3d6000fd5b50600e546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611f60573d6000803e3d6000fd5b50506006805460ff60a01b1916905550505050565b6000611dea8284612487565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fb657611fb66124c0565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561200f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203391906124d6565b81600181518110612046576120466124c0565b6001600160a01b03928316602091820292909201015260065461206c913091168461144c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906120a59085906000908690309042906004016124f3565b600060405180830381600087803b1580156120bf57600080fd5b505af1158015611ac8573d6000803e3d6000fd5b6006546120eb9030906001600160a01b03168461144c565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612159573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217e9190612564565b5050505050565b600060208083528351808285015260005b818110156121b257858101830151858201604001528201612196565b818111156121c4576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146111ee57600080fd5b6000806040838503121561220257600080fd5b823561220d816121da565b946020939093013593505050565b60008060006060848603121561223057600080fd5b833561223b816121da565b9250602084013561224b816121da565b929592945050506040919091013590565b60006020828403121561226e57600080fd5b8135611dea816121da565b60006020828403121561228b57600080fd5b5035919050565b80151581146111ee57600080fd5b600080604083850312156122b357600080fd5b82356122be816121da565b915060208301356122ce81612292565b809150509250929050565b803561ffff811681146122eb57600080fd5b919050565b6000806040838503121561230357600080fd5b61230c836122d9565b915061231a602084016122d9565b90509250929050565b6000806040838503121561233657600080fd5b8235612341816121da565b915060208301356122ce816121da565b60006020828403121561236357600080fd5b8135611dea81612292565b600181811c9082168061238257607f821691505b602082108114156123a357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156123d2576123d26123a9565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615612426576124266123a9565b500290565b600061ffff808316818516808303821115612448576124486123a9565b01949350505050565b60006020828403121561246357600080fd5b5051919050565b60006020828403121561247c57600080fd5b8151611dea81612292565b600082821015612499576124996123a9565b500390565b6000826124bb57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156124e857600080fd5b8151611dea816121da565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125435784516001600160a01b03168352938301939183019160010161251e565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561257957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220222619d348b3235370c06781d5d3f62e822143baa52e996d1f24f590fd50b4fc64736f6c634300080a0033

Deployed Bytecode Sourcemap

44711:12415:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34654:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36821:169;;;;;;;;;;-1:-1:-1;36821:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;36821:169:0;1072:187:1;44790:41:0;;;;;;;;;;-1:-1:-1;44790:41:0;;;;-1:-1:-1;;;;;44790:41:0;;;;;;-1:-1:-1;;;;;1454:32:1;;;1436:51;;1424:2;1409:18;44790:41:0;1264:229:1;35774:108:0;;;;;;;;;;-1:-1:-1;35862:12:0;;35774:108;;;1644:25:1;;;1632:2;1617:18;35774:108:0;1498:177:1;37472:492:0;;;;;;;;;;-1:-1:-1;37472:492:0;;;;;:::i;:::-;;:::i;44883:53::-;;;;;;;;;;;;44929:6;44883:53;;45222:22;;;;;;;;;;-1:-1:-1;45222:22:0;;;;;;;;;;;;;;;;;;;2529:6:1;2562:15;;;2544:34;;2614:15;;;;2609:2;2594:18;;2587:43;2492:18;45222:22:0;2349:287:1;35616:93:0;;;;;;;;;;-1:-1:-1;35699:2:0;35616:93;;;2813:4:1;2801:17;;;2783:36;;2771:2;2756:18;35616:93:0;2641:184:1;38373:215:0;;;;;;;;;;-1:-1:-1;38373:215:0;;;;;:::i;:::-;;:::i;45195:20::-;;;;;;;;;;-1:-1:-1;45195:20:0;;;;;;;;;;;;;;;44838:38;;;;;;;;;;;;;;;45697:36;;;;;;;;;;;;45732:1;45697:36;;51147:126;;;;;;;;;;-1:-1:-1;51147:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;51237:28:0;51213:4;51237:28;;;:19;:28;;;;;;;;;51147:126;51604:109;;;;;;;;;;-1:-1:-1;51604:109:0;;;;;:::i;:::-;;:::i;:::-;;51287:208;;;;;;;;;;-1:-1:-1;51287:208:0;;;;;:::i;:::-;;:::i;48361:351::-;;;;;;;;;;-1:-1:-1;48361:351:0;;;;;:::i;:::-;;:::i;49652:114::-;;;;;;;;;;-1:-1:-1;49652:114:0;;;;;:::i;:::-;;:::i;46109:46::-;;;;;;;;;;-1:-1:-1;46109:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45592:23;;;;;;;;;;-1:-1:-1;45592:23:0;;;;;;;;;;;35945:127;;;;;;;;;;-1:-1:-1;35945:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;36046:18:0;36019:7;36046:18;;;;;;;;;;;;35945:127;28075:103;;;;;;;;;;;;;:::i;49485:159::-;;;;;;;;;;-1:-1:-1;49485:159:0;;;;;:::i;:::-;;:::i;50601:254::-;;;;;;;;;;-1:-1:-1;50601:254:0;;;;;:::i;:::-;;:::i;45348:48::-;;;;;;;;;;;;;;;;49773:129;;;;;;;;;;;;;:::i;27424:87::-;;;;;;;;;;-1:-1:-1;27497:6:0;;-1:-1:-1;;;;;27497:6:0;27424:87;;34873:104;;;;;;;;;;;;;:::i;49910:323::-;;;;;;;;;;-1:-1:-1;49910:323:0;;;;;:::i;:::-;;:::i;39091:413::-;;;;;;;;;;-1:-1:-1;39091:413:0;;;;;:::i;:::-;;:::i;36285:175::-;;;;;;;;;;-1:-1:-1;36285:175:0;;;;;:::i;:::-;;:::i;45425:51::-;;;;;;;;;;;;;;;;51909:121;;;;;;;;;;-1:-1:-1;51909:121:0;;;;;:::i;:::-;;:::i;46313:57::-;;;;;;;;;;-1:-1:-1;46313:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48720:334;;;;;;;;;;-1:-1:-1;48720:334:0;;;;;:::i;:::-;;:::i;45658:32::-;;;;;;;;;;;;;;;;36523:151;;;;;;;;;;-1:-1:-1;36523:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;36639:18:0;;;36612:7;36639:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;36523:151;51503:93;;;;;;;;;;-1:-1:-1;51503:93:0;;;;;:::i;:::-;;:::i;45261:56::-;;;;;;;;;;;;;;;;50865:267;;;;;;;;;;-1:-1:-1;50865:267:0;;;;;:::i;:::-;;:::i;28333:201::-;;;;;;;;;;-1:-1:-1;28333:201:0;;;;;:::i;:::-;;:::i;51721:181::-;;;;;;;;;;-1:-1:-1;51721:181:0;;;;;:::i;:::-;;:::i;49063:414::-;;;;;;;;;;-1:-1:-1;49063:414:0;;;;;:::i;:::-;;:::i;34654:100::-;34708:13;34741:5;34734:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34654:100;:::o;36821:169::-;36904:4;36921:39;26208:10;36944:7;36953:6;36921:8;:39::i;:::-;-1:-1:-1;36978:4:0;36821:169;;;;:::o;37472:492::-;37612:4;37629:36;37639:6;37647:9;37658:6;37629:9;:36::i;:::-;-1:-1:-1;;;;;37705:19:0;;37678:24;37705:19;;;:11;:19;;;;;;;;26208:10;37705:33;;;;;;;;37757:26;;;;37749:79;;;;-1:-1:-1;;;37749:79:0;;5428:2:1;37749:79:0;;;5410:21:1;5467:2;5447:18;;;5440:30;5506:34;5486:18;;;5479:62;-1:-1:-1;;;5557:18:1;;;5550:38;5605:19;;37749:79:0;;;;;;;;;37864:57;37873:6;26208:10;37914:6;37895:16;:25;37864:8;:57::i;:::-;-1:-1:-1;37952:4:0;;37472:492;-1:-1:-1;;;;37472:492:0:o;38373:215::-;26208:10;38461:4;38510:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;38510:34:0;;;;;;;;;;38461:4;;38478:80;;38501:7;;38510:47;;38547:10;;38510:47;:::i;:::-;38478:8;:80::i;51604:109::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;51690:15:::1;:6:::0;51699::::1;51690:15;:::i;:::-;51672;:33:::0;-1:-1:-1;51604:109:0:o;51287:208::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51369:23:0;::::1;51360:79;;;::::0;-1:-1:-1;;;51360:79:0;;6636:2:1;51360:79:0::1;::::0;::::1;6618:21:1::0;6675:2;6655:18;;;6648:30;6714:34;6694:18;;;6687:62;-1:-1:-1;;;6765:18:1;;;6758:40;6815:19;;51360:79:0::1;6434:406:1::0;51360:79:0::1;51450:16;:37:::0;;-1:-1:-1;;;;;;51450:37:0::1;-1:-1:-1::0;;;;;51450:37:0;;;::::1;::::0;;;::::1;::::0;;51287:208::o;48361:351::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;48484:15:::1;::::0;-1:-1:-1;;;;;48462:38:0;;::::1;48484:15:::0;::::1;48462:38;;48440:130;;;::::0;-1:-1:-1;;;48440:130:0;;7047:2:1;48440:130:0::1;::::0;::::1;7029:21:1::0;7086:2;7066:18;;;7059:30;7125:34;7105:18;;;7098:62;-1:-1:-1;;;7176:18:1;;;7169:40;7226:19;;48440:130:0::1;6845:406:1::0;48440:130:0::1;48628:15;::::0;48586:59:::1;::::0;-1:-1:-1;;;;;48628:15:0;;::::1;::::0;48586:59;::::1;::::0;::::1;::::0;48628:15:::1;::::0;48586:59:::1;48656:15;:48:::0;;-1:-1:-1;;;;;;48656:48:0::1;-1:-1:-1::0;;;;;48656:48:0;;;::::1;::::0;;;::::1;::::0;;48361:351::o;49652:114::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49730:20:0;;;::::1;;::::0;;;:14:::1;:20;::::0;;;;:28;;-1:-1:-1;;49730:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49652:114::o;28075:103::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;28140:30:::1;28167:1;28140:18;:30::i;:::-;28075:103::o:0;49485:159::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49596:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;49596:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49485:159::o;50601:254::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;50744:2:::1;50721:19;50731:9:::0;50721;:19:::1;:::i;:::-;:25;;;;50713:50;;;::::0;-1:-1:-1;;;50713:50:0;;7687:2:1;50713:50:0::1;::::0;::::1;7669:21:1::0;7726:2;7706:18;;;7699:30;-1:-1:-1;;;7745:18:1;;;7738:42;7797:18;;50713:50:0::1;7485:336:1::0;50713:50:0::1;50774:6;:31:::0;;::::1;50816::::0;;::::1;::::0;::::1;-1:-1:-1::0;;50816:31:0;;;50774;;;::::1;50816::::0;;;;;;;::::1;::::0;;50601:254::o;49773:129::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;49828:16:::1;:23:::0;;-1:-1:-1;;49828:23:0::1;::::0;::::1;::::0;;49882:12:::1;49862:17;:32:::0;49773:129::o;34873:104::-;34929:13;34962:7;34955:14;;;;;:::i;49910:323::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;50054:13:::1;-1:-1:-1::0;;;;;50046:21:0::1;:4;-1:-1:-1::0;;;;;50046:21:0::1;;;50024:147;;;::::0;-1:-1:-1;;;50024:147:0;;8028:2:1;50024:147:0::1;::::0;::::1;8010:21:1::0;8067:2;8047:18;;;8040:30;8106:34;8086:18;;;8079:62;8177:34;8157:18;;;8150:62;-1:-1:-1;;;8228:19:1;;;8221:43;8281:19;;50024:147:0::1;7826:480:1::0;50024:147:0::1;50184:41;50213:4;50219:5;50184:28;:41::i;:::-;49910:323:::0;;:::o;39091:413::-;26208:10;39184:4;39228:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;39228:34:0;;;;;;;;;;39281:35;;;;39273:85;;;;-1:-1:-1;;;39273:85:0;;8513:2:1;39273:85:0;;;8495:21:1;8552:2;8532:18;;;8525:30;8591:34;8571:18;;;8564:62;-1:-1:-1;;;8642:18:1;;;8635:35;8687:19;;39273:85:0;8311:401:1;39273:85:0;39394:67;26208:10;39417:7;39445:15;39426:16;:34;39394:8;:67::i;:::-;-1:-1:-1;39492:4:0;;39091:413;-1:-1:-1;;;39091:413:0:o;36285:175::-;36371:4;36388:42;26208:10;36412:9;36423:6;36388:9;:42::i;51909:121::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;52007:15:::1;:6:::0;52016::::1;52007:15;:::i;:::-;51985:18;:37:::0;-1:-1:-1;51909:121:0:o;48720:334::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48827:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;48805:139;;;::::0;-1:-1:-1;;;48805:139:0;;8919:2:1;48805:139:0::1;::::0;::::1;8901:21:1::0;8958:2;8938:18;;;8931:30;8997:34;8977:18;;;8970:62;-1:-1:-1;;;9048:18:1;;;9041:47;9105:19;;48805:139:0::1;8717:413:1::0;48805:139:0::1;-1:-1:-1::0;;;;;48955:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;48955:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;49012:34;;1212:41:1;;;49012:34:0::1;::::0;1185:18:1;49012:34:0::1;;;;;;;48720:334:::0;;:::o;51503:93::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;51569:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51569:19:0;;::::1;::::0;;;::::1;::::0;;51503:93::o;50865:267::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;51018:2:::1;50995:19;51005:9:::0;50995;:19:::1;:::i;:::-;:25;;;;50987:50;;;::::0;-1:-1:-1;;;50987:50:0;;7687:2:1;50987:50:0::1;::::0;::::1;7669:21:1::0;7726:2;7706:18;;;7699:30;-1:-1:-1;;;7745:18:1;;;7738:42;7797:18;;50987:50:0::1;7485:336:1::0;50987:50:0::1;51048:7;:32:::0;;::::1;51092::::0;;::::1;::::0;::::1;-1:-1:-1::0;;51092:32:0;;;51048;;;::::1;51092::::0;;;;;;;::::1;::::0;;50865:267::o;28333:201::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28422:22:0;::::1;28414:73;;;::::0;-1:-1:-1;;;28414:73:0;;9337:2:1;28414:73:0::1;::::0;::::1;9319:21:1::0;9376:2;9356:18;;;9349:30;9415:34;9395:18;;;9388:62;-1:-1:-1;;;9466:18:1;;;9459:36;9512:19;;28414:73:0::1;9135:402:1::0;28414:73:0::1;28498:28;28517:8;28498:18;:28::i;:::-;28333:201:::0;:::o;51721:181::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;51808:6:::1;51798;:16;;51790:63;;;::::0;-1:-1:-1;;;51790:63:0;;9744:2:1;51790:63:0::1;::::0;::::1;9726:21:1::0;9783:2;9763:18;;;9756:30;9822:34;9802:18;;;9795:62;-1:-1:-1;;;9873:18:1;;;9866:32;9915:19;;51790:63:0::1;9542:398:1::0;51790:63:0::1;51879:15;:6:::0;51888::::1;51879:15;:::i;:::-;51864:12;:30:::0;-1:-1:-1;51721:181:0:o;49063:414::-;27497:6;;-1:-1:-1;;;;;27497:6:0;26208:10;27644:23;27636:68;;;;-1:-1:-1;;;27636:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49143:23:0;::::1;49161:4;49143:23;;49135:43;;;::::0;-1:-1:-1;;;49135:43:0;;10147:2:1;49135:43:0::1;::::0;::::1;10129:21:1::0;10186:1;10166:18;;;10159:29;-1:-1:-1;;;10204:18:1;;;10197:37;10251:18;;49135:43:0::1;9945:330:1::0;49135:43:0::1;-1:-1:-1::0;;;;;49193:22:0;::::1;49189:124;;27497:6:::0;;49232:48:::1;::::0;-1:-1:-1;;;;;27497:6:0;;;;49258:21:::1;49232:48:::0;::::1;;;::::0;::::1;::::0;;;49258:21;27497:6;49232:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;49189:124;49386:35;::::0;-1:-1:-1;;;49386:35:0;;49415:4:::1;49386:35;::::0;::::1;1436:51:1::0;49350:6:0;;49323:17:::1;::::0;-1:-1:-1;;;;;49386:20:0;::::1;::::0;::::1;::::0;1409:18:1;;49386:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49368:53;;49432:10;-1:-1:-1::0;;;;;49432:19:0::1;;49452:7;27497:6:::0;;-1:-1:-1;;;;;27497:6:0;;27424:87;49452:7:::1;49432:37;::::0;-1:-1:-1;;;;;;49432:37:0::1;::::0;;;;;;-1:-1:-1;;;;;10661:32:1;;;49432:37:0::1;::::0;::::1;10643:51:1::0;10710:18;;;10703:34;;;10616:18;;49432:37:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49124:353;;49063:414:::0;:::o;42805:380::-;-1:-1:-1;;;;;42941:19:0;;42933:68;;;;-1:-1:-1;;;42933:68:0;;11200:2:1;42933:68:0;;;11182:21:1;11239:2;11219:18;;;11212:30;11278:34;11258:18;;;11251:62;-1:-1:-1;;;11329:18:1;;;11322:34;11373:19;;42933:68:0;10998:400:1;42933:68:0;-1:-1:-1;;;;;43020:21:0;;43012:68;;;;-1:-1:-1;;;43012:68:0;;11605:2:1;43012:68:0;;;11587:21:1;11644:2;11624:18;;;11617:30;11683:34;11663:18;;;11656:62;-1:-1:-1;;;11734:18:1;;;11727:32;11776:19;;43012:68:0;11403:398:1;43012:68:0;-1:-1:-1;;;;;43093:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43145:32;;1644:25:1;;;43145:32:0;;1617:18:1;43145:32:0;;;;;;;42805:380;;;:::o;52050:2747::-;-1:-1:-1;;;;;52182:18:0;;52174:68;;;;-1:-1:-1;;;52174:68:0;;12008:2:1;52174:68:0;;;11990:21:1;12047:2;12027:18;;;12020:30;12086:34;12066:18;;;12059:62;-1:-1:-1;;;12137:18:1;;;12130:35;12182:19;;52174:68:0;11806:401:1;52174:68:0;-1:-1:-1;;;;;52261:16:0;;52253:64;;;;-1:-1:-1;;;52253:64:0;;12414:2:1;52253:64:0;;;12396:21:1;12453:2;12433:18;;;12426:30;12492:34;12472:18;;;12465:62;-1:-1:-1;;;12543:18:1;;;12536:33;12586:19;;52253:64:0;12212:399:1;52253:64:0;-1:-1:-1;;;;;52351:20:0;;;;;;:14;:20;;;;;;;;52350:21;:44;;;;-1:-1:-1;;;;;;52376:18:0;;;;;;:14;:18;;;;;;;;52375:19;52350:44;52328:116;;;;-1:-1:-1;;;52328:116:0;;12818:2:1;52328:116:0;;;12800:21:1;12857:2;12837:18;;;12830:30;-1:-1:-1;;;12876:18:1;;;12869:52;12938:18;;52328:116:0;12616:346:1;52328:116:0;52459:16;;;;;;;;:45;;-1:-1:-1;;;;;;52479:25:0;;;;;;:19;:25;;;;;;;;52459:45;52450:105;;;;-1:-1:-1;;;52450:105:0;;13169:2:1;52450:105:0;;;13151:21:1;13208:2;13188:18;;;13181:30;13247:25;13227:18;;;13220:53;13290:18;;52450:105:0;12967:347:1;52450:105:0;52572:11;52568:93;;52600:28;52616:4;52622:2;52626:1;52600:15;:28::i;:::-;52050:2747;;;:::o;52568:93::-;52722:4;52673:28;36046:18;;;;;;;;;;;52807;;52856:11;;52770:55;;;;;52856:11;;;;;:37;;;;-1:-1:-1;52885:8:0;;-1:-1:-1;;;52885:8:0;;;;52884:9;52856:37;:75;;;;;52918:13;-1:-1:-1;;;;;52910:21:0;:4;-1:-1:-1;;;;;52910:21:0;;;52856:75;:115;;;;;52948:23;52856:115;52838:593;;;53021:18;;53086:12;;53021:18;;-1:-1:-1;53054:15:0;;53072:26;;53086:12;;;;;;;53072:11;:26;:::i;:::-;53201:7;:20;53179:6;:19;53054:44;;-1:-1:-1;53115:18:0;;53136:118;;;;;;;:86;;53179:42;;53201:20;;;;;;;;53179:19;;;;;:42;:::i;:::-;53136:20;;:86;;:42;:86::i;:::-;:108;;:118::i;:::-;53115:139;;53269:26;53284:10;53269:14;:26::i;:::-;53312:17;53332:33;53355:10;53332:20;:33;:::i;:::-;53312:53;;53384:33;53407:9;53384:22;:33::i;:::-;52983:448;;;52838:593;-1:-1:-1;;;;;53564:25:0;;53443:12;53564:25;;;:19;:25;;;;;;53458:4;;53564:25;;;:52;;-1:-1:-1;;;;;;53593:23:0;;;;;;:19;:23;;;;;;;;53564:52;53560:100;;;-1:-1:-1;53643:5:0;53560:100;53676:7;53672:1070;;;-1:-1:-1;;;;;53747:29:0;;53700:12;53747:29;;;:25;:29;;;;;;;;53743:185;;;-1:-1:-1;53804:12:0;;;;;;;53743:185;;;-1:-1:-1;;;;;53842:31:0;;;;;;:25;:31;;;;;;;;53838:90;;;-1:-1:-1;53901:11:0;;;;53838:90;-1:-1:-1;;;;;53949:26:0;;;;;;:20;:26;;;;;;;;53948:27;:56;;;;-1:-1:-1;;;;;;53980:24:0;;;;;;:20;:24;;;;;;;;53979:25;53948:56;53944:616;;;-1:-1:-1;;;;;54029:31:0;;;;;;:25;:31;;;;;;;;54025:273;;;54101:12;;54091:6;:22;;54083:52;;;;-1:-1:-1;;;54083:52:0;;13651:2:1;54083:52:0;;;13633:21:1;13690:2;13670:18;;;13663:30;-1:-1:-1;;;13709:18:1;;;13702:47;13766:18;;54083:52:0;13449:341:1;54083:52:0;54176:17;;:30;;45732:1;;54176:30;:::i;:::-;54161:12;:45;54157:122;;;-1:-1:-1;;;;;54231:18:0;;;;;;:14;:18;;;;;:25;;-1:-1:-1;;54231:25:0;54252:4;54231:25;;;54157:122;-1:-1:-1;;;;;54323:29:0;;;;;;:25;:29;;;;;;;;54318:227;;54437:15;;54427:6;54411:13;54421:2;-1:-1:-1;;;;;36046:18:0;36019:7;36046:18;;;;;;;;;;;;35945:127;54411:13;:22;;;;:::i;:::-;:41;;54377:148;;;;-1:-1:-1;;;54377:148:0;;13997:2:1;54377:148:0;;;13979:21:1;14036:2;14016:18;;;14009:30;-1:-1:-1;;;14055:18:1;;;14048:51;14116:18;;54377:148:0;13795:345:1;54377:148:0;54576:17;54596:25;54617:3;54596:16;:6;54607:4;54596:10;:16::i;:25::-;54576:45;-1:-1:-1;54645:21:0;:6;54576:45;54645:10;:21::i;:::-;54636:30;;54683:47;54699:4;54713;54720:9;54683:15;:47::i;:::-;53685:1057;;53672:1070;54754:33;54770:4;54776:2;54780:6;54754:15;:33::i;:::-;52163:2634;;;52050:2747;;;:::o;28694:191::-;28787:6;;;-1:-1:-1;;;;;28804:17:0;;;-1:-1:-1;;;;;;28804:17:0;;;;;;;28837:40;;28787:6;;;28804:17;28787:6;;28837:40;;28768:16;;28837:40;28757:128;28694:191;:::o;50241:352::-;-1:-1:-1;;;;;50346:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;50324:153;;;;-1:-1:-1;;;50324:153:0;;14347:2:1;50324:153:0;;;14329:21:1;14386:2;14366:18;;;14359:30;14425:34;14405:18;;;14398:62;14496:33;14476:18;;;14469:61;14547:19;;50324:153:0;14145:427:1;50324:153:0;-1:-1:-1;;;;;50488:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;50488:39:0;;;;;;;;;;50545:40;;50488:39;;:31;50545:40;;;50241:352;;:::o;39994:763::-;-1:-1:-1;;;;;40134:20:0;;40126:70;;;;-1:-1:-1;;;40126:70:0;;14779:2:1;40126:70:0;;;14761:21:1;14818:2;14798:18;;;14791:30;14857:34;14837:18;;;14830:62;-1:-1:-1;;;14908:18:1;;;14901:35;14953:19;;40126:70:0;14577:401:1;40126:70:0;-1:-1:-1;;;;;40215:23:0;;40207:71;;;;-1:-1:-1;;;40207:71:0;;15185:2:1;40207:71:0;;;15167:21:1;15224:2;15204:18;;;15197:30;15263:34;15243:18;;;15236:62;-1:-1:-1;;;15314:18:1;;;15307:33;15357:19;;40207:71:0;14983:399:1;40207:71:0;-1:-1:-1;;;;;40375:17:0;;40351:21;40375:17;;;;;;;;;;;40411:23;;;;40403:74;;;;-1:-1:-1;;;40403:74:0;;15589:2:1;40403:74:0;;;15571:21:1;15628:2;15608:18;;;15601:30;15667:34;15647:18;;;15640:62;-1:-1:-1;;;15718:18:1;;;15711:36;15764:19;;40403:74:0;15387:402:1;40403:74:0;-1:-1:-1;;;;;40513:17:0;;;:9;:17;;;;;;;;;;;40533:22;;;40513:42;;40577:20;;;;;;;;:30;;40549:6;;40513:9;40577:30;;40549:6;;40577:30;:::i;:::-;;;;-1:-1:-1;;40624:10:0;;40620:71;;40671:9;-1:-1:-1;;;;;40654:35:0;40663:6;-1:-1:-1;;;;;40654:35:0;;40682:6;40654:35;;;;1644:25:1;;1632:2;1617:18;;1498:177;40654:35:0;;;;;;;;40620:71;40703:46;52050:2747;22022:98;22080:7;22107:5;22111:1;22107;:5;:::i;:::-;22100:12;22022:98;-1:-1:-1;;;22022:98:0:o;22421:::-;22479:7;22506:5;22510:1;22506;:5;:::i;55856:670::-;47023:8;:15;;-1:-1:-1;;;;47023:15:0;-1:-1:-1;;;47023:15:0;;;;55993:13:::1;:6:::0;56004:1:::1;55993:10;:13::i;:::-;55978:28:::0;-1:-1:-1;56017:17:0::1;56037:16;:6:::0;55978:28;56037:10:::1;:16::i;:::-;56017:36:::0;-1:-1:-1;56091:21:0::1;56157:22;56174:4:::0;56157:16:::1;:22::i;:::-;56310:18;56331:41;:21;56357:14:::0;56331:25:::1;:41::i;:::-;56310:62;;56422:35;56435:9;56446:10;56422:12;:35::i;:::-;56475:43;::::0;;16218:25:1;;;16274:2;16259:18;;16252:34;;;16302:18;;;16295:34;;;56475:43:0::1;::::0;16206:2:1;16191:18;56475:43:0::1;;;;;;;-1:-1:-1::0;;47061:8:0;:16;;-1:-1:-1;;;;47061:16:0;;;-1:-1:-1;;;55856:670:0:o;54805:518::-;47023:8;:15;;-1:-1:-1;;;;47023:15:0;-1:-1:-1;;;47023:15:0;;;54909:21:::1;54943:24;54960:6:::0;54943:16:::1;:24::i;:::-;55026:18;55047:41;:21;55073:14:::0;55047:25:::1;:41::i;:::-;55026:62:::0;-1:-1:-1;55109:16:0::1;55128:17;55026:62:::0;55143:1:::1;55128:14;:17::i;:::-;55109:36:::0;-1:-1:-1;55156:22:0::1;55181:21;55109:36:::0;55181:10;:21:::1;:::i;:::-;55224:10;::::0;:29:::1;::::0;55156:46;;-1:-1:-1;;;;;;55224:10:0::1;::::0;:29;::::1;;;::::0;55244:8;;55224:10:::1;:29:::0;:10;:29;55244:8;55224:10;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;55264:16:0::1;::::0;:41:::1;::::0;-1:-1:-1;;;;;55264:16:0;;::::1;::::0;:41;::::1;;;::::0;55290:14;;55264:16:::1;:41:::0;:16;:41;55290:14;55264:16;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;47061:8:0;:16;;-1:-1:-1;;;;47061:16:0;;;-1:-1:-1;;;;54805:518:0:o;21665:98::-;21723:7;21750:5;21754:1;21750;:5;:::i;56534:589::-;56684:16;;;56698:1;56684:16;;;;;;;;56660:21;;56684:16;;;;;;;;;;-1:-1:-1;56684:16:0;56660:40;;56729:4;56711;56716:1;56711:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56711:23:0;;;:7;;;;;;;;;;:23;;;;56755:15;;:22;;;-1:-1:-1;;;56755:22:0;;;;:15;;;;;:20;;:22;;;;;56711:7;;56755:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56745:4;56750:1;56745:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56745:32:0;;;:7;;;;;;;;;:32;56822:15;;56790:62;;56807:4;;56822:15;56840:11;56790:8;:62::i;:::-;56891:15;;:224;;-1:-1:-1;;;56891:224:0;;-1:-1:-1;;;;;56891:15:0;;;;:66;;:224;;56972:11;;56891:15;;57042:4;;57069;;57089:15;;56891:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55331:517;55511:15;;55479:62;;55496:4;;-1:-1:-1;;;;;55511:15:0;55529:11;55479:8;:62::i;:::-;55584:15;;:256;;-1:-1:-1;;;55584:256:0;;55656:4;55584:256;;;18186:34:1;18236:18;;;18229:34;;;55584:15:0;18279:18:1;;;18272:34;;;18322:18;;;18315:34;44929:6:0;18365:19:1;;;18358:44;55814:15:0;18418:19:1;;;18411:35;-1:-1:-1;;;;;55584:15:0;;;;:31;;55623:9;;18120:19:1;;55584:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;55331:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;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;1680:456::-;1757:6;1765;1773;1826:2;1814:9;1805:7;1801:23;1797:32;1794:52;;;1842:1;1839;1832:12;1794:52;1881:9;1868:23;1900:31;1925:5;1900:31;:::i;:::-;1950:5;-1:-1:-1;2007:2:1;1992:18;;1979:32;2020:33;1979:32;2020:33;:::i;:::-;1680:456;;2072:7;;-1:-1:-1;;;2126:2:1;2111:18;;;;2098:32;;1680:456::o;2830:247::-;2889:6;2942:2;2930:9;2921:7;2917:23;2913:32;2910:52;;;2958:1;2955;2948:12;2910:52;2997:9;2984:23;3016:31;3041:5;3016:31;:::i;3082:180::-;3141:6;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;-1:-1:-1;3233:23:1;;3082:180;-1:-1:-1;3082:180:1:o;3267:118::-;3353:5;3346:13;3339:21;3332:5;3329:32;3319:60;;3375:1;3372;3365:12;3390:382;3455:6;3463;3516:2;3504:9;3495:7;3491:23;3487:32;3484:52;;;3532:1;3529;3522:12;3484:52;3571:9;3558:23;3590:31;3615:5;3590:31;:::i;:::-;3640:5;-1:-1:-1;3697:2:1;3682:18;;3669:32;3710:30;3669:32;3710:30;:::i;:::-;3759:7;3749:17;;;3390:382;;;;;:::o;3777:159::-;3844:20;;3904:6;3893:18;;3883:29;;3873:57;;3926:1;3923;3916:12;3873:57;3777:159;;;:::o;3941:256::-;4007:6;4015;4068:2;4056:9;4047:7;4043:23;4039:32;4036:52;;;4084:1;4081;4074:12;4036:52;4107:28;4125:9;4107:28;:::i;:::-;4097:38;;4154:37;4187:2;4176:9;4172:18;4154:37;:::i;:::-;4144:47;;3941:256;;;;;:::o;4202:388::-;4270:6;4278;4331:2;4319:9;4310:7;4306:23;4302:32;4299:52;;;4347:1;4344;4337:12;4299:52;4386:9;4373:23;4405:31;4430:5;4405:31;:::i;:::-;4455:5;-1:-1:-1;4512:2:1;4497:18;;4484:32;4525:33;4484:32;4525:33;:::i;4595:241::-;4651:6;4704:2;4692:9;4683:7;4679:23;4675:32;4672:52;;;4720:1;4717;4710:12;4672:52;4759:9;4746:23;4778:28;4800:5;4778:28;:::i;4841:380::-;4920:1;4916:12;;;;4963;;;4984:61;;5038:4;5030:6;5026:17;5016:27;;4984:61;5091:2;5083:6;5080:14;5060:18;5057:38;5054:161;;;5137:10;5132:3;5128:20;5125:1;5118:31;5172:4;5169:1;5162:15;5200:4;5197:1;5190:15;5054:161;;4841:380;;;:::o;5635:127::-;5696:10;5691:3;5687:20;5684:1;5677:31;5727:4;5724:1;5717:15;5751:4;5748:1;5741:15;5767:128;5807:3;5838:1;5834:6;5831:1;5828:13;5825:39;;;5844:18;;:::i;:::-;-1:-1:-1;5880:9:1;;5767:128::o;5900:356::-;6102:2;6084:21;;;6121:18;;;6114:30;6180:34;6175:2;6160:18;;6153:62;6247:2;6232:18;;5900:356::o;6261:168::-;6301:7;6367:1;6363;6359:6;6355:14;6352:1;6349:21;6344:1;6337:9;6330:17;6326:45;6323:71;;;6374:18;;:::i;:::-;-1:-1:-1;6414:9:1;;6261:168::o;7256:224::-;7295:3;7323:6;7356:2;7353:1;7349:10;7386:2;7383:1;7379:10;7417:3;7413:2;7409:12;7404:3;7401:21;7398:47;;;7425:18;;:::i;:::-;7461:13;;7256:224;-1:-1:-1;;;;7256:224:1:o;10280:184::-;10350:6;10403:2;10391:9;10382:7;10378:23;10374:32;10371:52;;;10419:1;10416;10409:12;10371:52;-1:-1:-1;10442:16:1;;10280:184;-1:-1:-1;10280:184:1:o;10748:245::-;10815:6;10868:2;10856:9;10847:7;10843:23;10839:32;10836:52;;;10884:1;10881;10874:12;10836:52;10916:9;10910:16;10935:28;10957:5;10935:28;:::i;13319:125::-;13359:4;13387:1;13384;13381:8;13378:34;;;13392:18;;:::i;:::-;-1:-1:-1;13429:9:1;;13319:125::o;15794:217::-;15834:1;15860;15850:132;;15904:10;15899:3;15895:20;15892:1;15885:31;15939:4;15936:1;15929:15;15967:4;15964:1;15957:15;15850:132;-1:-1:-1;15996:9:1;;15794:217::o;16472:127::-;16533:10;16528:3;16524:20;16521:1;16514:31;16564:4;16561:1;16554:15;16588:4;16585:1;16578:15;16604:251;16674:6;16727:2;16715:9;16706:7;16702:23;16698:32;16695:52;;;16743:1;16740;16733:12;16695:52;16775:9;16769:16;16794:31;16819:5;16794:31;:::i;16860:980::-;17122:4;17170:3;17159:9;17155:19;17201:6;17190:9;17183:25;17227:2;17265:6;17260:2;17249:9;17245:18;17238:34;17308:3;17303:2;17292:9;17288:18;17281:31;17332:6;17367;17361:13;17398:6;17390;17383:22;17436:3;17425:9;17421:19;17414:26;;17475:2;17467:6;17463:15;17449:29;;17496:1;17506:195;17520:6;17517:1;17514:13;17506:195;;;17585:13;;-1:-1:-1;;;;;17581:39:1;17569:52;;17676:15;;;;17641:12;;;;17617:1;17535:9;17506:195;;;-1:-1:-1;;;;;;;17757:32:1;;;;17752:2;17737:18;;17730:60;-1:-1:-1;;;17821:3:1;17806:19;17799:35;17718:3;16860:980;-1:-1:-1;;;16860:980:1:o;18457:306::-;18545:6;18553;18561;18614:2;18602:9;18593:7;18589:23;18585:32;18582:52;;;18630:1;18627;18620:12;18582:52;18659:9;18653:16;18643:26;;18709:2;18698:9;18694:18;18688:25;18678:35;;18753:2;18742:9;18738:18;18732:25;18722:35;;18457:306;;;;;:::o

Swarm Source

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