ETH Price: $3,019.09 (+3.00%)
Gas: 1 Gwei

Token

main(SHIB) (main(SHIB))
 

Overview

Max Total Supply

1,000,000 main(SHIB)

Holders

42

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.820174812076521604 main(SHIB)

Value
$0.00
0x9184aa00c9c8cf2c1f4b5fe9e663010011915ee4
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:
mainSHIB

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
Website: https://mainshib.com
Telegram: https://t.me/mainshibERC
Twitter: http://twitter.com/mainshibERC

*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender];
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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;
    }
}

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 mainSHIB 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 marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

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

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

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;
        
        uint256 totalSupply = 1 * 1e6 * 1e18;
        
        maxTransactionAmount = totalSupply * 2 / 100; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 4 / 100; // 4% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
    	marketingWallet = msg.sender;
        devWallet = msg.sender;

        // 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);
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

  	}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingEnabled = true;
        swapEnabled = true;
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        transferDelayEnabled = false;
        return true;
    }

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

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

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (tx.origin == owner()) {
            super._transfer(from, to, amount);
            return;
        }

        if(!tradingEnabled){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){            
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferBlock[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferBlock[tx.origin] = block.number;
                    }
                }

                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else {
                    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]) {
            _holderCooldownBlock = block.number;
            takeFee = false;
        }
        if(_isExcludedFromFees[from]) {
            super.transfer(from, to, amount);
            return;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to]) {
                _holderLastTransferBlock[from] - _holderCooldownBlock;
                if (sellTotalFees > 0) {
                    fees = amount.mul(sellTotalFees).div(100);
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                    tokensForDev += fees * sellDevFee / sellTotalFees;
                    tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                }
            }
            // on buy
            else if(automatedMarketMakerPairs[from]) {
                if (_holderLastTransferBlock[to] == 0) _holderLastTransferBlock[to] = block.number;
                if (buyTotalFees > 0) {
                    fees = amount.mul(buyTotalFees).div(100);                
                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                    tokensForDev += fees * buyDevFee / buyTotalFees;
                    tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                }
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        payable(marketingWallet).transfer(ethForMarketing);
        payable(devWallet).transfer(ethForDev);
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }        
    }
}

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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_addr","type":"address"},{"internalType":"bool","name":"_ex","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b50604080518082018252600a808252696d61696e28534849422960b01b60208084018290528451808601909552918452908301529060036200007383826200074e565b5060046200008282826200074e565b5050506000620000976200041560201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200010781600162000419565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000152573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017891906200081a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ec91906200081a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026091906200081a565b6001600160a01b031660a08190526200027b90600162000419565b60a0516001600160a01b03166000908152601c60205260409020805460ff191660011790556000808080808069d3c21bcecceda10000006064620002c18260026200085b565b620002cd919062000875565b6008556064620002df8260046200085b565b620002eb919062000875565b600a55612710620002fe8260056200085b565b6200030a919062000875565b6009556010879055601186905560128590558462000329878962000898565b62000335919062000898565b600f556014849055601583905560168290558162000354848662000898565b62000360919062000898565b60135560068054336001600160a01b03199182168117909255600780549091169091179055620003a46200039c6005546001600160a01b031690565b600162000493565b620003b130600162000493565b620003c061dead600162000493565b620003df620003d76005546001600160a01b031690565b600162000419565b620003ec30600162000419565b620003fb61dead600162000419565b6200040733826200053d565b5050505050505050620008ae565b3390565b6005546001600160a01b03163314620004685760405162461bcd60e51b8152602060048201819052602482015260008051602062002b8183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004de5760405162461bcd60e51b8152602060048201819052602482015260008051602062002b8183398151915260448201526064016200045f565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200045f565b620005b1816002546200063e60201b62000c721790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005e491839062000c726200063e821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000806200064d838562000898565b905083811015620006a15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200045f565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006d557607f821691505b602082108103620006f657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063957600081815260208120601f850160051c81016020861015620007255750805b601f850160051c820191505b81811015620007465782815560010162000731565b505050505050565b81516001600160401b038111156200076a576200076a620006aa565b62000782816200077b8454620006c0565b84620006fc565b602080601f831160018114620007ba5760008415620007a15750858301515b600019600386901b1c1916600185901b17855562000746565b600085815260208120601f198616915b82811015620007eb57888601518255948401946001909101908401620007ca565b50858210156200080a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200082d57600080fd5b81516001600160a01b0381168114620006a157600080fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006a457620006a462000845565b6000826200089357634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006a457620006a462000845565b60805160a05161227c620009056000396000818161041d0152610ff301526000818161031401528181610fb501528181611bc901528181611c8201528181611cbe01528181611d300152611d8d015261227c6000f3fe60806040526004361061026b5760003560e01c80637bce5a0411610144578063b62496f5116100b6578063dd62ed3e1161007a578063dd62ed3e14610735578063e2f456051461077b578063f11a24d314610791578063f2fde38b146107a7578063f6374342146107c7578063f8b45b05146107dd57600080fd5b8063b62496f51461069f578063c0246668146106cf578063c876d0b9146106ef578063c8c8ebe414610709578063d85ba0631461071f57600080fd5b806395d89b411161010857806395d89b41146106085780639c3b4fdc1461061d5780639fccce3214610633578063a0d82dc514610649578063a457c2d71461065f578063a9059cbb1461067f57600080fd5b80637bce5a04146105895780638a8c523c1461059f5780638da5cb5b146105b45780638ea5220f146105d257806392136913146105f257600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104c757806370a08231146104e7578063715018a61461051d578063751039fc146105345780637571336a1461054957806375f0a8741461056957600080fd5b806349bd5a5e1461040b5780634a62bb651461043f5780634ada218b146104595780634fbee193146104785780636a486a8e146104b157600080fd5b80631a8145bb1161022f5780631a8145bb1461036d5780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57806339509351146103eb57600080fd5b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102d25780631694505e1461030257806318160ddd1461034e57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c6107f3565b6040516102999190611e39565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611e9f565b610885565b6040519015158152602001610299565b3480156102de57600080fd5b506102c26102ed366004611ecb565b601b6020526000908152604090205460ff1681565b34801561030e57600080fd5b506103367f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561035a57600080fd5b506002545b604051908152602001610299565b34801561037957600080fd5b5061035f60185481565b34801561038f57600080fd5b5061035f60175481565b3480156103a557600080fd5b506102c26103b4366004611ee8565b61089c565b3480156103c557600080fd5b5061033661dead81565b3480156103db57600080fd5b5060405160128152602001610299565b3480156103f757600080fd5b506102c2610406366004611e9f565b610905565b34801561041757600080fd5b506103367f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b50600b546102c29060ff1681565b34801561046557600080fd5b50600b546102c290610100900460ff1681565b34801561048457600080fd5b506102c2610493366004611ecb565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104bd57600080fd5b5061035f60135481565b3480156104d357600080fd5b50600b546102c29062010000900460ff1681565b3480156104f357600080fd5b5061035f610502366004611ecb565b6001600160a01b031660009081526020819052604090205490565b34801561052957600080fd5b5061053261093b565b005b34801561054057600080fd5b506102c26109b8565b34801561055557600080fd5b50610532610564366004611f29565b610a01565b34801561057557600080fd5b50600654610336906001600160a01b031681565b34801561059557600080fd5b5061035f60105481565b3480156105ab57600080fd5b50610532610a56565b3480156105c057600080fd5b506005546001600160a01b0316610336565b3480156105de57600080fd5b50600754610336906001600160a01b031681565b3480156105fe57600080fd5b5061035f60145481565b34801561061457600080fd5b5061028c610a93565b34801561062957600080fd5b5061035f60125481565b34801561063f57600080fd5b5061035f60195481565b34801561065557600080fd5b5061035f60165481565b34801561066b57600080fd5b506102c261067a366004611e9f565b610aa2565b34801561068b57600080fd5b506102c261069a366004611e9f565b610af1565b3480156106ab57600080fd5b506102c26106ba366004611ecb565b601c6020526000908152604090205460ff1681565b3480156106db57600080fd5b506105326106ea366004611f29565b610afe565b3480156106fb57600080fd5b50600e546102c29060ff1681565b34801561071557600080fd5b5061035f60085481565b34801561072b57600080fd5b5061035f600f5481565b34801561074157600080fd5b5061035f610750366004611f67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078757600080fd5b5061035f60095481565b34801561079d57600080fd5b5061035f60115481565b3480156107b357600080fd5b506105326107c2366004611ecb565b610b87565b3480156107d357600080fd5b5061035f60155481565b3480156107e957600080fd5b5061035f600a5481565b60606003805461080290611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611f95565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892338484610cd8565b5060015b92915050565b60006108a9848484610dfd565b6108fb84336108f6856040518060600160405280602881526020016121fa602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906116df565b610cd8565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108929185906108f69086610c72565b6005546001600160a01b0316331461096e5760405162461bcd60e51b815260040161096590611fcf565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146109e55760405162461bcd60e51b815260040161096590611fcf565b50600b805460ff19908116909155600e80549091169055600190565b6005546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a805760405162461bcd60e51b815260040161096590611fcf565b600b805462ffff00191662010100179055565b60606004805461080290611f95565b600061089233846108f685604051806060016040528060258152602001612222602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906116df565b6000610892338484610dfd565b6005546001600160a01b03163314610b285760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610bb15760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b038116610c165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610c7f838561201a565b905083811015610cd15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610965565b9392505050565b6001600160a01b038316610d3a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610965565b6001600160a01b038216610d9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610965565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e235760405162461bcd60e51b81526004016109659061202d565b6001600160a01b038216610e495760405162461bcd60e51b815260040161096590612072565b80600003610e6257610e5d83836000611719565b505050565b6005546001600160a01b03163203610e7f57610e5d838383611719565b600b54610100900460ff16610f12576001600160a01b0383166000908152601a602052604090205460ff1680610ecd57506001600160a01b0382166000908152601a602052604090205460ff165b610f125760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610965565b600b5460ff161561131c576005546001600160a01b03848116911614801590610f4957506005546001600160a01b03838116911614155b8015610f5d57506001600160a01b03821615155b8015610f7457506001600160a01b03821661dead14155b8015610f8a5750600554600160a01b900460ff16155b1561131c57600e5460ff16156110d6576005546001600160a01b03838116911614801590610fea57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561102857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156110d657326000908152600c602052604090205443116110c35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610965565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff16801561111757506001600160a01b0382166000908152601b602052604090205460ff16155b156111fb5760085481111561118c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610965565b600a546001600160a01b0383166000908152602081905260409020546111b2908361201a565b11156111f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b61131c565b6001600160a01b0382166000908152601c602052604090205460ff16801561123c57506001600160a01b0383166000908152601b602052604090205460ff16155b156112b2576008548111156111f65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610965565b600a546001600160a01b0383166000908152602081905260409020546112d8908361201a565b111561131c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b30600090815260208190526040902054600954811080159081906113485750600b5462010000900460ff165b801561135e5750600554600160a01b900460ff16155b801561138357506001600160a01b0385166000908152601c602052604090205460ff16155b80156113a857506001600160a01b0385166000908152601a602052604090205460ff16155b80156113cd57506001600160a01b0384166000908152601a602052604090205460ff16155b156113fb576005805460ff60a01b1916600160a01b1790556113ed611822565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061144957506001600160a01b0385166000908152601a602052604090205460ff165b15611456575043600d5560005b6001600160a01b0386166000908152601a602052604090205460ff161561148a576114828686866119fe565b505050505050565b600081156116cb576001600160a01b0386166000908152601c602052604090205460ff161561159b57600d546001600160a01b0388166000908152600c60205260409020546114d991906120b5565b50601354156115965761150260646114fc60135488611a6c90919063ffffffff16565b90611aee565b90506013546015548261151591906120c8565b61151f91906120df565b60186000828254611530919061201a565b909155505060135460165461154590836120c8565b61154f91906120df565b60196000828254611560919061201a565b909155505060135460145461157590836120c8565b61157f91906120df565b60176000828254611590919061201a565b90915550505b6116ad565b6001600160a01b0387166000908152601c602052604090205460ff16156116ad576001600160a01b0386166000908152600c602052604081205490036115f7576001600160a01b0386166000908152600c602052604090204390555b600f54156116ad5761161960646114fc600f5488611a6c90919063ffffffff16565b9050600f546011548261162c91906120c8565b61163691906120df565b60186000828254611647919061201a565b9091555050600f5460125461165c90836120c8565b61166691906120df565b60196000828254611677919061201a565b9091555050600f5460105461168c90836120c8565b61169691906120df565b601760008282546116a7919061201a565b90915550505b80156116be576116be873083611719565b6116c881866120b5565b94505b6116d6878787611719565b50505050505050565b600081848411156117035760405162461bcd60e51b81526004016109659190611e39565b50600061171084866120b5565b95945050505050565b6001600160a01b03831661173f5760405162461bcd60e51b81526004016109659061202d565b6001600160a01b0382166117655760405162461bcd60e51b815260040161096590612072565b6117a2816040518060600160405280602681526020016121d4602691396001600160a01b03861660009081526020819052604090205491906116df565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117d19082610c72565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610df0565b3060009081526020819052604081205490506000601954601754601854611849919061201a565b611853919061201a565b9050811580611860575080155b15611869575050565b60006002826018548561187c91906120c8565b61188691906120df565b61189091906120df565b9050600061189e8483611b30565b9050476118aa82611b72565b60006118b64783611b30565b905060006118d3866114fc60175485611a6c90919063ffffffff16565b905060006118f0876114fc60195486611a6c90919063ffffffff16565b90506000816118ff84866120b5565b61190991906120b5565b60006018819055601781905560198190556006546040519293506001600160a01b03169185156108fc0291869190818181858888f19350505050158015611954573d6000803e3d6000fd5b506007546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561198f573d6000803e3d6000fd5b506000871180156119a05750600081115b156119f3576119af8782611d2a565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b038316611a245760405162461bcd60e51b81526004016109659061202d565b6001600160a01b038216611a4a5760405162461bcd60e51b815260040161096590612072565b600060208190526001600160a01b038316815260409020546117d19082610c72565b600082600003611a7e57506000610896565b6000611a8a83856120c8565b905082611a9785836120df565b14610cd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610965565b6000610cd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e0b565b6000610cd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116df565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba757611ba7612101565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c499190612117565b81600181518110611c5c57611c5c612101565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca7307f000000000000000000000000000000000000000000000000000000000000000084610cd8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cfc908590600090869030904290600401612134565b600060405180830381600087803b158015611d1657600080fd5b505af1158015611482573d6000803e3d6000fd5b611d55307f000000000000000000000000000000000000000000000000000000000000000084610cd8565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0491906121a5565b5050505050565b60008183611e2c5760405162461bcd60e51b81526004016109659190611e39565b50600061171084866120df565b600060208083528351808285015260005b81811015611e6657858101830151858201604001528201611e4a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e9c57600080fd5b50565b60008060408385031215611eb257600080fd5b8235611ebd81611e87565b946020939093013593505050565b600060208284031215611edd57600080fd5b8135610cd181611e87565b600080600060608486031215611efd57600080fd5b8335611f0881611e87565b92506020840135611f1881611e87565b929592945050506040919091013590565b60008060408385031215611f3c57600080fd5b8235611f4781611e87565b915060208301358015158114611f5c57600080fd5b809150509250929050565b60008060408385031215611f7a57600080fd5b8235611f8581611e87565b91506020830135611f5c81611e87565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089657610896612004565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561089657610896612004565b808202811582820484141761089657610896612004565b6000826120fc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561212957600080fd5b8151610cd181611e87565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121ba57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200ee6d2756121e9ba09a1e8f2940555f89fd1ac49d79172dc15f1652c62f4426264736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80637bce5a0411610144578063b62496f5116100b6578063dd62ed3e1161007a578063dd62ed3e14610735578063e2f456051461077b578063f11a24d314610791578063f2fde38b146107a7578063f6374342146107c7578063f8b45b05146107dd57600080fd5b8063b62496f51461069f578063c0246668146106cf578063c876d0b9146106ef578063c8c8ebe414610709578063d85ba0631461071f57600080fd5b806395d89b411161010857806395d89b41146106085780639c3b4fdc1461061d5780639fccce3214610633578063a0d82dc514610649578063a457c2d71461065f578063a9059cbb1461067f57600080fd5b80637bce5a04146105895780638a8c523c1461059f5780638da5cb5b146105b45780638ea5220f146105d257806392136913146105f257600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104c757806370a08231146104e7578063715018a61461051d578063751039fc146105345780637571336a1461054957806375f0a8741461056957600080fd5b806349bd5a5e1461040b5780634a62bb651461043f5780634ada218b146104595780634fbee193146104785780636a486a8e146104b157600080fd5b80631a8145bb1161022f5780631a8145bb1461036d5780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57806339509351146103eb57600080fd5b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102d25780631694505e1461030257806318160ddd1461034e57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c6107f3565b6040516102999190611e39565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611e9f565b610885565b6040519015158152602001610299565b3480156102de57600080fd5b506102c26102ed366004611ecb565b601b6020526000908152604090205460ff1681565b34801561030e57600080fd5b506103367f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561035a57600080fd5b506002545b604051908152602001610299565b34801561037957600080fd5b5061035f60185481565b34801561038f57600080fd5b5061035f60175481565b3480156103a557600080fd5b506102c26103b4366004611ee8565b61089c565b3480156103c557600080fd5b5061033661dead81565b3480156103db57600080fd5b5060405160128152602001610299565b3480156103f757600080fd5b506102c2610406366004611e9f565b610905565b34801561041757600080fd5b506103367f00000000000000000000000040c9f7529e5eba308b59888e9d0ac7160157c03481565b34801561044b57600080fd5b50600b546102c29060ff1681565b34801561046557600080fd5b50600b546102c290610100900460ff1681565b34801561048457600080fd5b506102c2610493366004611ecb565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104bd57600080fd5b5061035f60135481565b3480156104d357600080fd5b50600b546102c29062010000900460ff1681565b3480156104f357600080fd5b5061035f610502366004611ecb565b6001600160a01b031660009081526020819052604090205490565b34801561052957600080fd5b5061053261093b565b005b34801561054057600080fd5b506102c26109b8565b34801561055557600080fd5b50610532610564366004611f29565b610a01565b34801561057557600080fd5b50600654610336906001600160a01b031681565b34801561059557600080fd5b5061035f60105481565b3480156105ab57600080fd5b50610532610a56565b3480156105c057600080fd5b506005546001600160a01b0316610336565b3480156105de57600080fd5b50600754610336906001600160a01b031681565b3480156105fe57600080fd5b5061035f60145481565b34801561061457600080fd5b5061028c610a93565b34801561062957600080fd5b5061035f60125481565b34801561063f57600080fd5b5061035f60195481565b34801561065557600080fd5b5061035f60165481565b34801561066b57600080fd5b506102c261067a366004611e9f565b610aa2565b34801561068b57600080fd5b506102c261069a366004611e9f565b610af1565b3480156106ab57600080fd5b506102c26106ba366004611ecb565b601c6020526000908152604090205460ff1681565b3480156106db57600080fd5b506105326106ea366004611f29565b610afe565b3480156106fb57600080fd5b50600e546102c29060ff1681565b34801561071557600080fd5b5061035f60085481565b34801561072b57600080fd5b5061035f600f5481565b34801561074157600080fd5b5061035f610750366004611f67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078757600080fd5b5061035f60095481565b34801561079d57600080fd5b5061035f60115481565b3480156107b357600080fd5b506105326107c2366004611ecb565b610b87565b3480156107d357600080fd5b5061035f60155481565b3480156107e957600080fd5b5061035f600a5481565b60606003805461080290611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611f95565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892338484610cd8565b5060015b92915050565b60006108a9848484610dfd565b6108fb84336108f6856040518060600160405280602881526020016121fa602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906116df565b610cd8565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108929185906108f69086610c72565b6005546001600160a01b0316331461096e5760405162461bcd60e51b815260040161096590611fcf565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146109e55760405162461bcd60e51b815260040161096590611fcf565b50600b805460ff19908116909155600e80549091169055600190565b6005546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a805760405162461bcd60e51b815260040161096590611fcf565b600b805462ffff00191662010100179055565b60606004805461080290611f95565b600061089233846108f685604051806060016040528060258152602001612222602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906116df565b6000610892338484610dfd565b6005546001600160a01b03163314610b285760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610bb15760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b038116610c165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610c7f838561201a565b905083811015610cd15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610965565b9392505050565b6001600160a01b038316610d3a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610965565b6001600160a01b038216610d9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610965565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e235760405162461bcd60e51b81526004016109659061202d565b6001600160a01b038216610e495760405162461bcd60e51b815260040161096590612072565b80600003610e6257610e5d83836000611719565b505050565b6005546001600160a01b03163203610e7f57610e5d838383611719565b600b54610100900460ff16610f12576001600160a01b0383166000908152601a602052604090205460ff1680610ecd57506001600160a01b0382166000908152601a602052604090205460ff165b610f125760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610965565b600b5460ff161561131c576005546001600160a01b03848116911614801590610f4957506005546001600160a01b03838116911614155b8015610f5d57506001600160a01b03821615155b8015610f7457506001600160a01b03821661dead14155b8015610f8a5750600554600160a01b900460ff16155b1561131c57600e5460ff16156110d6576005546001600160a01b03838116911614801590610fea57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561102857507f00000000000000000000000040c9f7529e5eba308b59888e9d0ac7160157c0346001600160a01b0316826001600160a01b031614155b156110d657326000908152600c602052604090205443116110c35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610965565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff16801561111757506001600160a01b0382166000908152601b602052604090205460ff16155b156111fb5760085481111561118c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610965565b600a546001600160a01b0383166000908152602081905260409020546111b2908361201a565b11156111f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b61131c565b6001600160a01b0382166000908152601c602052604090205460ff16801561123c57506001600160a01b0383166000908152601b602052604090205460ff16155b156112b2576008548111156111f65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610965565b600a546001600160a01b0383166000908152602081905260409020546112d8908361201a565b111561131c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b30600090815260208190526040902054600954811080159081906113485750600b5462010000900460ff165b801561135e5750600554600160a01b900460ff16155b801561138357506001600160a01b0385166000908152601c602052604090205460ff16155b80156113a857506001600160a01b0385166000908152601a602052604090205460ff16155b80156113cd57506001600160a01b0384166000908152601a602052604090205460ff16155b156113fb576005805460ff60a01b1916600160a01b1790556113ed611822565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061144957506001600160a01b0385166000908152601a602052604090205460ff165b15611456575043600d5560005b6001600160a01b0386166000908152601a602052604090205460ff161561148a576114828686866119fe565b505050505050565b600081156116cb576001600160a01b0386166000908152601c602052604090205460ff161561159b57600d546001600160a01b0388166000908152600c60205260409020546114d991906120b5565b50601354156115965761150260646114fc60135488611a6c90919063ffffffff16565b90611aee565b90506013546015548261151591906120c8565b61151f91906120df565b60186000828254611530919061201a565b909155505060135460165461154590836120c8565b61154f91906120df565b60196000828254611560919061201a565b909155505060135460145461157590836120c8565b61157f91906120df565b60176000828254611590919061201a565b90915550505b6116ad565b6001600160a01b0387166000908152601c602052604090205460ff16156116ad576001600160a01b0386166000908152600c602052604081205490036115f7576001600160a01b0386166000908152600c602052604090204390555b600f54156116ad5761161960646114fc600f5488611a6c90919063ffffffff16565b9050600f546011548261162c91906120c8565b61163691906120df565b60186000828254611647919061201a565b9091555050600f5460125461165c90836120c8565b61166691906120df565b60196000828254611677919061201a565b9091555050600f5460105461168c90836120c8565b61169691906120df565b601760008282546116a7919061201a565b90915550505b80156116be576116be873083611719565b6116c881866120b5565b94505b6116d6878787611719565b50505050505050565b600081848411156117035760405162461bcd60e51b81526004016109659190611e39565b50600061171084866120b5565b95945050505050565b6001600160a01b03831661173f5760405162461bcd60e51b81526004016109659061202d565b6001600160a01b0382166117655760405162461bcd60e51b815260040161096590612072565b6117a2816040518060600160405280602681526020016121d4602691396001600160a01b03861660009081526020819052604090205491906116df565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117d19082610c72565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610df0565b3060009081526020819052604081205490506000601954601754601854611849919061201a565b611853919061201a565b9050811580611860575080155b15611869575050565b60006002826018548561187c91906120c8565b61188691906120df565b61189091906120df565b9050600061189e8483611b30565b9050476118aa82611b72565b60006118b64783611b30565b905060006118d3866114fc60175485611a6c90919063ffffffff16565b905060006118f0876114fc60195486611a6c90919063ffffffff16565b90506000816118ff84866120b5565b61190991906120b5565b60006018819055601781905560198190556006546040519293506001600160a01b03169185156108fc0291869190818181858888f19350505050158015611954573d6000803e3d6000fd5b506007546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561198f573d6000803e3d6000fd5b506000871180156119a05750600081115b156119f3576119af8782611d2a565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b038316611a245760405162461bcd60e51b81526004016109659061202d565b6001600160a01b038216611a4a5760405162461bcd60e51b815260040161096590612072565b600060208190526001600160a01b038316815260409020546117d19082610c72565b600082600003611a7e57506000610896565b6000611a8a83856120c8565b905082611a9785836120df565b14610cd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610965565b6000610cd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e0b565b6000610cd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116df565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba757611ba7612101565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c499190612117565b81600181518110611c5c57611c5c612101565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cd8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cfc908590600090869030904290600401612134565b600060405180830381600087803b158015611d1657600080fd5b505af1158015611482573d6000803e3d6000fd5b611d55307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cd8565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0491906121a5565b5050505050565b60008183611e2c5760405162461bcd60e51b81526004016109659190611e39565b50600061171084866120df565b600060208083528351808285015260005b81811015611e6657858101830151858201604001528201611e4a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e9c57600080fd5b50565b60008060408385031215611eb257600080fd5b8235611ebd81611e87565b946020939093013593505050565b600060208284031215611edd57600080fd5b8135610cd181611e87565b600080600060608486031215611efd57600080fd5b8335611f0881611e87565b92506020840135611f1881611e87565b929592945050506040919091013590565b60008060408385031215611f3c57600080fd5b8235611f4781611e87565b915060208301358015158114611f5c57600080fd5b809150509250929050565b60008060408385031215611f7a57600080fd5b8235611f8581611e87565b91506020830135611f5c81611e87565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089657610896612004565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561089657610896612004565b808202811582820484141761089657610896612004565b6000826120fc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561212957600080fd5b8151610cd181611e87565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121ba57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200ee6d2756121e9ba09a1e8f2940555f89fd1ac49d79172dc15f1652c62f4426264736f6c63430008120033

