ETH Price: $3,148.66 (+0.94%)
Gas: 3 Gwei

Token

GiveWell Inu (GINU)
 

Overview

Max Total Supply

4,000,000,000 GINU

Holders

774

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
35,533.188763931 GINU

Value
$0.00
0xacd0c8ec05d2edb60322a7c1822f69ed24b71640
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:
GiveWellInuV2

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/*

https://t.me/GiveWellInu

VB tweet - https://twitter.com/vitalikbuterin/status/1590473524220952577?s=46&t=M-p6nvBmOjFV_I4z8IjOrg

Taxes are 3% on buys and 3% on sells. 2% per swap goes to GiveWell.org, 1% per swap will be added to the LP.

Their ETH wallet address can be found here: (0x7cF2eBb5Ca55A8bd671A020F8BDbAF07f60F26C1)
https://www.givewell.org/about/donate/cryptocurrency 

As of the time of this launch over 13ETH ($16K USD) has already been donated to GiveWell by the GINU team.

http://Twitter.com/GiveWell_Inu

*/

// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.9;

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 Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;
    address public GiveWellWallet;

    uint8 constant _decimals = 9;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    bool public transferDelayEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyGiveWellWalletFee;
    
    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellGiveWellWalletFee;
    
    uint256 public tokensForLiquidity;
    uint256 public tokensForGiveWellWallet;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public supply;
    
    /******************/

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("GiveWell Inu", "GINU") {

        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 _buyLiquidityFee = 1;
        uint256 _buyGiveWellWalletFee = 2;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellGiveWellWalletFee = 2;
        
        uint256 totalSupply = 4 * 1e9 * 10 ** _decimals;
        supply += totalSupply;
        
        walletDigit = 25;
        transDigit = 25;

        maxTransactionAmount = supply * transDigit / 1000;
        swapTokensAtAmount = supply * 75 / 100000; // 0.075% swap wallet;
        maxWallet = supply * walletDigit / 1000;

        buyLiquidityFee = _buyLiquidityFee;
        buyGiveWellWalletFee = _buyGiveWellWalletFee;
        buyTotalFees = buyLiquidityFee + buyGiveWellWalletFee;
        
        sellLiquidityFee = _sellLiquidityFee;
        sellGiveWellWalletFee = _sellGiveWellWalletFee;
        sellTotalFees = sellLiquidityFee + sellGiveWellWalletFee;
        
        GiveWellWallet = 0x7cF2eBb5Ca55A8bd671A020F8BDbAF07f60F26C1; //set as GiveWell wallet

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

        _approve(owner(), address(uniswapV2Router), totalSupply);

        _mint(msg.sender, 4 * 1e9 * 10 ** _decimals);

        tradingActive = false;
        swapEnabled = false;

    }

    receive() external payable {

  	}

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

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
  	    swapTokensAtAmount = newAmount;
  	    return true;
  	}
    
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/(10 ** _decimals), "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10** _decimals);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/(10 ** _decimals), "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10** _decimals);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(uint256 _liquidityFee, uint _buyGiveWellWalletFee) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyGiveWellWalletFee = _buyGiveWellWalletFee;
        buyTotalFees = buyLiquidityFee + buyGiveWellWalletFee;
        require(buyTotalFees <= 3, "Must keep fees at 3% or less");
    }
    
    function updateSellFees(uint256 _liquidityFee, uint _sellGiveWellWalletFee) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellGiveWellWalletFee = _sellGiveWellWalletFee;
        sellTotalFees = sellLiquidityFee + sellGiveWellWalletFee;
        require(sellTotalFees <= 3, "Must keep fees at 3% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function updateGiveWellWallet(address newWallet) external onlyOwner {
        GiveWellWallet = newWallet;
    }
    

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

    function updateLimits() private {
        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;
    }


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


                //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.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForGiveWellWallet += fees * sellGiveWellWalletFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForGiveWellWallet += fees * buyGiveWellWalletFee / 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 + tokensForGiveWellWallet;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

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

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForGiveWell = ethBalance.mul(tokensForGiveWellWallet).div(totalTokensToSwap);
        
        uint256 ethForLiquidity = ethBalance - ethForGiveWell;
        
        
        tokensForLiquidity = 0;
        tokensForGiveWellWallet = 0;
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }
        
        (success,) = address(GiveWellWallet).call{value: address(this).balance}("");
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"GiveWellWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"buyGiveWellWalletFee","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":"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"sellGiveWellWalletFee","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","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":"tokensForGiveWellWallet","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyGiveWellWalletFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateGiveWellWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellGiveWellWalletFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805463ffffffff191660011790553480156200002157600080fd5b50604080518082018252600c81526b4769766557656c6c20496e7560a01b60208083019182528351808501909452600484526347494e5560e01b9084015281519192916200007291600391620008b4565b50805162000088906004906020840190620008b4565b50505060006200009d620004a860201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200010d816001620004ac565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200015357600080fd5b505afa15801562000168573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018e91906200095a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d757600080fd5b505afa158015620001ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021291906200095a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200025b57600080fd5b505af115801562000270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029691906200095a565b6001600160a01b031660a0819052620002b1906001620004ac565b60a051620002c190600162000526565b6001600281816000620002d76009600a62000a98565b620002e79063ee6b280062000ab0565b90508060166000828254620002fd919062000ad2565b90915550506019601481905560158190556016546103e891620003209162000ab0565b6200032c919062000aed565b600855601654620186a0906200034490604b62000ab0565b62000350919062000aed565b6009556014546016546103e891620003689162000ab0565b62000374919062000aed565b600a55600d859055600e8490556200038d848662000ad2565b600c5560108390556011829055620003a6828462000ad2565b600f55600780546001600160a01b031916737cf2ebb5ca55a8bd671a020f8bdbaf07f60f26c1179055620003ee620003e66005546001600160a01b031690565b60016200057a565b620003fb3060016200057a565b6200040a61dead60016200057a565b62000429620004216005546001600160a01b031690565b6001620004ac565b62000436306001620004ac565b6200044561dead6001620004ac565b620004666200045c6005546001600160a01b031690565b6080518362000624565b6200048f33620004796009600a62000a98565b620004899063ee6b280062000ab0565b6200074c565b5050600b805462ffff00191690555062000b4d92505050565b3390565b6005546001600160a01b03163314620004fb5760405162461bcd60e51b81526020600482018190526024820152600080516020620033fc83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005c55760405162461bcd60e51b81526020600482018190526024820152600080516020620033fc8339815191526044820152606401620004f2565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038316620006885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620004f2565b6001600160a01b038216620006eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004f2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620007a45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004f2565b620007c0816002546200084860201b620013b11790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620007f3918390620013b162000848821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008062000857838562000ad2565b905083811015620008ab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004f2565b90505b92915050565b828054620008c29062000b10565b90600052602060002090601f016020900481019282620008e6576000855562000931565b82601f106200090157805160ff191683800117855562000931565b8280016001018555821562000931579182015b828111156200093157825182559160200191906001019062000914565b506200093f92915062000943565b5090565b5b808211156200093f576000815560010162000944565b6000602082840312156200096d57600080fd5b81516001600160a01b0381168114620008ab57600080fd5b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009dc578160001904821115620009c057620009c062000985565b80851615620009ce57918102915b93841c9390800290620009a0565b509250929050565b600082620009f557506001620008ae565b8162000a0457506000620008ae565b816001811462000a1d576002811462000a285762000a48565b6001915050620008ae565b60ff84111562000a3c5762000a3c62000985565b50506001821b620008ae565b5060208310610133831016604e8410600b841016171562000a6d575081810a620008ae565b62000a7983836200099b565b806000190482111562000a905762000a9062000985565b029392505050565b600062000aa960ff841683620009e4565b9392505050565b600081600019048311821515161562000acd5762000acd62000985565b500290565b6000821982111562000ae85762000ae862000985565b500190565b60008262000b0b57634e487b7160e01b600052601260045260246000fd5b500490565b600181811c9082168062000b2557607f821691505b6020821081141562000b4757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161285f62000b9d6000396000818161054d0152610f070152600081816103ee0152818161203f0152818161210701528181612143015281816121bd015261221a015261285f6000f3fe6080604052600436106103035760003560e01c80637571336a11610190578063bbc0c742116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610930578063f2fde38b14610946578063f637434214610966578063f8b45b051461097c57600080fd5b8063d85ba063146108be578063dd62ed3e146108d4578063e2f456051461091a57600080fd5b8063bbc0c74214610808578063c024666814610827578063c18bc19514610847578063c876d0b914610867578063c8c8ebe414610888578063d257b34f1461089e57600080fd5b806395d89b4111610149578063a325f6e811610123578063a325f6e814610782578063a457c2d714610798578063a9059cbb146107b8578063b62496f5146107d857600080fd5b806395d89b4114610737578063975d71e21461074c5780639a7a23d61461076257600080fd5b80637571336a1461068e5780637ab43983146106ae5780637ea98fda146106c45780638a8c523c146106e45780638da5cb5b146106f95780638ea5220f1461071757600080fd5b806327c8f8351161024f57806366ca9b83116102085780636fbc0105116101e25780636fbc01051461061857806370a082311461062e578063715018a614610664578063751039fc1461067957600080fd5b806366ca9b83146105c25780636a486a8e146105e25780636ddd1713146105f857600080fd5b806327c8f835146104e9578063313ce567146104ff578063395093511461051b57806349bd5a5e1461053b5780634a62bb651461056f5780634fbee1931461058957600080fd5b806318160ddd116102bc5780631ef72b51116102965780631ef72b5114610473578063203e727e1461049357806323b872dd146104b3578063264cdd4d146104d357600080fd5b806318160ddd146104285780631816467f1461043d5780631a8145bb1461045d57600080fd5b806302dbd8f81461030f578063047fc9aa1461033157806306fdde031461035a578063095ea7b31461037c57806310d5de53146103ac5780631694505e146103dc57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032f61032a3660046122d5565b610992565b005b34801561033d57600080fd5b5061034760165481565b6040519081526020015b60405180910390f35b34801561036657600080fd5b5061036f610a32565b60405161035191906122f7565b34801561038857600080fd5b5061039c610397366004612364565b610ac4565b6040519015158152602001610351565b3480156103b857600080fd5b5061039c6103c7366004612390565b60186020526000908152604090205460ff1681565b3480156103e857600080fd5b506104107f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610351565b34801561043457600080fd5b50600254610347565b34801561044957600080fd5b5061032f610458366004612390565b610adb565b34801561046957600080fd5b5061034760125481565b34801561047f57600080fd5b50600754610410906001600160a01b031681565b34801561049f57600080fd5b5061032f6104ae3660046123ad565b610b27565b3480156104bf57600080fd5b5061039c6104ce3660046123c6565b610c0b565b3480156104df57600080fd5b5061034760135481565b3480156104f557600080fd5b5061041061dead81565b34801561050b57600080fd5b5060405160098152602001610351565b34801561052757600080fd5b5061039c610536366004612364565b610c74565b34801561054757600080fd5b506104107f000000000000000000000000000000000000000000000000000000000000000081565b34801561057b57600080fd5b50600b5461039c9060ff1681565b34801561059557600080fd5b5061039c6105a4366004612390565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156105ce57600080fd5b5061032f6105dd3660046122d5565b610caa565b3480156105ee57600080fd5b50610347600f5481565b34801561060457600080fd5b50600b5461039c9062010000900460ff1681565b34801561062457600080fd5b5061034760115481565b34801561063a57600080fd5b50610347610649366004612390565b6001600160a01b031660009081526020819052604090205490565b34801561067057600080fd5b5061032f610d3d565b34801561068557600080fd5b5061039c610db1565b34801561069a57600080fd5b5061032f6106a9366004612407565b610dee565b3480156106ba57600080fd5b5061034760145481565b3480156106d057600080fd5b5061032f6106df366004612390565b610e43565b3480156106f057600080fd5b5061032f610e8f565b34801561070557600080fd5b506005546001600160a01b0316610410565b34801561072357600080fd5b50600654610410906001600160a01b031681565b34801561074357600080fd5b5061036f610ecc565b34801561075857600080fd5b5061034760155481565b34801561076e57600080fd5b5061032f61077d366004612407565b610edb565b34801561078e57600080fd5b50610347600e5481565b3480156107a457600080fd5b5061039c6107b3366004612364565b610fb7565b3480156107c457600080fd5b5061039c6107d3366004612364565b611006565b3480156107e457600080fd5b5061039c6107f3366004612390565b60196020526000908152604090205460ff1681565b34801561081457600080fd5b50600b5461039c90610100900460ff1681565b34801561083357600080fd5b5061032f610842366004612407565b611013565b34801561085357600080fd5b5061032f6108623660046123ad565b61109c565b34801561087357600080fd5b50600b5461039c906301000000900460ff1681565b34801561089457600080fd5b5061034760085481565b3480156108aa57600080fd5b5061039c6108b93660046123ad565b611174565b3480156108ca57600080fd5b50610347600c5481565b3480156108e057600080fd5b506103476108ef366004612445565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561092657600080fd5b5061034760095481565b34801561093c57600080fd5b50610347600d5481565b34801561095257600080fd5b5061032f610961366004612390565b6112c6565b34801561097257600080fd5b5061034760105481565b34801561098857600080fd5b50610347600a5481565b6005546001600160a01b031633146109c55760405162461bcd60e51b81526004016109bc90612473565b60405180910390fd5b601082905560118190556109d981836124be565b600f81905560031015610a2e5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016109bc565b5050565b606060038054610a41906124d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6d906124d6565b8015610aba5780601f10610a8f57610100808354040283529160200191610aba565b820191906000526020600020905b815481529060010190602001808311610a9d57829003601f168201915b5050505050905090565b6000610ad1338484611417565b5060015b92915050565b6005546001600160a01b03163314610b055760405162461bcd60e51b81526004016109bc90612473565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b515760405162461bcd60e51b81526004016109bc90612473565b610b5d6009600a6125f5565b6103e8610b6960025490565b610b74906001612604565b610b7e9190612623565b610b889190612623565b811015610bef5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109bc565b610bfb6009600a6125f5565b610c059082612604565b60085550565b6000610c1884848461153c565b610c6a8433610c65856040518060600160405280602881526020016127dd602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611be9565b611417565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ad1918590610c6590866113b1565b6005546001600160a01b03163314610cd45760405162461bcd60e51b81526004016109bc90612473565b600d829055600e819055610ce881836124be565b600c81905560031015610a2e5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016109bc565b6005546001600160a01b03163314610d675760405162461bcd60e51b81526004016109bc90612473565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610dde5760405162461bcd60e51b81526004016109bc90612473565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e185760405162461bcd60e51b81526004016109bc90612473565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e6d5760405162461bcd60e51b81526004016109bc90612473565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610eb95760405162461bcd60e51b81526004016109bc90612473565b600b805462ffff00191662010100179055565b606060048054610a41906124d6565b6005546001600160a01b03163314610f055760405162461bcd60e51b81526004016109bc90612473565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610fad5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109bc565b610a2e8282611c23565b6000610ad13384610c6585604051806060016040528060258152602001612805602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611be9565b6000610ad133848461153c565b6005546001600160a01b0316331461103d5760405162461bcd60e51b81526004016109bc90612473565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110c65760405162461bcd60e51b81526004016109bc90612473565b6110d26009600a6125f5565b6103e86110de60025490565b6110e9906005612604565b6110f39190612623565b6110fd9190612623565b8110156111585760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109bc565b6111646009600a6125f5565b61116e9082612604565b600a5550565b6005546000906001600160a01b031633146111a15760405162461bcd60e51b81526004016109bc90612473565b620186a06111ae60025490565b6111b9906001612604565b6111c39190612623565b8210156112305760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109bc565b6103e861123c60025490565b611247906005612604565b6112519190612623565b8211156112bd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109bc565b50600955600190565b6005546001600160a01b031633146112f05760405162461bcd60e51b81526004016109bc90612473565b6001600160a01b0381166113555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bc565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806113be83856124be565b9050838110156114105760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109bc565b9392505050565b6001600160a01b0383166114795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109bc565b6001600160a01b0382166114da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109bc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166115625760405162461bcd60e51b81526004016109bc90612645565b6001600160a01b0382166115885760405162461bcd60e51b81526004016109bc9061268a565b8061159e5761159983836000611c77565b505050565b600b5460ff1615611914576005546001600160a01b038481169116148015906115d557506005546001600160a01b03838116911614155b80156115e957506001600160a01b03821615155b801561160057506001600160a01b03821661dead14155b80156116165750600554600160a01b900460ff16155b1561191457600b54610100900460ff166116ae576001600160a01b03831660009081526017602052604090205460ff168061166957506001600160a01b03821660009081526017602052604090205460ff165b6116ae5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109bc565b6001600160a01b03831660009081526019602052604090205460ff1680156116ef57506001600160a01b03821660009081526018602052604090205460ff16155b156117d3576008548111156117645760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109bc565b600a546001600160a01b03831660009081526020819052604090205461178a90836124be565b11156117ce5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109bc565b611914565b6001600160a01b03821660009081526019602052604090205460ff16801561181457506001600160a01b03831660009081526018602052604090205460ff16155b1561188a576008548111156117ce5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109bc565b6001600160a01b03821660009081526018602052604090205460ff1661191457600a546001600160a01b0383166000908152602081905260409020546118d090836124be565b11156119145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109bc565b30600090815260208190526040902054600954811080159081906119405750600b5462010000900460ff165b80156119565750600554600160a01b900460ff16155b801561197b57506001600160a01b03851660009081526019602052604090205460ff16155b80156119a057506001600160a01b03851660009081526017602052604090205460ff16155b80156119c557506001600160a01b03841660009081526017602052604090205460ff16155b156119f3576005805460ff60a01b1916600160a01b1790556119e5611d80565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611a4157506001600160a01b03851660009081526017602052604090205460ff165b15611a4a575060005b60008115611bd5576001600160a01b03861660009081526019602052604090205460ff168015611a7c57506000600f54115b15611b0a57611aa16064611a9b600f5488611ee590919063ffffffff16565b90611f64565b9050600f5460105482611ab49190612604565b611abe9190612623565b60126000828254611acf91906124be565b9091555050600f54601154611ae49083612604565b611aee9190612623565b60136000828254611aff91906124be565b90915550611bb79050565b6001600160a01b03871660009081526019602052604090205460ff168015611b3457506000600c54115b15611bb757611b536064611a9b600c5488611ee590919063ffffffff16565b9050600c54600d5482611b669190612604565b611b709190612623565b60126000828254611b8191906124be565b9091555050600c54600e54611b969083612604565b611ba09190612623565b60136000828254611bb191906124be565b90915550505b8015611bc857611bc8873083611c77565b611bd281866126cd565b94505b611be0878787611c77565b50505050505050565b60008184841115611c0d5760405162461bcd60e51b81526004016109bc91906122f7565b506000611c1a84866126cd565b95945050505050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c9d5760405162461bcd60e51b81526004016109bc90612645565b6001600160a01b038216611cc35760405162461bcd60e51b81526004016109bc9061268a565b611d00816040518060600160405280602681526020016127b7602691396001600160a01b0386166000908152602081905260409020549190611be9565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d2f90826113b1565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161152f565b3060009081526020819052604081205490506000601354601254611da491906124be565b90506000821580611db3575081155b15611dbd57505050565b600954611dcb906005612604565b831115611de357600954611de0906005612604565b92505b600060028360125486611df69190612604565b611e009190612623565b611e0a9190612623565b90506000611e188583611fa6565b905047611e2482611fe8565b6000611e304783611fa6565b90506000611e4d87611a9b60135485611ee590919063ffffffff16565b90506000611e5b82846126cd565b6000601281905560135590508515801590611e765750600081115b15611e8557611e8586826121b7565b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ed2576040519150601f19603f3d011682016040523d82523d6000602084013e611ed7565b606091505b505050505050505050505050565b600082611ef457506000610ad5565b6000611f008385612604565b905082611f0d8583612623565b146114105760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109bc565b600061141083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122a7565b600061141083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611be9565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061201d5761201d6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561209657600080fd5b505afa1580156120aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ce91906126fa565b816001815181106120e1576120e16126e4565b60200260200101906001600160a01b031690816001600160a01b03168152505061212c307f000000000000000000000000000000000000000000000000000000000000000084611417565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612181908590600090869030904290600401612717565b600060405180830381600087803b15801561219b57600080fd5b505af11580156121af573d6000803e3d6000fd5b505050505050565b6121e2307f000000000000000000000000000000000000000000000000000000000000000084611417565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561226757600080fd5b505af115801561227b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122a09190612788565b5050505050565b600081836122c85760405162461bcd60e51b81526004016109bc91906122f7565b506000611c1a8486612623565b600080604083850312156122e857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561232457858101830151858201604001528201612308565b81811115612336576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461236157600080fd5b50565b6000806040838503121561237757600080fd5b82356123828161234c565b946020939093013593505050565b6000602082840312156123a257600080fd5b81356114108161234c565b6000602082840312156123bf57600080fd5b5035919050565b6000806000606084860312156123db57600080fd5b83356123e68161234c565b925060208401356123f68161234c565b929592945050506040919091013590565b6000806040838503121561241a57600080fd5b82356124258161234c565b91506020830135801515811461243a57600080fd5b809150509250929050565b6000806040838503121561245857600080fd5b82356124638161234c565b9150602083013561243a8161234c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124d1576124d16124a8565b500190565b600181811c908216806124ea57607f821691505b6020821081141561250b57634e487b7160e01b600052602260045260246000fd5b50919050565b600181815b8085111561254c578160001904821115612532576125326124a8565b8085161561253f57918102915b93841c9390800290612516565b509250929050565b60008261256357506001610ad5565b8161257057506000610ad5565b81600181146125865760028114612590576125ac565b6001915050610ad5565b60ff8411156125a1576125a16124a8565b50506001821b610ad5565b5060208310610133831016604e8410600b84101617156125cf575081810a610ad5565b6125d98383612511565b80600019048211156125ed576125ed6124a8565b029392505050565b600061141060ff841683612554565b600081600019048311821515161561261e5761261e6124a8565b500290565b60008261264057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156126df576126df6124a8565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561270c57600080fd5b81516114108161234c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127675784516001600160a01b031683529383019391830191600101612742565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561279d57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203529121e66b48098e447520b45740a7d7310f41ec654e4f97c363f761211a1a764736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103035760003560e01c80637571336a11610190578063bbc0c742116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610930578063f2fde38b14610946578063f637434214610966578063f8b45b051461097c57600080fd5b8063d85ba063146108be578063dd62ed3e146108d4578063e2f456051461091a57600080fd5b8063bbc0c74214610808578063c024666814610827578063c18bc19514610847578063c876d0b914610867578063c8c8ebe414610888578063d257b34f1461089e57600080fd5b806395d89b4111610149578063a325f6e811610123578063a325f6e814610782578063a457c2d714610798578063a9059cbb146107b8578063b62496f5146107d857600080fd5b806395d89b4114610737578063975d71e21461074c5780639a7a23d61461076257600080fd5b80637571336a1461068e5780637ab43983146106ae5780637ea98fda146106c45780638a8c523c146106e45780638da5cb5b146106f95780638ea5220f1461071757600080fd5b806327c8f8351161024f57806366ca9b83116102085780636fbc0105116101e25780636fbc01051461061857806370a082311461062e578063715018a614610664578063751039fc1461067957600080fd5b806366ca9b83146105c25780636a486a8e146105e25780636ddd1713146105f857600080fd5b806327c8f835146104e9578063313ce567146104ff578063395093511461051b57806349bd5a5e1461053b5780634a62bb651461056f5780634fbee1931461058957600080fd5b806318160ddd116102bc5780631ef72b51116102965780631ef72b5114610473578063203e727e1461049357806323b872dd146104b3578063264cdd4d146104d357600080fd5b806318160ddd146104285780631816467f1461043d5780631a8145bb1461045d57600080fd5b806302dbd8f81461030f578063047fc9aa1461033157806306fdde031461035a578063095ea7b31461037c57806310d5de53146103ac5780631694505e146103dc57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032f61032a3660046122d5565b610992565b005b34801561033d57600080fd5b5061034760165481565b6040519081526020015b60405180910390f35b34801561036657600080fd5b5061036f610a32565b60405161035191906122f7565b34801561038857600080fd5b5061039c610397366004612364565b610ac4565b6040519015158152602001610351565b3480156103b857600080fd5b5061039c6103c7366004612390565b60186020526000908152604090205460ff1681565b3480156103e857600080fd5b506104107f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610351565b34801561043457600080fd5b50600254610347565b34801561044957600080fd5b5061032f610458366004612390565b610adb565b34801561046957600080fd5b5061034760125481565b34801561047f57600080fd5b50600754610410906001600160a01b031681565b34801561049f57600080fd5b5061032f6104ae3660046123ad565b610b27565b3480156104bf57600080fd5b5061039c6104ce3660046123c6565b610c0b565b3480156104df57600080fd5b5061034760135481565b3480156104f557600080fd5b5061041061dead81565b34801561050b57600080fd5b5060405160098152602001610351565b34801561052757600080fd5b5061039c610536366004612364565b610c74565b34801561054757600080fd5b506104107f000000000000000000000000d805fb416585d1d724e29f0e38529b9c7a5db81d81565b34801561057b57600080fd5b50600b5461039c9060ff1681565b34801561059557600080fd5b5061039c6105a4366004612390565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156105ce57600080fd5b5061032f6105dd3660046122d5565b610caa565b3480156105ee57600080fd5b50610347600f5481565b34801561060457600080fd5b50600b5461039c9062010000900460ff1681565b34801561062457600080fd5b5061034760115481565b34801561063a57600080fd5b50610347610649366004612390565b6001600160a01b031660009081526020819052604090205490565b34801561067057600080fd5b5061032f610d3d565b34801561068557600080fd5b5061039c610db1565b34801561069a57600080fd5b5061032f6106a9366004612407565b610dee565b3480156106ba57600080fd5b5061034760145481565b3480156106d057600080fd5b5061032f6106df366004612390565b610e43565b3480156106f057600080fd5b5061032f610e8f565b34801561070557600080fd5b506005546001600160a01b0316610410565b34801561072357600080fd5b50600654610410906001600160a01b031681565b34801561074357600080fd5b5061036f610ecc565b34801561075857600080fd5b5061034760155481565b34801561076e57600080fd5b5061032f61077d366004612407565b610edb565b34801561078e57600080fd5b50610347600e5481565b3480156107a457600080fd5b5061039c6107b3366004612364565b610fb7565b3480156107c457600080fd5b5061039c6107d3366004612364565b611006565b3480156107e457600080fd5b5061039c6107f3366004612390565b60196020526000908152604090205460ff1681565b34801561081457600080fd5b50600b5461039c90610100900460ff1681565b34801561083357600080fd5b5061032f610842366004612407565b611013565b34801561085357600080fd5b5061032f6108623660046123ad565b61109c565b34801561087357600080fd5b50600b5461039c906301000000900460ff1681565b34801561089457600080fd5b5061034760085481565b3480156108aa57600080fd5b5061039c6108b93660046123ad565b611174565b3480156108ca57600080fd5b50610347600c5481565b3480156108e057600080fd5b506103476108ef366004612445565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561092657600080fd5b5061034760095481565b34801561093c57600080fd5b50610347600d5481565b34801561095257600080fd5b5061032f610961366004612390565b6112c6565b34801561097257600080fd5b5061034760105481565b34801561098857600080fd5b50610347600a5481565b6005546001600160a01b031633146109c55760405162461bcd60e51b81526004016109bc90612473565b60405180910390fd5b601082905560118190556109d981836124be565b600f81905560031015610a2e5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016109bc565b5050565b606060038054610a41906124d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6d906124d6565b8015610aba5780601f10610a8f57610100808354040283529160200191610aba565b820191906000526020600020905b815481529060010190602001808311610a9d57829003601f168201915b5050505050905090565b6000610ad1338484611417565b5060015b92915050565b6005546001600160a01b03163314610b055760405162461bcd60e51b81526004016109bc90612473565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b515760405162461bcd60e51b81526004016109bc90612473565b610b5d6009600a6125f5565b6103e8610b6960025490565b610b74906001612604565b610b7e9190612623565b610b889190612623565b811015610bef5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109bc565b610bfb6009600a6125f5565b610c059082612604565b60085550565b6000610c1884848461153c565b610c6a8433610c65856040518060600160405280602881526020016127dd602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611be9565b611417565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ad1918590610c6590866113b1565b6005546001600160a01b03163314610cd45760405162461bcd60e51b81526004016109bc90612473565b600d829055600e819055610ce881836124be565b600c81905560031015610a2e5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016109bc565b6005546001600160a01b03163314610d675760405162461bcd60e51b81526004016109bc90612473565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610dde5760405162461bcd60e51b81526004016109bc90612473565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e185760405162461bcd60e51b81526004016109bc90612473565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e6d5760405162461bcd60e51b81526004016109bc90612473565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610eb95760405162461bcd60e51b81526004016109bc90612473565b600b805462ffff00191662010100179055565b606060048054610a41906124d6565b6005546001600160a01b03163314610f055760405162461bcd60e51b81526004016109bc90612473565b7f000000000000000000000000d805fb416585d1d724e29f0e38529b9c7a5db81d6001600160a01b0316826001600160a01b03161415610fad5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109bc565b610a2e8282611c23565b6000610ad13384610c6585604051806060016040528060258152602001612805602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611be9565b6000610ad133848461153c565b6005546001600160a01b0316331461103d5760405162461bcd60e51b81526004016109bc90612473565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110c65760405162461bcd60e51b81526004016109bc90612473565b6110d26009600a6125f5565b6103e86110de60025490565b6110e9906005612604565b6110f39190612623565b6110fd9190612623565b8110156111585760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109bc565b6111646009600a6125f5565b61116e9082612604565b600a5550565b6005546000906001600160a01b031633146111a15760405162461bcd60e51b81526004016109bc90612473565b620186a06111ae60025490565b6111b9906001612604565b6111c39190612623565b8210156112305760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109bc565b6103e861123c60025490565b611247906005612604565b6112519190612623565b8211156112bd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109bc565b50600955600190565b6005546001600160a01b031633146112f05760405162461bcd60e51b81526004016109bc90612473565b6001600160a01b0381166113555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bc565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806113be83856124be565b9050838110156114105760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109bc565b9392505050565b6001600160a01b0383166114795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109bc565b6001600160a01b0382166114da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109bc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166115625760405162461bcd60e51b81526004016109bc90612645565b6001600160a01b0382166115885760405162461bcd60e51b81526004016109bc9061268a565b8061159e5761159983836000611c77565b505050565b600b5460ff1615611914576005546001600160a01b038481169116148015906115d557506005546001600160a01b03838116911614155b80156115e957506001600160a01b03821615155b801561160057506001600160a01b03821661dead14155b80156116165750600554600160a01b900460ff16155b1561191457600b54610100900460ff166116ae576001600160a01b03831660009081526017602052604090205460ff168061166957506001600160a01b03821660009081526017602052604090205460ff165b6116ae5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109bc565b6001600160a01b03831660009081526019602052604090205460ff1680156116ef57506001600160a01b03821660009081526018602052604090205460ff16155b156117d3576008548111156117645760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109bc565b600a546001600160a01b03831660009081526020819052604090205461178a90836124be565b11156117ce5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109bc565b611914565b6001600160a01b03821660009081526019602052604090205460ff16801561181457506001600160a01b03831660009081526018602052604090205460ff16155b1561188a576008548111156117ce5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109bc565b6001600160a01b03821660009081526018602052604090205460ff1661191457600a546001600160a01b0383166000908152602081905260409020546118d090836124be565b11156119145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109bc565b30600090815260208190526040902054600954811080159081906119405750600b5462010000900460ff165b80156119565750600554600160a01b900460ff16155b801561197b57506001600160a01b03851660009081526019602052604090205460ff16155b80156119a057506001600160a01b03851660009081526017602052604090205460ff16155b80156119c557506001600160a01b03841660009081526017602052604090205460ff16155b156119f3576005805460ff60a01b1916600160a01b1790556119e5611d80565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611a4157506001600160a01b03851660009081526017602052604090205460ff165b15611a4a575060005b60008115611bd5576001600160a01b03861660009081526019602052604090205460ff168015611a7c57506000600f54115b15611b0a57611aa16064611a9b600f5488611ee590919063ffffffff16565b90611f64565b9050600f5460105482611ab49190612604565b611abe9190612623565b60126000828254611acf91906124be565b9091555050600f54601154611ae49083612604565b611aee9190612623565b60136000828254611aff91906124be565b90915550611bb79050565b6001600160a01b03871660009081526019602052604090205460ff168015611b3457506000600c54115b15611bb757611b536064611a9b600c5488611ee590919063ffffffff16565b9050600c54600d5482611b669190612604565b611b709190612623565b60126000828254611b8191906124be565b9091555050600c54600e54611b969083612604565b611ba09190612623565b60136000828254611bb191906124be565b90915550505b8015611bc857611bc8873083611c77565b611bd281866126cd565b94505b611be0878787611c77565b50505050505050565b60008184841115611c0d5760405162461bcd60e51b81526004016109bc91906122f7565b506000611c1a84866126cd565b95945050505050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c9d5760405162461bcd60e51b81526004016109bc90612645565b6001600160a01b038216611cc35760405162461bcd60e51b81526004016109bc9061268a565b611d00816040518060600160405280602681526020016127b7602691396001600160a01b0386166000908152602081905260409020549190611be9565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d2f90826113b1565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161152f565b3060009081526020819052604081205490506000601354601254611da491906124be565b90506000821580611db3575081155b15611dbd57505050565b600954611dcb906005612604565b831115611de357600954611de0906005612604565b92505b600060028360125486611df69190612604565b611e009190612623565b611e0a9190612623565b90506000611e188583611fa6565b905047611e2482611fe8565b6000611e304783611fa6565b90506000611e4d87611a9b60135485611ee590919063ffffffff16565b90506000611e5b82846126cd565b6000601281905560135590508515801590611e765750600081115b15611e8557611e8586826121b7565b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ed2576040519150601f19603f3d011682016040523d82523d6000602084013e611ed7565b606091505b505050505050505050505050565b600082611ef457506000610ad5565b6000611f008385612604565b905082611f0d8583612623565b146114105760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109bc565b600061141083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122a7565b600061141083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611be9565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061201d5761201d6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561209657600080fd5b505afa1580156120aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ce91906126fa565b816001815181106120e1576120e16126e4565b60200260200101906001600160a01b031690816001600160a01b03168152505061212c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611417565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612181908590600090869030904290600401612717565b600060405180830381600087803b15801561219b57600080fd5b505af11580156121af573d6000803e3d6000fd5b505050505050565b6121e2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611417565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561226757600080fd5b505af115801561227b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122a09190612788565b5050505050565b600081836122c85760405162461bcd60e51b81526004016109bc91906122f7565b506000611c1a8486612623565b600080604083850312156122e857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561232457858101830151858201604001528201612308565b81811115612336576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461236157600080fd5b50565b6000806040838503121561237757600080fd5b82356123828161234c565b946020939093013593505050565b6000602082840312156123a257600080fd5b81356114108161234c565b6000602082840312156123bf57600080fd5b5035919050565b6000806000606084860312156123db57600080fd5b83356123e68161234c565b925060208401356123f68161234c565b929592945050506040919091013590565b6000806040838503121561241a57600080fd5b82356124258161234c565b91506020830135801515811461243a57600080fd5b809150509250929050565b6000806040838503121561245857600080fd5b82356124638161234c565b9150602083013561243a8161234c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124d1576124d16124a8565b500190565b600181811c908216806124ea57607f821691505b6020821081141561250b57634e487b7160e01b600052602260045260246000fd5b50919050565b600181815b8085111561254c578160001904821115612532576125326124a8565b8085161561253f57918102915b93841c9390800290612516565b509250929050565b60008261256357506001610ad5565b8161257057506000610ad5565b81600181146125865760028114612590576125ac565b6001915050610ad5565b60ff8411156125a1576125a16124a8565b50506001821b610ad5565b5060208310610133831016604e8410600b84101617156125cf575081810a610ad5565b6125d98383612511565b80600019048211156125ed576125ed6124a8565b029392505050565b600061141060ff841683612554565b600081600019048311821515161561261e5761261e6124a8565b500290565b60008261264057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156126df576126df6124a8565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561270c57600080fd5b81516114108161234c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127675784516001600160a01b031683529383019391830191600101612742565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561279d57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203529121e66b48098e447520b45740a7d7310f41ec654e4f97c363f761211a1a764736f6c63430008090033

