ETH Price: $3,173.16 (-8.30%)
Gas: 2 Gwei

Token

τ (τ)
 

Overview

Max Total Supply

1,000,000,000 τ

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
29,225.815808369292173616 τ

Value
$0.00
0x29d7f4fcf98b3988c994647ba0f24d6287e4c812
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:
MUSK

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : τ.sol
/**

https://t.me/MUSKMUSK_ETH

**/
// SPDX-License-Identifier: MIT                                                                               


pragma solidity = 0.8.19;

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

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

interface IUniswapV2Pair {
    event Sync(uint112 reserve0, uint112 reserve1);
    function sync() external;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 to 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 {}
}

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

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

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

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

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

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

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

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


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

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


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

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract MUSK is ERC20, Ownable {

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public percentForLPBurn = 25; 
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;
    
    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

    constructor() ERC20(unicode"τ", unicode"τ") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;
        
        uint256 totalSupply = 1000000000 * 1e18; 
        
        maxTransactionAmount = totalSupply * 100 / 100; 
        maxWallet = totalSupply * 100 / 100; 
        swapTokensAtAmount = totalSupply * 10 / 1000; 

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
        marketingWallet = address(owner()); 
        devWallet = address(owner()); 

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

  	}

    // once enabled, can never be turned off
    function openTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }
    
    // remove limits after token is stable
    function removelimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        transferDelayEnabled = false;
        return true;
    }
    
    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount <= 1, "Swap amount cannot be higher than 1% total supply.");
  	    swapTokensAtAmount = totalSupply() * newAmount / 100;
  	    return true;
  	}
    
    function updateMaxTxnAmount(uint256 txNum, uint256 walNum) external onlyOwner {
        
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

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

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

    function refurbishMarketingWallet(address newMarketingWallet) external onlyOwner {
        marketingWallet = newMarketingWallet;
    }
    
    function refurbishDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

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


    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees/100;
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount * buyTotalFees/100;
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

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

    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
        );
        
    }
    
    
    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 swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance - initialETHBalance;
        
        uint256 ethForMarketing = ethBalance * tokensForMarketing/totalTokensToSwap;
        uint256 ethForDev = ethBalance * tokensForDev/totalTokensToSwap;
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){
        require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish");
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance * percent/10000;
        
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        return true;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"refurbishDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"refurbishMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removelimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"txNum","type":"uint256"},{"internalType":"uint256","name":"walNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600281526020017fcf840000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017fcf84000000000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d73565b50806004908162000139919062000d73565b50505060006200014e6200066660201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002198160016200066e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000299573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bf919062000ec4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000327573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034d919062000ec4565b6040518363ffffffff1660e01b81526004016200036c92919062000f07565b6020604051808303816000875af11580156200038c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b2919062000ec4565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003fa60a05160016200066e60201b60201c565b6200040f60a05160016200076b60201b60201c565b60006002905060008060006002905060008060006b033b2e3c9fd0803ce800000090506064808262000442919062000f63565b6200044e919062000fdd565b6008819055506064808262000464919062000f63565b62000470919062000fdd565b600a819055506103e8600a8262000488919062000f63565b62000494919062000fdd565b600981905550866015819055508560168190555084601781905550601754601654601554620004c4919062001015565b620004d0919062001015565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000500919062001015565b6200050c919062001015565b60188190555062000522620007c660201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000572620007c660201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005d4620005c6620007c660201b60201c565b6001620007f060201b60201c565b620005e7306001620007f060201b60201c565b620005fc61dead6001620007f060201b60201c565b6200061e62000610620007c660201b60201c565b60016200066e60201b60201c565b620006313060016200066e60201b60201c565b6200064661dead60016200066e60201b60201c565b620006583382620008ed60201b60201c565b5050505050505050620011e5565b600033905090565b6200067e6200066660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000710576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070790620010b1565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008006200066660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200088990620010b1565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200095f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009569062001123565b60405180910390fd5b620009736000838362000a9160201b60201c565b6200098a8160025462000a9660201b90919060201c565b600281905550620009e3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000a9660201b90919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a85919062001156565b60405180910390a35050565b505050565b600080828462000aa7919062001015565b90508381101562000aef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae690620011c3565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b7b57607f821691505b60208210810362000b915762000b9062000b33565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bfb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bbc565b62000c07868362000bbc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5462000c4e62000c488462000c1f565b62000c29565b62000c1f565b9050919050565b6000819050919050565b62000c708362000c33565b62000c8862000c7f8262000c5b565b84845462000bc9565b825550505050565b600090565b62000c9f62000c90565b62000cac81848462000c65565b505050565b5b8181101562000cd45762000cc860008262000c95565b60018101905062000cb2565b5050565b601f82111562000d235762000ced8162000b97565b62000cf88462000bac565b8101602085101562000d08578190505b62000d2062000d178562000bac565b83018262000cb1565b50505b505050565b600082821c905092915050565b600062000d486000198460080262000d28565b1980831691505092915050565b600062000d63838362000d35565b9150826002028217905092915050565b62000d7e8262000af9565b67ffffffffffffffff81111562000d9a5762000d9962000b04565b5b62000da6825462000b62565b62000db382828562000cd8565b600060209050601f83116001811462000deb576000841562000dd6578287015190505b62000de2858262000d55565b86555062000e52565b601f19841662000dfb8662000b97565b60005b8281101562000e255784890151825560018201915060208501945060208101905062000dfe565b8683101562000e45578489015162000e41601f89168262000d35565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e8c8262000e5f565b9050919050565b62000e9e8162000e7f565b811462000eaa57600080fd5b50565b60008151905062000ebe8162000e93565b92915050565b60006020828403121562000edd5762000edc62000e5a565b5b600062000eed8482850162000ead565b91505092915050565b62000f018162000e7f565b82525050565b600060408201905062000f1e600083018562000ef6565b62000f2d602083018462000ef6565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f708262000c1f565b915062000f7d8362000c1f565b925082820262000f8d8162000c1f565b9150828204841483151762000fa75762000fa662000f34565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fea8262000c1f565b915062000ff78362000c1f565b9250826200100a576200100962000fae565b5b828204905092915050565b6000620010228262000c1f565b91506200102f8362000c1f565b92508282019050808211156200104a576200104962000f34565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200109960208362001050565b9150620010a68262001061565b602082019050919050565b60006020820190508181036000830152620010cc816200108a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200110b601f8362001050565b91506200111882620010d3565b602082019050919050565b600060208201905081810360008301526200113e81620010fc565b9050919050565b620011508162000c1f565b82525050565b60006020820190506200116d600083018462001145565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620011ab601b8362001050565b9150620011b88262001173565b602082019050919050565b60006020820190508181036000830152620011de816200119c565b9050919050565b60805160a051614d5662001251600039600081816111530152818161226e01528181612317015281816123440152612957015260008181610f59015281816128ff01528181613896015281816139770152818161399e01528181613a3a0152613a610152614d566000f3fe6080604052600436106103855760003560e01c80638da5cb5b116101d1578063bbc0c74211610102578063d85ba063116100a0578063f2fde38b1161006f578063f2fde38b14610d31578063f637434214610d5a578063f8b45b0514610d85578063fe72b27a14610db05761038c565b8063d85ba06314610c73578063dd62ed3e14610c9e578063e2f4560514610cdb578063f11a24d314610d065761038c565b8063c876d0b9116100dc578063c876d0b914610bc9578063c8c8ebe414610bf4578063c9567bf914610c1f578063d257b34f14610c365761038c565b8063bbc0c74214610b4c578063c024666814610b77578063c17b5b8c14610ba05761038c565b80639fccce321161016f578063a4c82a0011610149578063a4c82a0014610a7e578063a9059cbb14610aa9578063ad7baa9114610ae6578063b62496f514610b0f5761038c565b80639fccce32146109eb578063a0d82dc514610a16578063a457c2d714610a415761038c565b8063924de9b7116101ab578063924de9b71461094157806395d89b411461096a5780639c3b4fdc146109955780639ec22c0e146109c05761038c565b80638da5cb5b146108c05780638ea5220f146108eb57806392136913146109165761038c565b8063313ce567116102b65780636a486a8e116102545780637571336a116102235780637571336a1461081857806375f0a874146108415780637bce5a041461086c5780638095d564146108975761038c565b80636a486a8e1461076e5780636ddd17131461079957806370a08231146107c4578063715018a6146108015761038c565b80634a62bb65116102905780634a62bb65146106b25780634fbee193146106dd5780635424ad6f1461071a5780635e4ae81b146107435761038c565b8063313ce5671461061f578063395093511461064a57806349bd5a5e146106875761038c565b8063199ffc721161032357806323b872dd116102fd57806323b872dd1461056157806327c8f8351461059e5780632c3e486c146105c95780632e82f1a0146105f45761038c565b8063199ffc72146104e05780631a8145bb1461050b5780631f3fed8f146105365761038c565b806311a582c31161035f57806311a582c3146104365780631694505e1461045f57806318160ddd1461048a578063184c16c5146104b55761038c565b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103f95761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610ded565b6040516103b39190613ba0565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613c5b565b610e7f565b6040516103f09190613cb6565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190613cd1565b610e9d565b60405161042d9190613cb6565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613cfe565b610ebc565b005b34801561046b57600080fd5b50610474610f57565b6040516104819190613d9d565b60405180910390f35b34801561049657600080fd5b5061049f610f7b565b6040516104ac9190613dc7565b60405180910390f35b3480156104c157600080fd5b506104ca610f85565b6040516104d79190613dc7565b60405180910390f35b3480156104ec57600080fd5b506104f5610f8b565b6040516105029190613dc7565b60405180910390f35b34801561051757600080fd5b50610520610f91565b60405161052d9190613dc7565b60405180910390f35b34801561054257600080fd5b5061054b610f97565b6040516105589190613dc7565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613de2565b610f9d565b6040516105959190613cb6565b60405180910390f35b3480156105aa57600080fd5b506105b3611076565b6040516105c09190613e44565b60405180910390f35b3480156105d557600080fd5b506105de61107c565b6040516105eb9190613dc7565b60405180910390f35b34801561060057600080fd5b50610609611082565b6040516106169190613cb6565b60405180910390f35b34801561062b57600080fd5b50610634611095565b6040516106419190613e7b565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190613c5b565b61109e565b60405161067e9190613cb6565b60405180910390f35b34801561069357600080fd5b5061069c611151565b6040516106a99190613e44565b60405180910390f35b3480156106be57600080fd5b506106c7611175565b6040516106d49190613cb6565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190613cd1565b611188565b6040516107119190613cb6565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613cd1565b6111de565b005b34801561074f57600080fd5b506107586112b9565b6040516107659190613cb6565b60405180910390f35b34801561077a57600080fd5b5061078361138f565b6040516107909190613dc7565b60405180910390f35b3480156107a557600080fd5b506107ae611395565b6040516107bb9190613cb6565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190613cd1565b6113a8565b6040516107f89190613dc7565b60405180910390f35b34801561080d57600080fd5b506108166113f0565b005b34801561082457600080fd5b5061083f600480360381019061083a9190613ec2565b611548565b005b34801561084d57600080fd5b5061085661163a565b6040516108639190613e44565b60405180910390f35b34801561087857600080fd5b50610881611660565b60405161088e9190613dc7565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613f02565b611666565b005b3480156108cc57600080fd5b506108d561173a565b6040516108e29190613e44565b60405180910390f35b3480156108f757600080fd5b50610900611764565b60405161090d9190613e44565b60405180910390f35b34801561092257600080fd5b5061092b61178a565b6040516109389190613dc7565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613f55565b611790565b005b34801561097657600080fd5b5061097f611844565b60405161098c9190613ba0565b60405180910390f35b3480156109a157600080fd5b506109aa6118d6565b6040516109b79190613dc7565b60405180910390f35b3480156109cc57600080fd5b506109d56118dc565b6040516109e29190613dc7565b60405180910390f35b3480156109f757600080fd5b50610a006118e2565b604051610a0d9190613dc7565b60405180910390f35b348015610a2257600080fd5b50610a2b6118e8565b604051610a389190613dc7565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613c5b565b6118ee565b604051610a759190613cb6565b60405180910390f35b348015610a8a57600080fd5b50610a936119bb565b604051610aa09190613dc7565b60405180910390f35b348015610ab557600080fd5b50610ad06004803603810190610acb9190613c5b565b6119c1565b604051610add9190613cb6565b60405180910390f35b348015610af257600080fd5b50610b0d6004803603810190610b089190613cd1565b6119df565b005b348015610b1b57600080fd5b50610b366004803603810190610b319190613cd1565b611aba565b604051610b439190613cb6565b60405180910390f35b348015610b5857600080fd5b50610b61611ada565b604051610b6e9190613cb6565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b999190613ec2565b611aed565b005b348015610bac57600080fd5b50610bc76004803603810190610bc29190613f02565b611bdf565b005b348015610bd557600080fd5b50610bde611cb3565b604051610beb9190613cb6565b60405180910390f35b348015610c0057600080fd5b50610c09611cc6565b604051610c169190613dc7565b60405180910390f35b348015610c2b57600080fd5b50610c34611ccc565b005b348015610c4257600080fd5b50610c5d6004803603810190610c589190613f82565b611da2565b604051610c6a9190613cb6565b60405180910390f35b348015610c7f57600080fd5b50610c88611ead565b604051610c959190613dc7565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc09190613faf565b611eb3565b604051610cd29190613dc7565b60405180910390f35b348015610ce757600080fd5b50610cf0611f3a565b604051610cfd9190613dc7565b60405180910390f35b348015610d1257600080fd5b50610d1b611f40565b604051610d289190613dc7565b60405180910390f35b348015610d3d57600080fd5b50610d586004803603810190610d539190613cd1565b611f46565b005b348015610d6657600080fd5b50610d6f61210c565b604051610d7c9190613dc7565b60405180910390f35b348015610d9157600080fd5b50610d9a612112565b604051610da79190613dc7565b60405180910390f35b348015610dbc57600080fd5b50610dd76004803603810190610dd29190613f82565b612118565b604051610de49190613cb6565b60405180910390f35b606060038054610dfc9061401e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e289061401e565b8015610e755780601f10610e4a57610100808354040283529160200191610e75565b820191906000526020600020905b815481529060010190602001808311610e5857829003601f168201915b5050505050905090565b6000610e93610e8c6123d1565b84846123d9565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b610ec46123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a9061409b565b60405180910390fd5b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600f5481565b600b5481565b601d5481565b601c5481565b6000610faa8484846125a2565b61106b84610fb66123d1565b61106685604051806060016040528060288152602001614cd460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061101c6123d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461321d9092919063ffffffff16565b6123d9565b600190509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006111476110ab6123d1565b8461114285600160006110bc6123d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461328190919063ffffffff16565b6123d9565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111e66123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9061409b565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006112c36123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113499061409b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055506001905090565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f86123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061409b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115506123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d69061409b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61166e6123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f49061409b565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461172591906140ea565b61172f91906140ea565b601481905550505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117986123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061409b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546118539061401e565b80601f016020809104026020016040519081016040528092919081815260200182805461187f9061401e565b80156118cc5780601f106118a1576101008083540402835291602001916118cc565b820191906000526020600020905b8154815290600101906020018083116118af57829003601f168201915b5050505050905090565b60175481565b60105481565b601e5481565b601b5481565b60006119b16118fb6123d1565b846119ac85604051806060016040528060258152602001614cfc60259139600160006119256123d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461321d9092919063ffffffff16565b6123d9565b6001905092915050565b600e5481565b60006119d56119ce6123d1565b84846125a2565b6001905092915050565b6119e76123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061409b565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611af56123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b9061409b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611be76123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d9061409b565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611c9e91906140ea565b611ca891906140ea565b601881905550505050565b601360009054906101000a900460ff1681565b60085481565b611cd46123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a9061409b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000611dac6123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e329061409b565b60405180910390fd5b6001821115611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690614190565b60405180910390fd5b606482611e8a610f7b565b611e9491906141b0565b611e9e9190614221565b60098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60165481565b611f4e6123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd49061409b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361204c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612043906142c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a5481565b600a5481565b60006121226123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a89061409b565b60405180910390fd5b600f546010546121c191906140ea565b4211612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614330565b60405180910390fd5b6103e8821115612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223e906143c2565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016122a99190613e44565b602060405180830381865afa1580156122c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ea91906143f7565b9050600061271084836122fd91906141b0565b6123079190614221565b905060008111156123405761233f7f000000000000000000000000000000000000000000000000000000000000000061dead836132df565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156123ad57600080fd5b505af11580156123c1573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243f90614496565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ae90614528565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125959190613dc7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612608906145ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126779061464c565b60405180910390fd5b6000810361269957612694838360006132df565b613218565b601160009054906101000a900460ff1615612d5c576126b661173a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561272457506126f461173a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561275d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612797575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127b05750600560149054906101000a900460ff16155b15612d5b57601160019054906101000a900460ff166128aa57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061286a5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a0906146b8565b60405180910390fd5b5b601360009054906101000a900460ff1615612a72576128c761173a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561294e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129a657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a715743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614770565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b155750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bbc57600854811115612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5690614802565b60405180910390fd5b600a54612b6b836113a8565b82612b7691906140ea565b1115612bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bae9061486e565b60405180910390fd5b612d5a565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c5f5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cae57600854811115612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca090614900565b60405180910390fd5b612d59565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d5857600a54612d0b836113a8565b82612d1691906140ea565b1115612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e9061486e565b60405180910390fd5b5b5b5b5b5b6000612d67306113a8565b905060006009548210159050808015612d8c5750601160029054906101000a900460ff165b8015612da55750600560149054906101000a900460ff16155b8015612dfb5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e515750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ea75750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612eeb576001600560146101000a81548160ff021916908315150217905550612ecf613572565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fa15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fab57600090505b6000811561320857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561300e57506000601854115b156130cd5760646018548661302391906141b0565b61302d9190614221565b9050601854601a548261304091906141b0565b61304a9190614221565b601d600082825461305b91906140ea565b92505081905550601854601b548261307391906141b0565b61307d9190614221565b601e600082825461308e91906140ea565b92505081905550601854601954826130a691906141b0565b6130b09190614221565b601c60008282546130c191906140ea565b925050819055506131e4565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561312857506000601454115b156131e35760646014548661313d91906141b0565b6131479190614221565b90506014546016548261315a91906141b0565b6131649190614221565b601d600082825461317591906140ea565b925050819055506014546017548261318d91906141b0565b6131979190614221565b601e60008282546131a891906140ea565b92505081905550601454601554826131c091906141b0565b6131ca9190614221565b601c60008282546131db91906140ea565b925050819055505b5b60008111156131f9576131f88730836132df565b5b80856132059190614920565b94505b6132138787876132df565b505050505b505050565b6000838311158290613265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325c9190613ba0565b60405180910390fd5b50600083856132749190614920565b9050809150509392505050565b600080828461329091906140ea565b9050838110156132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc906149a0565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361334e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613345906145ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b49061464c565b60405180910390fd5b6133c88383836137f2565b61343381604051806060016040528060268152602001614cae602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461321d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134c6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461328190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135659190613dc7565b60405180910390a3505050565b600061357d306113a8565b90506000601e54601c54601d5461359491906140ea565b61359e91906140ea565b90506000808314806135b05750600082145b156135bd575050506137f0565b60146009546135cc91906141b0565b8311156135e55760146009546135e291906141b0565b92505b6000600283601d54866135f891906141b0565b6136029190614221565b61360c9190614221565b90506000818561361c9190614920565b9050600047905061362c826137f7565b6000814761363a9190614920565b9050600086601c548361364d91906141b0565b6136579190614221565b9050600087601e548461366a91906141b0565b6136749190614221565b905060008183856136859190614920565b61368f9190614920565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136ef906149f1565b60006040518083038185875af1925050503d806000811461372c576040519150601f19603f3d011682016040523d82523d6000602084013e613731565b606091505b5050809850506000871180156137475750600081115b15613757576137568782613a34565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379d906149f1565b60006040518083038185875af1925050503d80600081146137da576040519150601f19603f3d011682016040523d82523d6000602084013e6137df565b606091505b505080985050505050505050505050505b565b505050565b6000600267ffffffffffffffff81111561381457613813614a06565b5b6040519080825280602002602001820160405280156138425781602001602082028036833780820191505090505b509050308160008151811061385a57613859614a35565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139239190614a79565b8160018151811061393757613936614a35565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061399c307f0000000000000000000000000000000000000000000000000000000000000000846123d9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016139fe959493929190614b9f565b600060405180830381600087803b158015613a1857600080fd5b505af1158015613a2c573d6000803e3d6000fd5b505050505050565b613a5f307f0000000000000000000000000000000000000000000000000000000000000000846123d9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613ac696959493929190614bf9565b60606040518083038185885af1158015613ae4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b099190614c5a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b4a578082015181840152602081019050613b2f565b60008484015250505050565b6000601f19601f8301169050919050565b6000613b7282613b10565b613b7c8185613b1b565b9350613b8c818560208601613b2c565b613b9581613b56565b840191505092915050565b60006020820190508181036000830152613bba8184613b67565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bf282613bc7565b9050919050565b613c0281613be7565b8114613c0d57600080fd5b50565b600081359050613c1f81613bf9565b92915050565b6000819050919050565b613c3881613c25565b8114613c4357600080fd5b50565b600081359050613c5581613c2f565b92915050565b60008060408385031215613c7257613c71613bc2565b5b6000613c8085828601613c10565b9250506020613c9185828601613c46565b9150509250929050565b60008115159050919050565b613cb081613c9b565b82525050565b6000602082019050613ccb6000830184613ca7565b92915050565b600060208284031215613ce757613ce6613bc2565b5b6000613cf584828501613c10565b91505092915050565b60008060408385031215613d1557613d14613bc2565b5b6000613d2385828601613c46565b9250506020613d3485828601613c46565b9150509250929050565b6000819050919050565b6000613d63613d5e613d5984613bc7565b613d3e565b613bc7565b9050919050565b6000613d7582613d48565b9050919050565b6000613d8782613d6a565b9050919050565b613d9781613d7c565b82525050565b6000602082019050613db26000830184613d8e565b92915050565b613dc181613c25565b82525050565b6000602082019050613ddc6000830184613db8565b92915050565b600080600060608486031215613dfb57613dfa613bc2565b5b6000613e0986828701613c10565b9350506020613e1a86828701613c10565b9250506040613e2b86828701613c46565b9150509250925092565b613e3e81613be7565b82525050565b6000602082019050613e596000830184613e35565b92915050565b600060ff82169050919050565b613e7581613e5f565b82525050565b6000602082019050613e906000830184613e6c565b92915050565b613e9f81613c9b565b8114613eaa57600080fd5b50565b600081359050613ebc81613e96565b92915050565b60008060408385031215613ed957613ed8613bc2565b5b6000613ee785828601613c10565b9250506020613ef885828601613ead565b9150509250929050565b600080600060608486031215613f1b57613f1a613bc2565b5b6000613f2986828701613c46565b9350506020613f3a86828701613c46565b9250506040613f4b86828701613c46565b9150509250925092565b600060208284031215613f6b57613f6a613bc2565b5b6000613f7984828501613ead565b91505092915050565b600060208284031215613f9857613f97613bc2565b5b6000613fa684828501613c46565b91505092915050565b60008060408385031215613fc657613fc5613bc2565b5b6000613fd485828601613c10565b9250506020613fe585828601613c10565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061403657607f821691505b60208210810361404957614048613fef565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614085602083613b1b565b91506140908261404f565b602082019050919050565b600060208201905081810360008301526140b481614078565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140f582613c25565b915061410083613c25565b9250828201905080821115614118576141176140bb565b5b92915050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b600061417a603283613b1b565b91506141858261411e565b604082019050919050565b600060208201905081810360008301526141a98161416d565b9050919050565b60006141bb82613c25565b91506141c683613c25565b92508282026141d481613c25565b915082820484148315176141eb576141ea6140bb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061422c82613c25565b915061423783613c25565b925082614247576142466141f2565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142ae602683613b1b565b91506142b982614252565b604082019050919050565b600060208201905081810360008301526142dd816142a1565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061431a602083613b1b565b9150614325826142e4565b602082019050919050565b600060208201905081810360008301526143498161430d565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006143ac602a83613b1b565b91506143b782614350565b604082019050919050565b600060208201905081810360008301526143db8161439f565b9050919050565b6000815190506143f181613c2f565b92915050565b60006020828403121561440d5761440c613bc2565b5b600061441b848285016143e2565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614480602483613b1b565b915061448b82614424565b604082019050919050565b600060208201905081810360008301526144af81614473565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614512602283613b1b565b915061451d826144b6565b604082019050919050565b6000602082019050818103600083015261454181614505565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145a4602583613b1b565b91506145af82614548565b604082019050919050565b600060208201905081810360008301526145d381614597565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614636602383613b1b565b9150614641826145da565b604082019050919050565b6000602082019050818103600083015261466581614629565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146a2601683613b1b565b91506146ad8261466c565b602082019050919050565b600060208201905081810360008301526146d181614695565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061475a604983613b1b565b9150614765826146d8565b606082019050919050565b600060208201905081810360008301526147898161474d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006147ec603583613b1b565b91506147f782614790565b604082019050919050565b6000602082019050818103600083015261481b816147df565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614858601383613b1b565b915061486382614822565b602082019050919050565b600060208201905081810360008301526148878161484b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006148ea603683613b1b565b91506148f58261488e565b604082019050919050565b60006020820190508181036000830152614919816148dd565b9050919050565b600061492b82613c25565b915061493683613c25565b925082820390508181111561494e5761494d6140bb565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061498a601b83613b1b565b915061499582614954565b602082019050919050565b600060208201905081810360008301526149b98161497d565b9050919050565b600081905092915050565b50565b60006149db6000836149c0565b91506149e6826149cb565b600082019050919050565b60006149fc826149ce565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614a7381613bf9565b92915050565b600060208284031215614a8f57614a8e613bc2565b5b6000614a9d84828501614a64565b91505092915050565b6000819050919050565b6000614acb614ac6614ac184614aa6565b613d3e565b613c25565b9050919050565b614adb81614ab0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b1681613be7565b82525050565b6000614b288383614b0d565b60208301905092915050565b6000602082019050919050565b6000614b4c82614ae1565b614b568185614aec565b9350614b6183614afd565b8060005b83811015614b92578151614b798882614b1c565b9750614b8483614b34565b925050600181019050614b65565b5085935050505092915050565b600060a082019050614bb46000830188613db8565b614bc16020830187614ad2565b8181036040830152614bd38186614b41565b9050614be26060830185613e35565b614bef6080830184613db8565b9695505050505050565b600060c082019050614c0e6000830189613e35565b614c1b6020830188613db8565b614c286040830187614ad2565b614c356060830186614ad2565b614c426080830185613e35565b614c4f60a0830184613db8565b979650505050505050565b600080600060608486031215614c7357614c72613bc2565b5b6000614c81868287016143e2565b9350506020614c92868287016143e2565b9250506040614ca3868287016143e2565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ad6dec0a62a00dc644eb0f74cbdbf08e7e1618fa24c75400f7a27e300e1e630764736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103855760003560e01c80638da5cb5b116101d1578063bbc0c74211610102578063d85ba063116100a0578063f2fde38b1161006f578063f2fde38b14610d31578063f637434214610d5a578063f8b45b0514610d85578063fe72b27a14610db05761038c565b8063d85ba06314610c73578063dd62ed3e14610c9e578063e2f4560514610cdb578063f11a24d314610d065761038c565b8063c876d0b9116100dc578063c876d0b914610bc9578063c8c8ebe414610bf4578063c9567bf914610c1f578063d257b34f14610c365761038c565b8063bbc0c74214610b4c578063c024666814610b77578063c17b5b8c14610ba05761038c565b80639fccce321161016f578063a4c82a0011610149578063a4c82a0014610a7e578063a9059cbb14610aa9578063ad7baa9114610ae6578063b62496f514610b0f5761038c565b80639fccce32146109eb578063a0d82dc514610a16578063a457c2d714610a415761038c565b8063924de9b7116101ab578063924de9b71461094157806395d89b411461096a5780639c3b4fdc146109955780639ec22c0e146109c05761038c565b80638da5cb5b146108c05780638ea5220f146108eb57806392136913146109165761038c565b8063313ce567116102b65780636a486a8e116102545780637571336a116102235780637571336a1461081857806375f0a874146108415780637bce5a041461086c5780638095d564146108975761038c565b80636a486a8e1461076e5780636ddd17131461079957806370a08231146107c4578063715018a6146108015761038c565b80634a62bb65116102905780634a62bb65146106b25780634fbee193146106dd5780635424ad6f1461071a5780635e4ae81b146107435761038c565b8063313ce5671461061f578063395093511461064a57806349bd5a5e146106875761038c565b8063199ffc721161032357806323b872dd116102fd57806323b872dd1461056157806327c8f8351461059e5780632c3e486c146105c95780632e82f1a0146105f45761038c565b8063199ffc72146104e05780631a8145bb1461050b5780631f3fed8f146105365761038c565b806311a582c31161035f57806311a582c3146104365780631694505e1461045f57806318160ddd1461048a578063184c16c5146104b55761038c565b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103f95761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610ded565b6040516103b39190613ba0565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613c5b565b610e7f565b6040516103f09190613cb6565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190613cd1565b610e9d565b60405161042d9190613cb6565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613cfe565b610ebc565b005b34801561046b57600080fd5b50610474610f57565b6040516104819190613d9d565b60405180910390f35b34801561049657600080fd5b5061049f610f7b565b6040516104ac9190613dc7565b60405180910390f35b3480156104c157600080fd5b506104ca610f85565b6040516104d79190613dc7565b60405180910390f35b3480156104ec57600080fd5b506104f5610f8b565b6040516105029190613dc7565b60405180910390f35b34801561051757600080fd5b50610520610f91565b60405161052d9190613dc7565b60405180910390f35b34801561054257600080fd5b5061054b610f97565b6040516105589190613dc7565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613de2565b610f9d565b6040516105959190613cb6565b60405180910390f35b3480156105aa57600080fd5b506105b3611076565b6040516105c09190613e44565b60405180910390f35b3480156105d557600080fd5b506105de61107c565b6040516105eb9190613dc7565b60405180910390f35b34801561060057600080fd5b50610609611082565b6040516106169190613cb6565b60405180910390f35b34801561062b57600080fd5b50610634611095565b6040516106419190613e7b565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190613c5b565b61109e565b60405161067e9190613cb6565b60405180910390f35b34801561069357600080fd5b5061069c611151565b6040516106a99190613e44565b60405180910390f35b3480156106be57600080fd5b506106c7611175565b6040516106d49190613cb6565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190613cd1565b611188565b6040516107119190613cb6565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613cd1565b6111de565b005b34801561074f57600080fd5b506107586112b9565b6040516107659190613cb6565b60405180910390f35b34801561077a57600080fd5b5061078361138f565b6040516107909190613dc7565b60405180910390f35b3480156107a557600080fd5b506107ae611395565b6040516107bb9190613cb6565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190613cd1565b6113a8565b6040516107f89190613dc7565b60405180910390f35b34801561080d57600080fd5b506108166113f0565b005b34801561082457600080fd5b5061083f600480360381019061083a9190613ec2565b611548565b005b34801561084d57600080fd5b5061085661163a565b6040516108639190613e44565b60405180910390f35b34801561087857600080fd5b50610881611660565b60405161088e9190613dc7565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613f02565b611666565b005b3480156108cc57600080fd5b506108d561173a565b6040516108e29190613e44565b60405180910390f35b3480156108f757600080fd5b50610900611764565b60405161090d9190613e44565b60405180910390f35b34801561092257600080fd5b5061092b61178a565b6040516109389190613dc7565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613f55565b611790565b005b34801561097657600080fd5b5061097f611844565b60405161098c9190613ba0565b60405180910390f35b3480156109a157600080fd5b506109aa6118d6565b6040516109b79190613dc7565b60405180910390f35b3480156109cc57600080fd5b506109d56118dc565b6040516109e29190613dc7565b60405180910390f35b3480156109f757600080fd5b50610a006118e2565b604051610a0d9190613dc7565b60405180910390f35b348015610a2257600080fd5b50610a2b6118e8565b604051610a389190613dc7565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613c5b565b6118ee565b604051610a759190613cb6565b60405180910390f35b348015610a8a57600080fd5b50610a936119bb565b604051610aa09190613dc7565b60405180910390f35b348015610ab557600080fd5b50610ad06004803603810190610acb9190613c5b565b6119c1565b604051610add9190613cb6565b60405180910390f35b348015610af257600080fd5b50610b0d6004803603810190610b089190613cd1565b6119df565b005b348015610b1b57600080fd5b50610b366004803603810190610b319190613cd1565b611aba565b604051610b439190613cb6565b60405180910390f35b348015610b5857600080fd5b50610b61611ada565b604051610b6e9190613cb6565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b999190613ec2565b611aed565b005b348015610bac57600080fd5b50610bc76004803603810190610bc29190613f02565b611bdf565b005b348015610bd557600080fd5b50610bde611cb3565b604051610beb9190613cb6565b60405180910390f35b348015610c0057600080fd5b50610c09611cc6565b604051610c169190613dc7565b60405180910390f35b348015610c2b57600080fd5b50610c34611ccc565b005b348015610c4257600080fd5b50610c5d6004803603810190610c589190613f82565b611da2565b604051610c6a9190613cb6565b60405180910390f35b348015610c7f57600080fd5b50610c88611ead565b604051610c959190613dc7565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc09190613faf565b611eb3565b604051610cd29190613dc7565b60405180910390f35b348015610ce757600080fd5b50610cf0611f3a565b604051610cfd9190613dc7565b60405180910390f35b348015610d1257600080fd5b50610d1b611f40565b604051610d289190613dc7565b60405180910390f35b348015610d3d57600080fd5b50610d586004803603810190610d539190613cd1565b611f46565b005b348015610d6657600080fd5b50610d6f61210c565b604051610d7c9190613dc7565b60405180910390f35b348015610d9157600080fd5b50610d9a612112565b604051610da79190613dc7565b60405180910390f35b348015610dbc57600080fd5b50610dd76004803603810190610dd29190613f82565b612118565b604051610de49190613cb6565b60405180910390f35b606060038054610dfc9061401e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e289061401e565b8015610e755780601f10610e4a57610100808354040283529160200191610e75565b820191906000526020600020905b815481529060010190602001808311610e5857829003601f168201915b5050505050905090565b6000610e93610e8c6123d1565b84846123d9565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b610ec46123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a9061409b565b60405180910390fd5b5050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600f5481565b600b5481565b601d5481565b601c5481565b6000610faa8484846125a2565b61106b84610fb66123d1565b61106685604051806060016040528060288152602001614cd460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061101c6123d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461321d9092919063ffffffff16565b6123d9565b600190509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006111476110ab6123d1565b8461114285600160006110bc6123d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461328190919063ffffffff16565b6123d9565b6001905092915050565b7f0000000000000000000000000266f0a7e3d6128c7b063fa88c9c467d3c09b05181565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111e66123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9061409b565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006112c36123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113499061409b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055506001905090565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f86123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061409b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115506123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d69061409b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61166e6123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f49061409b565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461172591906140ea565b61172f91906140ea565b601481905550505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117986123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061409b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546118539061401e565b80601f016020809104026020016040519081016040528092919081815260200182805461187f9061401e565b80156118cc5780601f106118a1576101008083540402835291602001916118cc565b820191906000526020600020905b8154815290600101906020018083116118af57829003601f168201915b5050505050905090565b60175481565b60105481565b601e5481565b601b5481565b60006119b16118fb6123d1565b846119ac85604051806060016040528060258152602001614cfc60259139600160006119256123d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461321d9092919063ffffffff16565b6123d9565b6001905092915050565b600e5481565b60006119d56119ce6123d1565b84846125a2565b6001905092915050565b6119e76123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061409b565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611af56123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b9061409b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611be76123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d9061409b565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611c9e91906140ea565b611ca891906140ea565b601881905550505050565b601360009054906101000a900460ff1681565b60085481565b611cd46123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a9061409b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000611dac6123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e329061409b565b60405180910390fd5b6001821115611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690614190565b60405180910390fd5b606482611e8a610f7b565b611e9491906141b0565b611e9e9190614221565b60098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60165481565b611f4e6123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd49061409b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361204c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612043906142c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a5481565b600a5481565b60006121226123d1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a89061409b565b60405180910390fd5b600f546010546121c191906140ea565b4211612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614330565b60405180910390fd5b6103e8821115612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223e906143c2565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000266f0a7e3d6128c7b063fa88c9c467d3c09b0516040518263ffffffff1660e01b81526004016122a99190613e44565b602060405180830381865afa1580156122c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ea91906143f7565b9050600061271084836122fd91906141b0565b6123079190614221565b905060008111156123405761233f7f0000000000000000000000000266f0a7e3d6128c7b063fa88c9c467d3c09b05161dead836132df565b5b60007f0000000000000000000000000266f0a7e3d6128c7b063fa88c9c467d3c09b05190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156123ad57600080fd5b505af11580156123c1573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243f90614496565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ae90614528565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125959190613dc7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612608906145ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126779061464c565b60405180910390fd5b6000810361269957612694838360006132df565b613218565b601160009054906101000a900460ff1615612d5c576126b661173a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561272457506126f461173a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561275d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612797575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127b05750600560149054906101000a900460ff16155b15612d5b57601160019054906101000a900460ff166128aa57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061286a5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a0906146b8565b60405180910390fd5b5b601360009054906101000a900460ff1615612a72576128c761173a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561294e57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129a657507f0000000000000000000000000266f0a7e3d6128c7b063fa88c9c467d3c09b05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a715743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614770565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b155750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bbc57600854811115612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5690614802565b60405180910390fd5b600a54612b6b836113a8565b82612b7691906140ea565b1115612bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bae9061486e565b60405180910390fd5b612d5a565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c5f5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cae57600854811115612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca090614900565b60405180910390fd5b612d59565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d5857600a54612d0b836113a8565b82612d1691906140ea565b1115612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e9061486e565b60405180910390fd5b5b5b5b5b5b6000612d67306113a8565b905060006009548210159050808015612d8c5750601160029054906101000a900460ff165b8015612da55750600560149054906101000a900460ff16155b8015612dfb5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e515750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ea75750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612eeb576001600560146101000a81548160ff021916908315150217905550612ecf613572565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fa15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fab57600090505b6000811561320857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561300e57506000601854115b156130cd5760646018548661302391906141b0565b61302d9190614221565b9050601854601a548261304091906141b0565b61304a9190614221565b601d600082825461305b91906140ea565b92505081905550601854601b548261307391906141b0565b61307d9190614221565b601e600082825461308e91906140ea565b92505081905550601854601954826130a691906141b0565b6130b09190614221565b601c60008282546130c191906140ea565b925050819055506131e4565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561312857506000601454115b156131e35760646014548661313d91906141b0565b6131479190614221565b90506014546016548261315a91906141b0565b6131649190614221565b601d600082825461317591906140ea565b925050819055506014546017548261318d91906141b0565b6131979190614221565b601e60008282546131a891906140ea565b92505081905550601454601554826131c091906141b0565b6131ca9190614221565b601c60008282546131db91906140ea565b925050819055505b5b60008111156131f9576131f88730836132df565b5b80856132059190614920565b94505b6132138787876132df565b505050505b505050565b6000838311158290613265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325c9190613ba0565b60405180910390fd5b50600083856132749190614920565b9050809150509392505050565b600080828461329091906140ea565b9050838110156132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc906149a0565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361334e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613345906145ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b49061464c565b60405180910390fd5b6133c88383836137f2565b61343381604051806060016040528060268152602001614cae602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461321d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134c6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461328190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135659190613dc7565b60405180910390a3505050565b600061357d306113a8565b90506000601e54601c54601d5461359491906140ea565b61359e91906140ea565b90506000808314806135b05750600082145b156135bd575050506137f0565b60146009546135cc91906141b0565b8311156135e55760146009546135e291906141b0565b92505b6000600283601d54866135f891906141b0565b6136029190614221565b61360c9190614221565b90506000818561361c9190614920565b9050600047905061362c826137f7565b6000814761363a9190614920565b9050600086601c548361364d91906141b0565b6136579190614221565b9050600087601e548461366a91906141b0565b6136749190614221565b905060008183856136859190614920565b61368f9190614920565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136ef906149f1565b60006040518083038185875af1925050503d806000811461372c576040519150601f19603f3d011682016040523d82523d6000602084013e613731565b606091505b5050809850506000871180156137475750600081115b15613757576137568782613a34565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379d906149f1565b60006040518083038185875af1925050503d80600081146137da576040519150601f19603f3d011682016040523d82523d6000602084013e6137df565b606091505b505080985050505050505050505050505b565b505050565b6000600267ffffffffffffffff81111561381457613813614a06565b5b6040519080825280602002602001820160405280156138425781602001602082028036833780820191505090505b509050308160008151811061385a57613859614a35565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139239190614a79565b8160018151811061393757613936614a35565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061399c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123d9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016139fe959493929190614b9f565b600060405180830381600087803b158015613a1857600080fd5b505af1158015613a2c573d6000803e3d6000fd5b505050505050565b613a5f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123d9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613ac696959493929190614bf9565b60606040518083038185885af1158015613ae4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b099190614c5a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b4a578082015181840152602081019050613b2f565b60008484015250505050565b6000601f19601f8301169050919050565b6000613b7282613b10565b613b7c8185613b1b565b9350613b8c818560208601613b2c565b613b9581613b56565b840191505092915050565b60006020820190508181036000830152613bba8184613b67565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bf282613bc7565b9050919050565b613c0281613be7565b8114613c0d57600080fd5b50565b600081359050613c1f81613bf9565b92915050565b6000819050919050565b613c3881613c25565b8114613c4357600080fd5b50565b600081359050613c5581613c2f565b92915050565b60008060408385031215613c7257613c71613bc2565b5b6000613c8085828601613c10565b9250506020613c9185828601613c46565b9150509250929050565b60008115159050919050565b613cb081613c9b565b82525050565b6000602082019050613ccb6000830184613ca7565b92915050565b600060208284031215613ce757613ce6613bc2565b5b6000613cf584828501613c10565b91505092915050565b60008060408385031215613d1557613d14613bc2565b5b6000613d2385828601613c46565b9250506020613d3485828601613c46565b9150509250929050565b6000819050919050565b6000613d63613d5e613d5984613bc7565b613d3e565b613bc7565b9050919050565b6000613d7582613d48565b9050919050565b6000613d8782613d6a565b9050919050565b613d9781613d7c565b82525050565b6000602082019050613db26000830184613d8e565b92915050565b613dc181613c25565b82525050565b6000602082019050613ddc6000830184613db8565b92915050565b600080600060608486031215613dfb57613dfa613bc2565b5b6000613e0986828701613c10565b9350506020613e1a86828701613c10565b9250506040613e2b86828701613c46565b9150509250925092565b613e3e81613be7565b82525050565b6000602082019050613e596000830184613e35565b92915050565b600060ff82169050919050565b613e7581613e5f565b82525050565b6000602082019050613e906000830184613e6c565b92915050565b613e9f81613c9b565b8114613eaa57600080fd5b50565b600081359050613ebc81613e96565b92915050565b60008060408385031215613ed957613ed8613bc2565b5b6000613ee785828601613c10565b9250506020613ef885828601613ead565b9150509250929050565b600080600060608486031215613f1b57613f1a613bc2565b5b6000613f2986828701613c46565b9350506020613f3a86828701613c46565b9250506040613f4b86828701613c46565b9150509250925092565b600060208284031215613f6b57613f6a613bc2565b5b6000613f7984828501613ead565b91505092915050565b600060208284031215613f9857613f97613bc2565b5b6000613fa684828501613c46565b91505092915050565b60008060408385031215613fc657613fc5613bc2565b5b6000613fd485828601613c10565b9250506020613fe585828601613c10565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061403657607f821691505b60208210810361404957614048613fef565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614085602083613b1b565b91506140908261404f565b602082019050919050565b600060208201905081810360008301526140b481614078565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140f582613c25565b915061410083613c25565b9250828201905080821115614118576141176140bb565b5b92915050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b600061417a603283613b1b565b91506141858261411e565b604082019050919050565b600060208201905081810360008301526141a98161416d565b9050919050565b60006141bb82613c25565b91506141c683613c25565b92508282026141d481613c25565b915082820484148315176141eb576141ea6140bb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061422c82613c25565b915061423783613c25565b925082614247576142466141f2565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142ae602683613b1b565b91506142b982614252565b604082019050919050565b600060208201905081810360008301526142dd816142a1565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061431a602083613b1b565b9150614325826142e4565b602082019050919050565b600060208201905081810360008301526143498161430d565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006143ac602a83613b1b565b91506143b782614350565b604082019050919050565b600060208201905081810360008301526143db8161439f565b9050919050565b6000815190506143f181613c2f565b92915050565b60006020828403121561440d5761440c613bc2565b5b600061441b848285016143e2565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614480602483613b1b565b915061448b82614424565b604082019050919050565b600060208201905081810360008301526144af81614473565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614512602283613b1b565b915061451d826144b6565b604082019050919050565b6000602082019050818103600083015261454181614505565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145a4602583613b1b565b91506145af82614548565b604082019050919050565b600060208201905081810360008301526145d381614597565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614636602383613b1b565b9150614641826145da565b604082019050919050565b6000602082019050818103600083015261466581614629565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146a2601683613b1b565b91506146ad8261466c565b602082019050919050565b600060208201905081810360008301526146d181614695565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061475a604983613b1b565b9150614765826146d8565b606082019050919050565b600060208201905081810360008301526147898161474d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006147ec603583613b1b565b91506147f782614790565b604082019050919050565b6000602082019050818103600083015261481b816147df565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614858601383613b1b565b915061486382614822565b602082019050919050565b600060208201905081810360008301526148878161484b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006148ea603683613b1b565b91506148f58261488e565b604082019050919050565b60006020820190508181036000830152614919816148dd565b9050919050565b600061492b82613c25565b915061493683613c25565b925082820390508181111561494e5761494d6140bb565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061498a601b83613b1b565b915061499582614954565b602082019050919050565b600060208201905081810360008301526149b98161497d565b9050919050565b600081905092915050565b50565b60006149db6000836149c0565b91506149e6826149cb565b600082019050919050565b60006149fc826149ce565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614a7381613bf9565b92915050565b600060208284031215614a8f57614a8e613bc2565b5b6000614a9d84828501614a64565b91505092915050565b6000819050919050565b6000614acb614ac6614ac184614aa6565b613d3e565b613c25565b9050919050565b614adb81614ab0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b1681613be7565b82525050565b6000614b288383614b0d565b60208301905092915050565b6000602082019050919050565b6000614b4c82614ae1565b614b568185614aec565b9350614b6183614afd565b8060005b83811015614b92578151614b798882614b1c565b9750614b8483614b34565b925050600181019050614b65565b5085935050505092915050565b600060a082019050614bb46000830188613db8565b614bc16020830187614ad2565b8181036040830152614bd38186614b41565b9050614be26060830185613e35565b614bef6080830184613db8565b9695505050505050565b600060c082019050614c0e6000830189613e35565b614c1b6020830188613db8565b614c286040830187614ad2565b614c356060830186614ad2565b614c426080830185613e35565b614c4f60a0830184613db8565b979650505050505050565b600080600060608486031215614c7357614c72613bc2565b5b6000614c81868287016143e2565b9350506020614c92868287016143e2565b9250506040614ca3868287016143e2565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ad6dec0a62a00dc644eb0f74cbdbf08e7e1618fa24c75400f7a27e300e1e630764736f6c63430008130033

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.