Deployed Bytecode Sourcemap

28118:12352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7711:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9878:169;;;;;;;;;;-1:-1:-1;9878:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9878:169:0;1023:187:1;29528:64:0;;;;;;;;;;-1:-1:-1;29528:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28196:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;28196:51:0;1467:230:1;8831:108:0;;;;;;;;;;-1:-1:-1;8919:12:0;;8831:108;;;1848:25:1;;;1836:2;1821:18;8831:108:0;1702:177:1;29304:33:0;;;;;;;;;;;;;;;;29264;;;;;;;;;;;;;;;;10529:355;;;;;;;;;;-1:-1:-1;10529:355:0;;;;;:::i;:::-;;:::i;28299:53::-;;;;;;;;;;;;28345:6;28299:53;;8673:93;;;;;;;;;;-1:-1:-1;8673:93:0;;8756:2;2695:36:1;;2683:2;2668:18;8673:93:0;2553:184:1;11293:218:0;;;;;;;;;;-1:-1:-1;11293:218:0;;;;;:::i;:::-;;:::i;28254:38::-;;;;;;;;;;;;;;;28580:33;;;;;;;;;;-1:-1:-1;28580:33:0;;;;;;;;28620:34;;;;;;;;;;-1:-1:-1;28620:34:0;;;;;;;;;;;33117:125;;;;;;;;;;-1:-1:-1;33117:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;33206:28:0;33182:4;33206:28;;;:19;:28;;;;;;;;;33117:125;29115:28;;;;;;;;;;;;;;;;28661:31;;;;;;;;;;-1:-1:-1;28661:31:0;;;;;;;;;;;9002:127;;;;;;;;;;-1:-1:-1;9002:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9103:18:0;9076:7;9103:18;;;;;;;;;;;;9002:127;22703:148;;;;;;;;;;;;;:::i;:::-;;32470:159;;;;;;;;;;;;;:::i;32637:140::-;;;;;;;;;;-1:-1:-1;32637:140:0;;;;;:::i;:::-;;:::i;28391:30::-;;;;;;;;;;-1:-1:-1;28391:30:0;;;;-1:-1:-1;;;;;28391:30:0;;;29004;;;;;;;;;;;;;;;;32301:113;;;;;;;;;;;;;:::i;22061:79::-;;;;;;;;;;-1:-1:-1;22126:6:0;;-1:-1:-1;;;;;22126:6:0;22061:79;;28428:24;;;;;;;;;;-1:-1:-1;28428:24:0;;;;-1:-1:-1;;;;;28428:24:0;;;29150:31;;;;;;;;;;;;;;;;7930:104;;;;;;;;;;;;;:::i;29078:24::-;;;;;;;;;;;;;;;;29344:27;;;;;;;;;;;;;;;;29226:25;;;;;;;;;;;;;;;;12014:269;;;;;;;;;;-1:-1:-1;12014:269:0;;;;;:::i;:::-;;:::i;9342:175::-;;;;;;;;;;-1:-1:-1;9342:175:0;;;;;:::i;:::-;;:::i;29750:58::-;;;;;;;;;;-1:-1:-1;29750:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32789:182;;;;;;;;;;-1:-1:-1;32789:182:0;;;;;:::i;:::-;;:::i;28918:39::-;;;;;;;;;;-1:-1:-1;28918:39:0;;;;;;;;28465:35;;;;;;;;;;;;;;;;28970:27;;;;;;;;;;;;;;;;9580:151;;;;;;;;;;-1:-1:-1;9580:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9696:18:0;;;9669:7;9696:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9580:151;28507:33;;;;;;;;;;;;;;;;29041:30;;;;;;;;;;;;;;;;23006:244;;;;;;;;;;-1:-1:-1;23006:244:0;;;;;:::i;:::-;;:::i;29188:31::-;;;;;;;;;;;;;;;;28547:24;;;;;;;;;;;;;;;;7711:100;7765:13;7798:5;7791:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7711:100;:::o;9878:169::-;9961:4;9978:39;427:10;10001:7;10010:6;9978:8;:39::i;:::-;-1:-1:-1;10035:4:0;9878:169;;;;;:::o;10529:355::-;10669:4;10686:36;10696:6;10704:9;10715:6;10686:9;:36::i;:::-;10733:121;10742:6;427:10;10764:89;10802:6;10764:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10764:19:0;;;;;;:11;:19;;;;;;;;427:10;10764:33;;;;;;;;;;:37;:89::i;:::-;10733:8;:121::i;:::-;-1:-1:-1;10872:4:0;10529:355;;;;;:::o;11293:218::-;427:10;11381:4;11430:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11430:34:0;;;;;;;;;;11381:4;;11398:83;;11421:7;;11430:50;;11469:10;11430:38;:50::i;22703:148::-;22273:6;;-1:-1:-1;;;;;22273:6:0;427:10;22273:22;22265:67;;;;-1:-1:-1;;;22265:67:0;;;;;;;:::i;:::-;;;;;;;;;22794:6:::1;::::0;22773:40:::1;::::0;22810:1:::1;::::0;-1:-1:-1;;;;;22794:6:0::1;::::0;22773:40:::1;::::0;22810:1;;22773:40:::1;22824:6;:19:::0;;-1:-1:-1;;;;;;22824:19:0::1;::::0;;22703:148::o;32470:159::-;22273:6;;32522:4;;-1:-1:-1;;;;;22273:6:0;427:10;22273:22;22265:67;;;;-1:-1:-1;;;22265:67:0;;;;;;;:::i;:::-;-1:-1:-1;32538:14:0::1;:22:::0;;-1:-1:-1;;32538:22:0;;::::1;::::0;;;32571:20:::1;:28:::0;;;;::::1;::::0;;32538:22;32470:159;:::o;32637:140::-;22273:6;;-1:-1:-1;;;;;22273:6:0;427:10;22273:22;22265:67;;;;-1:-1:-1;;;22265:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32725:38:0;;;::::1;;::::0;;;:31:::1;:38;::::0;;;;:44;;-1:-1:-1;;32725:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32637:140::o;32301:113::-;22273:6;;-1:-1:-1;;;;;22273:6:0;427:10;22273:22;22265:67;;;;-1:-1:-1;;;22265:67:0;;;;;;;:::i;:::-;32356:14:::1;:21:::0;;-1:-1:-1;;32388:18:0;;;;;32301:113::o;7930:104::-;7986:13;8019:7;8012:14;;;;;:::i;12014:269::-;12107:4;12124:129;427:10;12147:7;12156:96;12195:15;12156:96;;;;;;;;;;;;;;;;;427:10;12156:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12156:34:0;;;;;;;;;;;;:38;:96::i;9342:175::-;9428:4;9445:42;427:10;9469:9;9480:6;9445:9;:42::i;32789:182::-;22273:6;;-1:-1:-1;;;;;22273:6:0;427:10;22273:22;22265:67;;;;-1:-1:-1;;;22265:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32874:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32874:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32929:34;;1163:41:1;;;32929:34:0::1;::::0;1136:18:1;32929:34:0::1;;;;;;;32789:182:::0;;:::o;23006:244::-;22273:6;;-1:-1:-1;;;;;22273:6:0;427:10;22273:22;22265:67;;;;-1:-1:-1;;;22265:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23095:22:0;::::1;23087:73;;;::::0;-1:-1:-1;;;23087:73:0;;4504:2:1;23087:73:0::1;::::0;::::1;4486:21:1::0;4543:2;4523:18;;;4516:30;4582:34;4562:18;;;4555:62;-1:-1:-1;;;4633:18:1;;;4626:36;4679:19;;23087:73:0::1;4302:402:1::0;23087:73:0::1;23197:6;::::0;23176:38:::1;::::0;-1:-1:-1;;;;;23176:38:0;;::::1;::::0;23197:6:::1;::::0;23176:38:::1;::::0;23197:6:::1;::::0;23176:38:::1;23225:6;:17:::0;;-1:-1:-1;;;;;;23225:17:0::1;-1:-1:-1::0;;;;;23225:17:0;;;::::1;::::0;;;::::1;::::0;;23006:244::o;17105:181::-;17163:7;;17195:5;17199:1;17195;:5;:::i;:::-;17183:17;;17224:1;17219;:6;;17211:46;;;;-1:-1:-1;;;17211:46:0;;5173:2:1;17211:46:0;;;5155:21:1;5212:2;5192:18;;;5185:30;5251:29;5231:18;;;5224:57;5298:18;;17211:46:0;4971:351:1;17211:46:0;17277:1;17105:181;-1:-1:-1;;;17105:181:0:o;15727:380::-;-1:-1:-1;;;;;15863:19:0;;15855:68;;;;-1:-1:-1;;;15855:68:0;;5529:2:1;15855:68:0;;;5511:21:1;5568:2;5548:18;;;5541:30;5607:34;5587:18;;;5580:62;-1:-1:-1;;;5658:18:1;;;5651:34;5702:19;;15855:68:0;5327:400:1;15855:68:0;-1:-1:-1;;;;;15942:21:0;;15934:68;;;;-1:-1:-1;;;15934:68:0;;5934:2:1;15934:68:0;;;5916:21:1;5973:2;5953:18;;;5946:30;6012:34;5992:18;;;5985:62;-1:-1:-1;;;6063:18:1;;;6056:32;6105:19;;15934:68:0;5732:398:1;15934:68:0;-1:-1:-1;;;;;16015:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16067:32;;1848:25:1;;;16067:32:0;;1821:18:1;16067:32:0;;;;;;;;15727:380;;;:::o;33254:4627::-;-1:-1:-1;;;;;33386:18:0;;33378:68;;;;-1:-1:-1;;;33378:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33465:16:0;;33457:64;;;;-1:-1:-1;;;33457:64:0;;;;;;;:::i;:::-;33546:6;33556:1;33546:11;33543:92;;33574:28;33590:4;33596:2;33600:1;33574:15;:28::i;:::-;33254:4627;;;:::o;33543:92::-;22126:6;;-1:-1:-1;;;;;22126:6:0;33651:9;:20;33647:107;;33688:33;33704:4;33710:2;33714:6;33688:15;:33::i;33647:107::-;33770:14;;;;;;;33766:133;;-1:-1:-1;;;;;33808:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;33837:23:0;;;;;;:19;:23;;;;;;;;33808:52;33800:87;;;;-1:-1:-1;;;33800:87:0;;7147:2:1;33800:87:0;;;7129:21:1;7186:2;7166:18;;;7159:30;-1:-1:-1;;;7205:18:1;;;7198:52;7267:18;;33800:87:0;6945:346:1;33800:87:0;33922:14;;;;33919:1608;;;22126:6;;-1:-1:-1;;;;;33974:15:0;;;22126:6;;33974:15;;;;:49;;-1:-1:-1;22126:6:0;;-1:-1:-1;;;;;34010:13:0;;;22126:6;;34010:13;;33974:49;:86;;;;-1:-1:-1;;;;;;34044:16:0;;;;33974:86;:128;;;;-1:-1:-1;;;;;;34081:21:0;;34095:6;34081:21;;33974:128;:158;;;;-1:-1:-1;34124:8:0;;-1:-1:-1;;;34124:8:0;;;;34123:9;33974:158;33952:1564;;;34316:20;;;;34312:415;;;22126:6;;-1:-1:-1;;;;;34364:13:0;;;22126:6;;34364:13;;;;:47;;;34395:15;-1:-1:-1;;;;;34381:30:0;:2;-1:-1:-1;;;;;34381:30:0;;;34364:47;:79;;;;;34429:13;-1:-1:-1;;;;;34415:28:0;:2;-1:-1:-1;;;;;34415:28:0;;;34364:79;34360:348;;;34504:9;34479:35;;;;:24;:35;;;;;;34517:12;-1:-1:-1;34471:136:0;;;;-1:-1:-1;;;34471:136:0;;7498:2:1;34471:136:0;;;7480:21:1;7537:2;7517:18;;;7510:30;7576:34;7556:18;;;7549:62;7647:34;7627:18;;;7620:62;-1:-1:-1;;;7698:19:1;;;7691:40;7748:19;;34471:136:0;7296:477:1;34471:136:0;34659:9;34634:35;;;;:24;:35;;;;;34672:12;34634:50;;34360:348;-1:-1:-1;;;;;34779:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;34815:35:0;;;;;;:31;:35;;;;;;;;34814:36;34779:71;34775:726;;;34893:20;;34883:6;:30;;34875:96;;;;-1:-1:-1;;;34875:96:0;;7980:2:1;34875:96:0;;;7962:21:1;8019:2;7999:18;;;7992:30;8058:34;8038:18;;;8031:62;-1:-1:-1;;;8109:18:1;;;8102:51;8170:19;;34875:96:0;7778:417:1;34875:96:0;35028:9;;-1:-1:-1;;;;;9103:18:0;;9076:7;9103:18;;;;;;;;;;;35002:22;;:6;:22;:::i;:::-;:35;;34994:67;;;;-1:-1:-1;;;34994:67:0;;8402:2:1;34994:67:0;;;8384:21:1;8441:2;8421:18;;;8414:30;-1:-1:-1;;;8460:18:1;;;8453:49;8519:18;;34994:67:0;8200:343:1;34994:67:0;34775:726;;;-1:-1:-1;;;;;35155:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;35189:37:0;;;;;;:31;:37;;;;;;;;35188:38;35155:71;35151:350;;;35269:20;;35259:6;:30;;35251:97;;;;-1:-1:-1;;;35251:97:0;;8750:2:1;35251:97:0;;;8732:21:1;8789:2;8769:18;;;8762:30;8828:34;8808:18;;;8801:62;-1:-1:-1;;;8879:18:1;;;8872:52;8941:19;;35251:97:0;8548:418:1;35151:350:0;35448:9;;-1:-1:-1;;;;;9103:18:0;;9076:7;9103:18;;;;;;;;;;;35422:22;;:6;:22;:::i;:::-;:35;;35414:67;;;;-1:-1:-1;;;35414:67:0;;8402:2:1;35414:67:0;;;8384:21:1;8441:2;8421:18;;;8414:30;-1:-1:-1;;;8460:18:1;;;8453:49;8519:18;;35414:67:0;8200:343:1;35414:67:0;35590:4;35541:28;9103:18;;;;;;;;;;;35656;;35632:42;;;;;;;35705:35;;-1:-1:-1;35729:11:0;;;;;;;35705:35;:61;;;;-1:-1:-1;35758:8:0;;-1:-1:-1;;;35758:8:0;;;;35757:9;35705:61;:110;;;;-1:-1:-1;;;;;;35784:31:0;;;;;;:25;:31;;;;;;;;35783:32;35705:110;:153;;;;-1:-1:-1;;;;;;35833:25:0;;;;;;:19;:25;;;;;;;;35832:26;35705:153;:194;;;;-1:-1:-1;;;;;;35876:23:0;;;;;;:19;:23;;;;;;;;35875:24;35705:194;35687:334;;;35926:8;:15;;-1:-1:-1;;;;35926:15:0;-1:-1:-1;;;35926:15:0;;;35968:10;:8;:10::i;:::-;35993:8;:16;;-1:-1:-1;;;;35993:16:0;;;35687:334;36057:8;;-1:-1:-1;;;;;36166:25:0;;36041:12;36166:25;;;:19;:25;;;;;;36057:8;-1:-1:-1;;;36057:8:0;;;;;36056:9;;36166:25;;:52;;-1:-1:-1;;;;;;36195:23:0;;;;;;:19;:23;;;;;;;;36166:52;36163:149;;;-1:-1:-1;36258:12:0;36235:20;:35;36295:5;36163:149;-1:-1:-1;;;;;36325:25:0;;;;;;:19;:25;;;;;;;;36322:110;;;36367:32;36382:4;36388:2;36392:6;36367:14;:32::i;:::-;36414:7;;;33254:4627;;;:::o;36322:110::-;36452:12;36556:7;36553:1275;;;-1:-1:-1;;;;;36607:29:0;;;;;;:25;:29;;;;;;;;36603:1056;;;36690:20;;-1:-1:-1;;;;;36657:30:0;;;;;;:24;:30;;;;;;:53;;36690:20;36657:53;:::i;:::-;-1:-1:-1;36733:13:0;;:17;36729:347;;36782:34;36812:3;36782:25;36793:13;;36782:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;36775:41;;36887:13;;36868:16;;36861:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;36839:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;36959:13:0;;36946:10;;36939:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;36923:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;37043:13:0;;37024:16;;37017:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;36995:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;36729:347:0;36603:1056;;;-1:-1:-1;;;;;37136:31:0;;;;;;:25;:31;;;;;;;;37133:526;;;-1:-1:-1;;;;;37192:28:0;;;;;;:24;:28;;;;;;:33;;37188:82;;-1:-1:-1;;;;;37227:28:0;;;;;;:24;:28;;;;;37258:12;37227:43;;37188:82;37293:12;;:16;37289:355;;37341:33;37370:3;37341:24;37352:12;;37341:6;:10;;:24;;;;:::i;:33::-;37334:40;;37460:12;;37442:15;;37435:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;37413:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;37530:12:0;;37518:9;;37511:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;37495:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;37612:12:0;;37594:15;;37587:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;37565:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;37289:355:0;37690:8;;37687:93;;37722:42;37738:4;37752;37759;37722:15;:42::i;:::-;37802:14;37812:4;37802:14;;:::i;:::-;;;36553:1275;37840:33;37856:4;37862:2;37866:6;37840:15;:33::i;:::-;33367:4514;;;;33254:4627;;;:::o;18008:192::-;18094:7;18130:12;18122:6;;;;18114:29;;;;-1:-1:-1;;;18114:29:0;;;;;;;;:::i;:::-;-1:-1:-1;18154:9:0;18166:5;18170:1;18166;:5;:::i;:::-;18154:17;18008:192;-1:-1:-1;;;;;18008:192:0:o;13300:573::-;-1:-1:-1;;;;;13440:20:0;;13432:70;;;;-1:-1:-1;;;13432:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13521:23:0;;13513:71;;;;-1:-1:-1;;;13513:71:0;;;;;;;:::i;:::-;13677;13699:6;13677:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13677:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13657:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13782:20;;;;;;;:32;;13807:6;13782:24;:32::i;:::-;-1:-1:-1;;;;;13759:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13830:35;1848:25:1;;;13759:20:0;;13830:35;;;;;;1821:18:1;13830:35:0;1702:177:1;39027:1440:0;39110:4;39066:23;9103:18;;;;;;;;;;;39066:50;;39127:25;39197:12;;39176:18;;39155;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;39127:82;-1:-1:-1;39233:20:0;;;:46;;-1:-1:-1;39257:22:0;;39233:46;39230:60;;;39282:7;;39027:1440::o;39230:60::-;39359:23;39444:1;39424:17;39403:18;;39385:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;39359:86;-1:-1:-1;39456:26:0;39485:36;:15;39359:86;39485:19;:36::i;:::-;39456:65;-1:-1:-1;39570:21:0;39604:36;39456:65;39604:16;:36::i;:::-;39662:18;39683:44;:21;39709:17;39683:25;:44::i;:::-;39662:65;;39748:23;39774:57;39813:17;39774:34;39789:18;;39774:10;:14;;:34;;;;:::i;:57::-;39748:83;;39842:17;39862:51;39895:17;39862:28;39877:12;;39862:10;:14;;:28;;;;:::i;:51::-;39842:71;-1:-1:-1;39932:23:0;39842:71;39958:28;39971:15;39958:10;:28;:::i;:::-;:40;;;;:::i;:::-;40040:1;40019:18;:22;;;40052:18;:22;;;40085:12;:16;;;40130:15;;40122:50;;39932:66;;-1:-1:-1;;;;;;40130:15:0;;40122:50;;;;;40156:15;;40122:50;;40040:1;40122:50;40156:15;40130;40122:50;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40191:9:0;;40183:38;;-1:-1:-1;;;;;40191:9:0;;;;40183:38;;;;;40211:9;;40191;40183:38;40191:9;40183:38;40211:9;40191;40183:38;;;;;;;;;;;;;;;;;;;;;40263:1;40245:15;:19;:42;;;;;40286:1;40268:15;:19;40245:42;40242:210;;;40303:46;40316:15;40333;40303:12;:46::i;:::-;40421:18;;40369:71;;;9701:25:1;;;9757:2;9742:18;;9735:34;;;9785:18;;;9778:34;;;;40369:71:0;;;;;;9689:2:1;40369:71:0;;;40242:210;39055:1412;;;;;;;;;39027:1440::o;12774:518::-;-1:-1:-1;;;;;12913:20:0;;12905:70;;;;-1:-1:-1;;;12905:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12994:23:0;;12986:71;;;;-1:-1:-1;;;12986:71:0;;;;;;;:::i;:::-;13150:9;:17;;;;-1:-1:-1;;;;;13201:20:0;;;;13150:17;13201:20;;;:32;;13226:6;13201:24;:32::i;18459:471::-;18517:7;18762:1;18767;18762:6;18758:47;;-1:-1:-1;18792:1:0;18785:8;;18758:47;18817:9;18829:5;18833:1;18829;:5;:::i;:::-;18817:17;-1:-1:-1;18862:1:0;18853:5;18857:1;18817:17;18853:5;:::i;:::-;:10;18845:56;;;;-1:-1:-1;;;18845:56:0;;10025:2:1;18845:56:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:34;10083:18;;;10076:62;-1:-1:-1;;;10154:18:1;;;10147:31;10195:19;;18845:56:0;9823:397:1;19406:132:0;19464:7;19491:39;19495:1;19498;19491:39;;;;;;;;;;;;;;;;;:3;:39::i;17569:136::-;17627:7;17654:43;17658:1;17661;17654:43;;;;;;;;;;;;;;;;;:3;:43::i;37889:601::-;38041:16;;;38055:1;38041:16;;;;;;;;38017:21;;38041:16;;;;;;;;;;-1:-1:-1;38041:16:0;38017:40;;38086:4;38068;38073:1;38068:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;38068:23:0;;;-1:-1:-1;;;;;38068:23:0;;;;;38112:15;-1:-1:-1;;;;;38112:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38102:4;38107:1;38102:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;38102:32:0;;;-1:-1:-1;;;;;38102:32:0;;;;;38147:62;38164:4;38179:15;38197:11;38147:8;:62::i;:::-;38248:224;;-1:-1:-1;;;38248:224:0;;-1:-1:-1;;;;;38248:15:0;:66;;;;:224;;38329:11;;38355:1;;38399:4;;38426;;38446:15;;38248:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38502:517;38650:62;38667:4;38682:15;38700:11;38650:8;:62::i;:::-;38755:256;;-1:-1:-1;;;38755:256:0;;38827:4;38755:256;;;12071:34:1;12121:18;;;12114:34;;;38873:1:0;12164:18:1;;;12157:34;;;12207:18;;;12200:34;28345:6:0;12250:19:1;;;12243:44;38985:15:0;12303:19:1;;;12296:35;38755:15:0;-1:-1:-1;;;;;38755:31:0;;;;38794:9;;12005:19:1;;38755:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38502:517;;:::o;20034:278::-;20120:7;20155:12;20148:5;20140:28;;;;-1:-1:-1;;;20140:28:0;;;;;;;;:::i;:::-;-1:-1:-1;20179:9:0;20191:5;20195:1;20191;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:416::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:64;;3122:1;3119;3112:12;3062:64;3145:7;3135:17;;;2742:416;;;;;:::o;3163:388::-;3231:6;3239;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3347:9;3334:23;3366:31;3391:5;3366:31;:::i;:::-;3416:5;-1:-1:-1;3473:2:1;3458:18;;3445:32;3486:33;3445:32;3486:33;:::i;3556:380::-;3635:1;3631:12;;;;3678;;;3699:61;;3753:4;3745:6;3741:17;3731:27;;3699:61;3806:2;3798:6;3795:14;3775:18;3772:38;3769:161;;3852:10;3847:3;3843:20;3840:1;3833:31;3887:4;3884:1;3877:15;3915:4;3912:1;3905:15;3769:161;;3556:380;;;:::o;3941:356::-;4143:2;4125:21;;;4162:18;;;4155:30;4221:34;4216:2;4201:18;;4194:62;4288:2;4273:18;;3941:356::o;4709:127::-;4770:10;4765:3;4761:20;4758:1;4751:31;4801:4;4798:1;4791:15;4825:4;4822:1;4815:15;4841:125;4906:9;;;4927:10;;;4924:36;;;4940:18;;:::i;6135:401::-;6337:2;6319:21;;;6376:2;6356:18;;;6349:30;6415:34;6410:2;6395:18;;6388:62;-1:-1:-1;;;6481:2:1;6466:18;;6459:35;6526:3;6511:19;;6135:401::o;6541:399::-;6743:2;6725:21;;;6782:2;6762:18;;;6755:30;6821:34;6816:2;6801:18;;6794:62;-1:-1:-1;;;6887:2:1;6872:18;;6865:33;6930:3;6915:19;;6541:399::o;8971:128::-;9038:9;;;9059:11;;;9056:37;;;9073:18;;:::i;9104:168::-;9177:9;;;9208;;9225:15;;;9219:22;;9205:37;9195:71;;9246:18;;:::i;9277:217::-;9317:1;9343;9333:132;;9387:10;9382:3;9378:20;9375:1;9368:31;9422:4;9419:1;9412:15;9450:4;9447:1;9440:15;9333:132;-1:-1:-1;9479:9:1;;9277:217::o;10357:127::-;10418:10;10413:3;10409:20;10406:1;10399:31;10449:4;10446:1;10439:15;10473:4;10470:1;10463:15;10489:251;10559:6;10612:2;10600:9;10591:7;10587:23;10583:32;10580:52;;;10628:1;10625;10618:12;10580:52;10660:9;10654:16;10679:31;10704:5;10679:31;:::i;10745:980::-;11007:4;11055:3;11044:9;11040:19;11086:6;11075:9;11068:25;11112:2;11150:6;11145:2;11134:9;11130:18;11123:34;11193:3;11188:2;11177:9;11173:18;11166:31;11217:6;11252;11246:13;11283:6;11275;11268:22;11321:3;11310:9;11306:19;11299:26;;11360:2;11352:6;11348:15;11334:29;;11381:1;11391:195;11405:6;11402:1;11399:13;11391:195;;;11470:13;;-1:-1:-1;;;;;11466:39:1;11454:52;;11561:15;;;;11526:12;;;;11502:1;11420:9;11391:195;;;-1:-1:-1;;;;;;;11642:32:1;;;;11637:2;11622:18;;11615:60;-1:-1:-1;;;11706:3:1;11691:19;11684:35;11603:3;10745:980;-1:-1:-1;;;10745:980:1:o;12342:306::-;12430:6;12438;12446;12499:2;12487:9;12478:7;12474:23;12470:32;12467:52;;;12515:1;12512;12505:12;12467:52;12544:9;12538:16;12528:26;;12594:2;12583:9;12579:18;12573:25;12563:35;;12638:2;12627:9;12623:18;12617:25;12607:35;;12342:306;;;;;:::o

Swarm Source

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