Deployed Bytecode Sourcemap

29858:13294:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35612:340;;;;;;;;;;-1:-1:-1;35612:340:0;;;;;:::i;:::-;;:::i;:::-;;30923:21;;;;;;;;;;;;;;;;;;;413:25:1;;;401:2;386:18;30923:21:0;;;;;;;;8015:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10181:169::-;;;;;;;;;;-1:-1:-1;10181:169:0;;;;;:::i;:::-;;:::i;:::-;;;1672:14:1;;1665:22;1647:41;;1635:2;1620:18;10181:169:0;1507:187:1;31098:64:0;;;;;;;;;;-1:-1:-1;31098:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29941:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2142:32:1;;;2124:51;;2112:2;2097:18;29941:51:0;1951:230:1;9134:108:0;;;;;;;;;;-1:-1:-1;9222:12:0;;9134:108;;36598:103;;;;;;;;;;-1:-1:-1;36598:103:0;;;;;:::i;:::-;;:::i;30771:33::-;;;;;;;;;;;;;;;;30167:29;;;;;;;;;;-1:-1:-1;30167:29:0;;;;-1:-1:-1;;;;;30167:29:0;;;34606:255;;;;;;;;;;-1:-1:-1;34606:255:0;;;;;:::i;:::-;;:::i;10832:355::-;;;;;;;;;;-1:-1:-1;10832:355:0;;;;;:::i;:::-;;:::i;30811:38::-;;;;;;;;;;;;;;;;30044:53;;;;;;;;;;;;30090:6;30044:53;;8977:92;;;;;;;;;;-1:-1:-1;8977:92:0;;9060:1;3182:36:1;;3170:2;3155:18;8977:92:0;3040:184:1;11596:218:0;;;;;;;;;;-1:-1:-1;11596:218:0;;;;;:::i;:::-;;:::i;29999:38::-;;;;;;;;;;;;;;;30361:33;;;;;;;;;;-1:-1:-1;30361:33:0;;;;;;;;36836:125;;;;;;;;;;-1:-1:-1;36836:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;36925:28:0;36901:4;36925:28;;;:19;:28;;;;;;;;;36836:125;35269:331;;;;;;;;;;-1:-1:-1;35269:331:0;;;;;:::i;:::-;;:::i;30649:28::-;;;;;;;;;;;;;;;;30441:31;;;;;;;;;;-1:-1:-1;30441:31:0;;;;;;;;;;;30722:36;;;;;;;;;;;;;;;;9305:127;;;;;;;;;;-1:-1:-1;9305:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9406:18:0;9379:7;9406:18;;;;;;;;;;;;9305:127;22479:148;;;;;;;;;;;;;:::i;34018:120::-;;;;;;;;;;;;;:::i;35117:144::-;;;;;;;;;;-1:-1:-1;35117:144:0;;;;;:::i;:::-;;:::i;30858:26::-;;;;;;;;;;;;;;;;36709:113;;;;;;;;;;-1:-1:-1;36709:113:0;;;;;:::i;:::-;;:::i;33854:112::-;;;;;;;;;;;;;:::i;21837:79::-;;;;;;;;;;-1:-1:-1;21902:6:0;;-1:-1:-1;;;;;21902:6:0;21837:79;;30136:24;;;;;;;;;;-1:-1:-1;30136:24:0;;;;-1:-1:-1;;;;;30136:24:0;;;8234:104;;;;;;;;;;;;;:::i;30891:25::-;;;;;;;;;;;;;;;;36150:244;;;;;;;;;;-1:-1:-1;36150:244:0;;;;;:::i;:::-;;:::i;30601:35::-;;;;;;;;;;;;;;;;12317:269;;;;;;;;;;-1:-1:-1;12317:269:0;;;;;:::i;:::-;;:::i;9645:175::-;;;;;;;;;;-1:-1:-1;9645:175:0;;;;;:::i;:::-;;:::i;31320:58::-;;;;;;;;;;-1:-1:-1;31320:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30401:33;;;;;;;;;;-1:-1:-1;30401:33:0;;;;;;;;;;;35960:182;;;;;;;;;;-1:-1:-1;35960:182:0;;;;;:::i;:::-;;:::i;34869:236::-;;;;;;;;;;-1:-1:-1;34869:236:0;;;;;:::i;:::-;;:::i;30481:40::-;;;;;;;;;;-1:-1:-1;30481:40:0;;;;;;;;;;;30246:35;;;;;;;;;;;;;;;;34213:381;;;;;;;;;;-1:-1:-1;34213:381:0;;;;;:::i;:::-;;:::i;30530:27::-;;;;;;;;;;;;;;;;9883:151;;;;;;;;;;-1:-1:-1;9883:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9999:18:0;;;9972:7;9999:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9883:151;30288:33;;;;;;;;;;;;;;;;30564:30;;;;;;;;;;;;;;;;22782:244;;;;;;;;;;-1:-1:-1;22782:244:0;;;;;:::i;:::-;;:::i;30684:31::-;;;;;;;;;;;;;;;;30328:24;;;;;;;;;;;;;;;;35612:340;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;;;;;;;;;35718:16:::1;:32:::0;;;35761:21:::1;:46:::0;;;35834:40:::1;35785:22:::0;35737:13;35834:40:::1;:::i;:::-;35818:13;:56:::0;;;35910:1:::1;-1:-1:-1::0;35893:18:0::1;35885:59;;;::::0;-1:-1:-1;;;35885:59:0;;4871:2:1;35885:59:0::1;::::0;::::1;4853:21:1::0;4910:2;4890:18;;;4883:30;4949;4929:18;;;4922:58;4997:18;;35885:59:0::1;4669:352:1::0;35885:59:0::1;35612:340:::0;;:::o;8015:100::-;8069:13;8102:5;8095:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8015:100;:::o;10181:169::-;10264:4;10281:39;731:10;10304:7;10313:6;10281:8;:39::i;:::-;-1:-1:-1;10338:4:0;10181:169;;;;;:::o;36598:103::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;36672:9:::1;:21:::0;;-1:-1:-1;;;;;;36672:21:0::1;-1:-1:-1::0;;;;;36672:21:0;;;::::1;::::0;;;::::1;::::0;;36598:103::o;34606:255::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;34726:15:::1;30232:1;34726:2;:15;:::i;:::-;34719:4;34699:13;9222:12:::0;;;9134:108;34699:13:::1;:17;::::0;34715:1:::1;34699:17;:::i;:::-;:24;;;;:::i;:::-;34698:44;;;;:::i;:::-;34688:6;:54;;34680:114;;;::::0;-1:-1:-1;;;34680:114:0;;7391:2:1;34680:114:0::1;::::0;::::1;7373:21:1::0;7430:2;7410:18;;;7403:30;7469:34;7449:18;;;7442:62;-1:-1:-1;;;7520:18:1;;;7513:45;7575:19;;34680:114:0::1;7189:411:1::0;34680:114:0::1;34838:14;30232:1;34838:2;:14;:::i;:::-;34828:25;::::0;:6;:25:::1;:::i;:::-;34805:20;:48:::0;-1:-1:-1;34606:255:0:o;10832:355::-;10972:4;10989:36;10999:6;11007:9;11018:6;10989:9;:36::i;:::-;11036:121;11045:6;731:10;11067:89;11105:6;11067:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11067:19:0;;;;;;:11;:19;;;;;;;;731:10;11067:33;;;;;;;;;;:37;:89::i;:::-;11036:8;:121::i;:::-;-1:-1:-1;11175:4:0;10832:355;;;;;:::o;11596:218::-;731:10;11684:4;11733:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11733:34:0;;;;;;;;;;11684:4;;11701:83;;11724:7;;11733:50;;11772:10;11733:38;:50::i;35269:331::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;35373:15:::1;:31:::0;;;35415:20:::1;:44:::0;;;35485:38:::1;35438:21:::0;35391:13;35485:38:::1;:::i;:::-;35470:12;:53:::0;;;35558:1:::1;-1:-1:-1::0;35542:17:0::1;35534:58;;;::::0;-1:-1:-1;;;35534:58:0;;4871:2:1;35534:58:0::1;::::0;::::1;4853:21:1::0;4910:2;4890:18;;;4883:30;4949;4929:18;;;4922:58;4997:18;;35534:58:0::1;4669:352:1::0;22479:148:0;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;22570:6:::1;::::0;22549:40:::1;::::0;22586:1:::1;::::0;-1:-1:-1;;;;;22570:6:0::1;::::0;22549:40:::1;::::0;22586:1;;22549:40:::1;22600:6;:19:::0;;-1:-1:-1;;;;;;22600:19:0::1;::::0;;22479:148::o;34018:120::-;22049:6;;34070:4;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;-1:-1:-1;34086:14:0::1;:22:::0;;-1:-1:-1;;34086:22:0::1;::::0;;;34018:120;:::o;35117:144::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35207:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35207:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35117:144::o;36709:113::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;36788:14:::1;:26:::0;;-1:-1:-1;;;;;;36788:26:0::1;-1:-1:-1::0;;;;;36788:26:0;;;::::1;::::0;;;::::1;::::0;;36709:113::o;33854:112::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;33909:13:::1;:20:::0;;-1:-1:-1;;33940:18:0;;;;;33854:112::o;8234:104::-;8290:13;8323:7;8316:14;;;;;:::i;36150:244::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;36257:13:::1;-1:-1:-1::0;;;;;36249:21:0::1;:4;-1:-1:-1::0;;;;;36249:21:0::1;;;36241:91;;;::::0;-1:-1:-1;;;36241:91:0;;7807:2:1;36241:91:0::1;::::0;::::1;7789:21:1::0;7846:2;7826:18;;;7819:30;7885:34;7865:18;;;7858:62;7956:27;7936:18;;;7929:55;8001:19;;36241:91:0::1;7605:421:1::0;36241:91:0::1;36345:41;36374:4;36380:5;36345:28;:41::i;12317:269::-:0;12410:4;12427:129;731:10;12450:7;12459:96;12498:15;12459:96;;;;;;;;;;;;;;;;;731:10;12459:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12459:34:0;;;;;;;;;;;;:38;:96::i;9645:175::-;9731:4;9748:42;731:10;9772:9;9783:6;9748:9;:42::i;35960:182::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36045:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36045:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36100:34;;1647:41:1;;;36100:34:0::1;::::0;1620:18:1;36100:34:0::1;;;;;;;35960:182:::0;;:::o;34869:236::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;34992:15:::1;30232:1;34992:2;:15;:::i;:::-;34985:4;34965:13;9222:12:::0;;;9134:108;34965:13:::1;:17;::::0;34981:1:::1;34965:17;:::i;:::-;:24;;;;:::i;:::-;34964:44;;;;:::i;:::-;34954:6;:54;;34946:103;;;::::0;-1:-1:-1;;;34946:103:0;;8233:2:1;34946:103:0::1;::::0;::::1;8215:21:1::0;8272:2;8252:18;;;8245:30;8311:34;8291:18;;;8284:62;-1:-1:-1;;;8362:18:1;;;8355:34;8406:19;;34946:103:0::1;8031:400:1::0;34946:103:0::1;35082:14;30232:1;35082:2;:14;:::i;:::-;35072:25;::::0;:6;:25:::1;:::i;:::-;35060:9;:37:::0;-1:-1:-1;34869:236:0:o;34213:381::-;22049:6;;34294:4;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;34350:6:::1;34330:13;9222:12:::0;;;9134:108;34330:13:::1;:17;::::0;34346:1:::1;34330:17;:::i;:::-;:26;;;;:::i;:::-;34317:9;:39;;34309:105;;;::::0;-1:-1:-1;;;34309:105:0;;8638:2:1;34309:105:0::1;::::0;::::1;8620:21:1::0;8677:2;8657:18;;;8650:30;8716:34;8696:18;;;8689:62;-1:-1:-1;;;8767:18:1;;;8760:51;8828:19;;34309:105:0::1;8436:417:1::0;34309:105:0::1;34465:4;34445:13;9222:12:::0;;;9134:108;34445:13:::1;:17;::::0;34461:1:::1;34445:17;:::i;:::-;:24;;;;:::i;:::-;34432:9;:37;;34424:102;;;::::0;-1:-1:-1;;;34424:102:0;;9060:2:1;34424:102:0::1;::::0;::::1;9042:21:1::0;9099:2;9079:18;;;9072:30;9138:34;9118:18;;;9111:62;-1:-1:-1;;;9189:18:1;;;9182:50;9249:19;;34424:102:0::1;8858:416:1::0;34424:102:0::1;-1:-1:-1::0;34536:18:0::1;:30:::0;34583:4:::1;::::0;34213:381::o;22782:244::-;22049:6;;-1:-1:-1;;;;;22049:6:0;731:10;22049:22;22041:67;;;;-1:-1:-1;;;22041:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22871:22:0;::::1;22863:73;;;::::0;-1:-1:-1;;;22863:73:0;;9481:2:1;22863:73:0::1;::::0;::::1;9463:21:1::0;9520:2;9500:18;;;9493:30;9559:34;9539:18;;;9532:62;-1:-1:-1;;;9610:18:1;;;9603:36;9656:19;;22863:73:0::1;9279:402:1::0;22863:73:0::1;22973:6;::::0;22952:38:::1;::::0;-1:-1:-1;;;;;22952:38:0;;::::1;::::0;22973:6:::1;::::0;22952:38:::1;::::0;22973:6:::1;::::0;22952:38:::1;23001:6;:17:::0;;-1:-1:-1;;;;;;23001:17:0::1;-1:-1:-1::0;;;;;23001:17:0;;;::::1;::::0;;;::::1;::::0;;22782:244::o;16881:181::-;16939:7;;16971:5;16975:1;16971;:5;:::i;:::-;16959:17;;17000:1;16995;:6;;16987:46;;;;-1:-1:-1;;;16987:46:0;;9888:2:1;16987:46:0;;;9870:21:1;9927:2;9907:18;;;9900:30;9966:29;9946:18;;;9939:57;10013:18;;16987:46:0;9686:351:1;16987:46:0;17053:1;16881:181;-1:-1:-1;;;16881:181:0:o;15503:380::-;-1:-1:-1;;;;;15639:19:0;;15631:68;;;;-1:-1:-1;;;15631:68:0;;10244:2:1;15631:68:0;;;10226:21:1;10283:2;10263:18;;;10256:30;10322:34;10302:18;;;10295:62;-1:-1:-1;;;10373:18:1;;;10366:34;10417:19;;15631:68:0;10042:400:1;15631:68:0;-1:-1:-1;;;;;15718:21:0;;15710:68;;;;-1:-1:-1;;;15710:68:0;;10649:2:1;15710:68:0;;;10631:21:1;10688:2;10668:18;;;10661:30;10727:34;10707:18;;;10700:62;-1:-1:-1;;;10778:18:1;;;10771:32;10820:19;;15710:68:0;10447:398:1;15710:68:0;-1:-1:-1;;;;;15791:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15843:32;;413:25:1;;;15843:32:0;;386:18:1;15843:32:0;;;;;;;;15503:380;;;:::o;37205:3432::-;-1:-1:-1;;;;;37337:18:0;;37329:68;;;;-1:-1:-1;;;37329:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37416:16:0;;37408:64;;;;-1:-1:-1;;;37408:64:0;;;;;;;:::i;:::-;37497:11;37494:92;;37525:28;37541:4;37547:2;37551:1;37525:15;:28::i;:::-;37205:3432;;;:::o;37494:92::-;37609:14;;;;37606:1249;;;21902:6;;-1:-1:-1;;;;;37661:15:0;;;21902:6;;37661:15;;;;:49;;-1:-1:-1;21902:6:0;;-1:-1:-1;;;;;37697:13:0;;;21902:6;;37697:13;;37661:49;:86;;;;-1:-1:-1;;;;;;37731:16:0;;;;37661:86;:128;;;;-1:-1:-1;;;;;;37768:21:0;;37782:6;37768:21;;37661:128;:158;;;;-1:-1:-1;37811:8:0;;-1:-1:-1;;;37811:8:0;;;;37810:9;37661:158;37639:1205;;;37857:13;;;;;;;37853:148;;-1:-1:-1;;;;;37902:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37931:23:0;;;;;;:19;:23;;;;;;;;37902:52;37894:87;;;;-1:-1:-1;;;37894:87:0;;11862:2:1;37894:87:0;;;11844:21:1;11901:2;11881:18;;;11874:30;-1:-1:-1;;;11920:18:1;;;11913:52;11982:18;;37894:87:0;11660:346:1;37894:87:0;-1:-1:-1;;;;;38055:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;38091:35:0;;;;;;:31;:35;;;;;;;;38090:36;38055:71;38051:778;;;38173:20;;38163:6;:30;;38155:96;;;;-1:-1:-1;;;38155:96:0;;12213:2:1;38155:96:0;;;12195:21:1;12252:2;12232:18;;;12225:30;12291:34;12271:18;;;12264:62;-1:-1:-1;;;12342:18:1;;;12335:51;12403:19;;38155:96:0;12011:417:1;38155:96:0;38312:9;;-1:-1:-1;;;;;9406:18:0;;9379:7;9406:18;;;;;;;;;;;38286:22;;:6;:22;:::i;:::-;:35;;38278:67;;;;-1:-1:-1;;;38278:67:0;;12635:2:1;38278:67:0;;;12617:21:1;12674:2;12654:18;;;12647:30;-1:-1:-1;;;12693:18:1;;;12686:49;12752:18;;38278:67:0;12433:343:1;38278:67:0;38051:778;;;-1:-1:-1;;;;;38439:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;38473:37:0;;;;;;:31;:37;;;;;;;;38472:38;38439:71;38435:394;;;38557:20;;38547:6;:30;;38539:97;;;;-1:-1:-1;;;38539:97:0;;12983:2:1;38539:97:0;;;12965:21:1;13022:2;13002:18;;;12995:30;13061:34;13041:18;;;13034:62;-1:-1:-1;;;13112:18:1;;;13105:52;13174:19;;38539:97:0;12781:418:1;38435:394:0;-1:-1:-1;;;;;38683:35:0;;;;;;:31;:35;;;;;;;;38679:150;;38776:9;;-1:-1:-1;;;;;9406:18:0;;9379:7;9406:18;;;;;;;;;;;38750:22;;:6;:22;:::i;:::-;:35;;38742:67;;;;-1:-1:-1;;;38742:67:0;;12635:2:1;38742:67:0;;;12617:21:1;12674:2;12654:18;;;12647:30;-1:-1:-1;;;12693:18:1;;;12686:49;12752:18;;38742:67:0;12433:343:1;38742:67:0;38938:4;38889:28;9406:18;;;;;;;;;;;39004;;38980:42;;;;;;;39053:35;;-1:-1:-1;39077:11:0;;;;;;;39053:35;:61;;;;-1:-1:-1;39106:8:0;;-1:-1:-1;;;39106:8:0;;;;39105:9;39053:61;:110;;;;-1:-1:-1;;;;;;39132:31:0;;;;;;:25;:31;;;;;;;;39131:32;39053:110;:153;;;;-1:-1:-1;;;;;;39181:25:0;;;;;;:19;:25;;;;;;;;39180:26;39053:153;:194;;;;-1:-1:-1;;;;;;39224:23:0;;;;;;:19;:23;;;;;;;;39223:24;39053:194;39035:338;;;39274:8;:15;;-1:-1:-1;;;;39274:15:0;-1:-1:-1;;;39274:15:0;;;39318:10;:8;:10::i;:::-;39345:8;:16;;-1:-1:-1;;;;39345:16:0;;;39035:338;39409:8;;-1:-1:-1;;;;;39518:25:0;;39393:12;39518:25;;;:19;:25;;;;;;39409:8;-1:-1:-1;;;39409:8:0;;;;;39408:9;;39518:25;;:52;;-1:-1:-1;;;;;;39547:23:0;;;;;;:19;:23;;;;;;;;39518:52;39515:99;;;-1:-1:-1;39597:5:0;39515:99;39634:12;39738:7;39735:849;;;-1:-1:-1;;;;;39789:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;39838:1;39822:13;;:17;39789:50;39785:634;;;39866:34;39896:3;39866:25;39877:13;;39866:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;39859:41;;39967:13;;39948:16;;39941:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;39919:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;40057:13:0;;40033:21;;40026:28;;:4;:28;:::i;:::-;:44;;;;:::i;:::-;39999:23;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;39785:634:0;;-1:-1:-1;39785:634:0;;-1:-1:-1;;;;;40131:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;40181:1;40166:12;;:16;40131:51;40128:291;;;40207:33;40236:3;40207:24;40218:12;;40207:6;:10;;:24;;;;:::i;:33::-;40200:40;;40303:12;;40285:15;;40278:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40256:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;40391:12:0;;40368:20;;40361:27;;:4;:27;:::i;:::-;:42;;;;:::i;:::-;40334:23;;:69;;;;;;;:::i;:::-;;;;-1:-1:-1;;40128:291:0;40450:8;;40447:89;;40478:42;40494:4;40508;40515;40478:15;:42::i;:::-;40558:14;40568:4;40558:14;;:::i;:::-;;;39735:849;40596:33;40612:4;40618:2;40622:6;40596:15;:33::i;:::-;37318:3319;;;;37205:3432;;;:::o;17784:192::-;17870:7;17906:12;17898:6;;;;17890:29;;;;-1:-1:-1;;;17890:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17930:9:0;17942:5;17946:1;17942;:5;:::i;:::-;17930:17;17784:192;-1:-1:-1;;;;;17784:192:0:o;36402:188::-;-1:-1:-1;;;;;36485:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36485:39:0;;;;;;;;;;36542:40;;36485:39;;:31;36542:40;;;36402:188;;:::o;13076:573::-;-1:-1:-1;;;;;13216:20:0;;13208:70;;;;-1:-1:-1;;;13208:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13297:23:0;;13289:71;;;;-1:-1:-1;;;13289:71:0;;;;;;;:::i;:::-;13453;13475:6;13453:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13453:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13433:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13558:20;;;;;;;:32;;13583:6;13558:24;:32::i;:::-;-1:-1:-1;;;;;13535:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13606:35;413:25:1;;;13535:20:0;;13606:35;;;;;;386:18:1;13606:35:0;267:177:1;41795:1350:0;41878:4;41834:23;9406:18;;;;;;;;;;;41834:50;;41895:25;41944:23;;41923:18;;:44;;;;:::i;:::-;41895:72;-1:-1:-1;41978:12:0;42014:20;;;:46;;-1:-1:-1;42038:22:0;;42014:46;42011:60;;;42063:7;;;41795:1350::o;42011:60::-;42104:18;;:22;;42125:1;42104:22;:::i;:::-;42086:15;:40;42083:109;;;42158:18;;:22;;42179:1;42158:22;:::i;:::-;42140:40;;42083:109;42261:23;42346:1;42326:17;42305:18;;42287:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42261:86;-1:-1:-1;42358:26:0;42387:36;:15;42261:86;42387:19;:36::i;:::-;42358:65;-1:-1:-1;42472:21:0;42506:36;42358:65;42506:16;:36::i;:::-;42564:18;42585:44;:21;42611:17;42585:25;:44::i;:::-;42564:65;;42650:22;42675:62;42719:17;42675:39;42690:23;;42675:10;:14;;:39;;;;:::i;:62::-;42650:87;-1:-1:-1;42758:23:0;42784:27;42650:87;42784:10;:27;:::i;:::-;42863:1;42842:18;:22;;;42875:23;:27;42758:53;-1:-1:-1;42926:19:0;;;;;:42;;;42967:1;42949:15;:19;42926:42;42923:119;;;42984:46;42997:15;43014;42984:12;:46::i;:::-;43083:14;;43075:62;;-1:-1:-1;;;;;43083:14:0;;;;43111:21;;43075:62;;;;43111:21;43083:14;43075:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;41795:1350:0:o;18235:471::-;18293:7;18538:6;18534:47;;-1:-1:-1;18568:1:0;18561:8;;18534:47;18593:9;18605:5;18609:1;18605;:5;:::i;:::-;18593:17;-1:-1:-1;18638:1:0;18629:5;18633:1;18593:17;18629:5;:::i;:::-;:10;18621:56;;;;-1:-1:-1;;;18621:56:0;;13746:2:1;18621:56:0;;;13728:21:1;13785:2;13765:18;;;13758:30;13824:34;13804:18;;;13797:62;-1:-1:-1;;;13875:18:1;;;13868:31;13916:19;;18621:56:0;13544:397:1;19182:132:0;19240:7;19267:39;19271:1;19274;19267:39;;;;;;;;;;;;;;;;;:3;:39::i;17345:136::-;17403:7;17430:43;17434:1;17437;17430:43;;;;;;;;;;;;;;;;;:3;:43::i;40645:601::-;40797:16;;;40811:1;40797:16;;;;;;;;40773:21;;40797:16;;;;;;;;;;-1:-1:-1;40797:16:0;40773:40;;40842:4;40824;40829:1;40824:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40824:23:0;;;-1:-1:-1;;;;;40824:23:0;;;;;40868:15;-1:-1:-1;;;;;40868:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40858:4;40863:1;40858:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40858:32:0;;;-1:-1:-1;;;;;40858:32:0;;;;;40903:62;40920:4;40935:15;40953:11;40903:8;:62::i;:::-;41004:224;;-1:-1:-1;;;41004:224:0;;-1:-1:-1;;;;;41004:15:0;:66;;;;:224;;41085:11;;41111:1;;41155:4;;41182;;41202:15;;41004:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40700:546;40645:601;:::o;41270:517::-;41418:62;41435:4;41450:15;41468:11;41418:8;:62::i;:::-;41523:256;;-1:-1:-1;;;41523:256:0;;41595:4;41523:256;;;15792:34:1;15842:18;;;15835:34;;;41641:1:0;15885:18:1;;;15878:34;;;15928:18;;;15921:34;30090:6:0;15971:19:1;;;15964:44;41753:15:0;16024:19:1;;;16017:35;41523:15:0;-1:-1:-1;;;;;41523:31:0;;;;41562:9;;15726:19:1;;41523:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41270:517;;:::o;19810:278::-;19896:7;19931:12;19924:5;19916:28;;;;-1:-1:-1;;;19916:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19955:9:0;19967:5;19971:1;19967;:5;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;449:597::-;561:4;590:2;619;608:9;601:21;651:6;645:13;694:6;689:2;678:9;674:18;667:34;719:1;729:140;743:6;740:1;737:13;729:140;;;838:14;;;834:23;;828:30;804:17;;;823:2;800:26;793:66;758:10;;729:140;;;887:6;884:1;881:13;878:91;;;957:1;952:2;943:6;932:9;928:22;924:31;917:42;878:91;-1:-1:-1;1030:2:1;1009:15;-1:-1:-1;;1005:29:1;990:45;;;;1037:2;986:54;;449:597;-1:-1:-1;;;449:597:1:o;1051:131::-;-1:-1:-1;;;;;1126:31:1;;1116:42;;1106:70;;1172:1;1169;1162:12;1106:70;1051:131;:::o;1187:315::-;1255:6;1263;1316:2;1304:9;1295:7;1291:23;1287:32;1284:52;;;1332:1;1329;1322:12;1284:52;1371:9;1358:23;1390:31;1415:5;1390:31;:::i;:::-;1440:5;1492:2;1477:18;;;;1464:32;;-1:-1:-1;;;1187:315:1:o;1699:247::-;1758:6;1811:2;1799:9;1790:7;1786:23;1782:32;1779:52;;;1827:1;1824;1817:12;1779:52;1866:9;1853:23;1885:31;1910:5;1885:31;:::i;2394:180::-;2453:6;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;-1:-1:-1;2545:23:1;;2394:180;-1:-1:-1;2394:180:1:o;2579:456::-;2656:6;2664;2672;2725:2;2713:9;2704:7;2700:23;2696:32;2693:52;;;2741:1;2738;2731:12;2693:52;2780:9;2767:23;2799:31;2824:5;2799:31;:::i;:::-;2849:5;-1:-1:-1;2906:2:1;2891:18;;2878:32;2919:33;2878:32;2919:33;:::i;:::-;2579:456;;2971:7;;-1:-1:-1;;;3025:2:1;3010:18;;;;2997:32;;2579:456::o;3229:416::-;3294:6;3302;3355:2;3343:9;3334:7;3330:23;3326:32;3323:52;;;3371:1;3368;3361:12;3323:52;3410:9;3397:23;3429:31;3454:5;3429:31;:::i;:::-;3479:5;-1:-1:-1;3536:2:1;3521:18;;3508:32;3578:15;;3571:23;3559:36;;3549:64;;3609:1;3606;3599:12;3549:64;3632:7;3622:17;;;3229:416;;;;;:::o;3650:388::-;3718:6;3726;3779:2;3767:9;3758:7;3754:23;3750:32;3747:52;;;3795:1;3792;3785:12;3747:52;3834:9;3821:23;3853:31;3878:5;3853:31;:::i;:::-;3903:5;-1:-1:-1;3960:2:1;3945:18;;3932:32;3973:33;3932:32;3973:33;:::i;4043:356::-;4245:2;4227:21;;;4264:18;;;4257:30;4323:34;4318:2;4303:18;;4296:62;4390:2;4375:18;;4043:356::o;4404:127::-;4465:10;4460:3;4456:20;4453:1;4446:31;4496:4;4493:1;4486:15;4520:4;4517:1;4510:15;4536:128;4576:3;4607:1;4603:6;4600:1;4597:13;4594:39;;;4613:18;;:::i;:::-;-1:-1:-1;4649:9:1;;4536:128::o;5026:380::-;5105:1;5101:12;;;;5148;;;5169:61;;5223:4;5215:6;5211:17;5201:27;;5169:61;5276:2;5268:6;5265:14;5245:18;5242:38;5239:161;;;5322:10;5317:3;5313:20;5310:1;5303:31;5357:4;5354:1;5347:15;5385:4;5382:1;5375:15;5239:161;;5026:380;;;:::o;5411:422::-;5500:1;5543:5;5500:1;5557:270;5578:7;5568:8;5565:21;5557:270;;;5637:4;5633:1;5629:6;5625:17;5619:4;5616:27;5613:53;;;5646:18;;:::i;:::-;5696:7;5686:8;5682:22;5679:55;;;5716:16;;;;5679:55;5795:22;;;;5755:15;;;;5557:270;;;5561:3;5411:422;;;;;:::o;5838:806::-;5887:5;5917:8;5907:80;;-1:-1:-1;5958:1:1;5972:5;;5907:80;6006:4;5996:76;;-1:-1:-1;6043:1:1;6057:5;;5996:76;6088:4;6106:1;6101:59;;;;6174:1;6169:130;;;;6081:218;;6101:59;6131:1;6122:10;;6145:5;;;6169:130;6206:3;6196:8;6193:17;6190:43;;;6213:18;;:::i;:::-;-1:-1:-1;;6269:1:1;6255:16;;6284:5;;6081:218;;6383:2;6373:8;6370:16;6364:3;6358:4;6355:13;6351:36;6345:2;6335:8;6332:16;6327:2;6321:4;6318:12;6314:35;6311:77;6308:159;;;-1:-1:-1;6420:19:1;;;6452:5;;6308:159;6499:34;6524:8;6518:4;6499:34;:::i;:::-;6569:6;6565:1;6561:6;6557:19;6548:7;6545:32;6542:58;;;6580:18;;:::i;:::-;6618:20;;5838:806;-1:-1:-1;;;5838:806:1:o;6649:140::-;6707:5;6736:47;6777:4;6767:8;6763:19;6757:4;6736:47;:::i;6794:168::-;6834:7;6900:1;6896;6892:6;6888:14;6885:1;6882:21;6877:1;6870:9;6863:17;6859:45;6856:71;;;6907:18;;:::i;:::-;-1:-1:-1;6947:9:1;;6794:168::o;6967:217::-;7007:1;7033;7023:132;;7077:10;7072:3;7068:20;7065:1;7058:31;7112:4;7109:1;7102:15;7140:4;7137:1;7130:15;7023:132;-1:-1:-1;7169:9:1;;6967:217::o;10850:401::-;11052:2;11034:21;;;11091:2;11071:18;;;11064:30;11130:34;11125:2;11110:18;;11103:62;-1:-1:-1;;;11196:2:1;11181:18;;11174:35;11241:3;11226:19;;10850:401::o;11256:399::-;11458:2;11440:21;;;11497:2;11477:18;;;11470:30;11536:34;11531:2;11516:18;;11509:62;-1:-1:-1;;;11602:2:1;11587:18;;11580:33;11645:3;11630:19;;11256:399::o;13204:125::-;13244:4;13272:1;13269;13266:8;13263:34;;;13277:18;;:::i;:::-;-1:-1:-1;13314:9:1;;13204:125::o;14078:127::-;14139:10;14134:3;14130:20;14127:1;14120:31;14170:4;14167:1;14160:15;14194:4;14191:1;14184:15;14210:251;14280:6;14333:2;14321:9;14312:7;14308:23;14304:32;14301:52;;;14349:1;14346;14339:12;14301:52;14381:9;14375:16;14400:31;14425:5;14400:31;:::i;14466:980::-;14728:4;14776:3;14765:9;14761:19;14807:6;14796:9;14789:25;14833:2;14871:6;14866:2;14855:9;14851:18;14844:34;14914:3;14909:2;14898:9;14894:18;14887:31;14938:6;14973;14967:13;15004:6;14996;14989:22;15042:3;15031:9;15027:19;15020:26;;15081:2;15073:6;15069:15;15055:29;;15102:1;15112:195;15126:6;15123:1;15120:13;15112:195;;;15191:13;;-1:-1:-1;;;;;15187:39:1;15175:52;;15282:15;;;;15247:12;;;;15223:1;15141:9;15112:195;;;-1:-1:-1;;;;;;;15363:32:1;;;;15358:2;15343:18;;15336:60;-1:-1:-1;;;15427:3:1;15412:19;15405:35;15324:3;14466:980;-1:-1:-1;;;14466:980:1:o;16063:306::-;16151:6;16159;16167;16220:2;16208:9;16199:7;16195:23;16191:32;16188:52;;;16236:1;16233;16226:12;16188:52;16265:9;16259:16;16249:26;;16315:2;16304:9;16300:18;16294:25;16284:35;;16359:2;16348:9;16344:18;16338:25;16328:35;;16063:306;;;;;:::o

Swarm Source

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