ETH Price: $2,270.90 (-0.08%)

Token

Long Position (LONG)
 

Overview

Max Total Supply

1,000,000 LONG

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,415.438378033299686679 LONG

Value
$0.00
0x5a03198020d67235983e624d646368c5d6d2c9c4
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:
LongPosition

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**

Trade Smart on Long Position | $LONG, 0/0 Tax

Trading: https://www.longposition.xyz
Medium: https://medium.com/@long.position.co/introducing-long-position-f9ead51732be
Twitter: https://twitter.com/longposition_
Tg: https://t.me/long_position_official

*/

// 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 LongPosition 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("Long Position", "LONG") {
        
        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"}]

60c0604052600b805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b506040518060400160405280600d81526020016c2637b733902837b9b4ba34b7b760991b815250604051806040016040528060048152602001634c4f4e4760e01b815250816003908162000085919062000760565b50600462000094828262000760565b5050506000620000a96200042760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d620001198160016200042b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000164573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018a91906200082c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fe91906200082c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027291906200082c565b6001600160a01b031660a08190526200028d9060016200042b565b60a0516001600160a01b03166000908152601c60205260409020805460ff191660011790556000808080808069d3c21bcecceda10000006064620002d38260026200086d565b620002df919062000887565b6008556064620002f18260046200086d565b620002fd919062000887565b600a55612710620003108260056200086d565b6200031c919062000887565b600955601087905560118690556012859055846200033b8789620008aa565b620003479190620008aa565b600f5560148490556015839055601682905581620003668486620008aa565b620003729190620008aa565b60135560068054336001600160a01b03199182168117909255600780549091169091179055620003b6620003ae6005546001600160a01b031690565b6001620004a5565b620003c3306001620004a5565b620003d261dead6001620004a5565b620003f1620003e96005546001600160a01b031690565b60016200042b565b620003fe3060016200042b565b6200040d61dead60016200042b565b6200041933826200054f565b5050505050505050620008c0565b3390565b6005546001600160a01b031633146200047a5760405162461bcd60e51b8152602060048201819052602482015260008051602062002b9383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004f05760405162461bcd60e51b8152602060048201819052602482015260008051602062002b93833981519152604482015260640162000471565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000471565b620005c3816002546200065060201b62000c721790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005f691839062000c7262000650821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000806200065f8385620008aa565b905083811015620006b35760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000471565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006e757607f821691505b6020821081036200070857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200064b57600081815260208120601f850160051c81016020861015620007375750805b601f850160051c820191505b81811015620007585782815560010162000743565b505050505050565b81516001600160401b038111156200077c576200077c620006bc565b62000794816200078d8454620006d2565b846200070e565b602080601f831160018114620007cc5760008415620007b35750858301515b600019600386901b1c1916600185901b17855562000758565b600085815260208120601f198616915b82811015620007fd57888601518255948401946001909101908401620007dc565b50858210156200081c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200083f57600080fd5b81516001600160a01b0381168114620006b357600080fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006b657620006b662000857565b600082620008a557634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006b657620006b662000857565b60805160a05161227c620009176000396000818161041d0152610ff301526000818161031401528181610fb501528181611bc901528181611c8201528181611cbe01528181611d300152611d8d015261227c6000f3fe60806040526004361061026b5760003560e01c80637bce5a0411610144578063b62496f5116100b6578063dd62ed3e1161007a578063dd62ed3e14610735578063e2f456051461077b578063f11a24d314610791578063f2fde38b146107a7578063f6374342146107c7578063f8b45b05146107dd57600080fd5b8063b62496f51461069f578063c0246668146106cf578063c876d0b9146106ef578063c8c8ebe414610709578063d85ba0631461071f57600080fd5b806395d89b411161010857806395d89b41146106085780639c3b4fdc1461061d5780639fccce3214610633578063a0d82dc514610649578063a457c2d71461065f578063a9059cbb1461067f57600080fd5b80637bce5a04146105895780638a8c523c1461059f5780638da5cb5b146105b45780638ea5220f146105d257806392136913146105f257600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104c757806370a08231146104e7578063715018a61461051d578063751039fc146105345780637571336a1461054957806375f0a8741461056957600080fd5b806349bd5a5e1461040b5780634a62bb651461043f5780634ada218b146104595780634fbee193146104785780636a486a8e146104b157600080fd5b80631a8145bb1161022f5780631a8145bb1461036d5780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57806339509351146103eb57600080fd5b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102d25780631694505e1461030257806318160ddd1461034e57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c6107f3565b6040516102999190611e39565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611e9f565b610885565b6040519015158152602001610299565b3480156102de57600080fd5b506102c26102ed366004611ecb565b601b6020526000908152604090205460ff1681565b34801561030e57600080fd5b506103367f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561035a57600080fd5b506002545b604051908152602001610299565b34801561037957600080fd5b5061035f60185481565b34801561038f57600080fd5b5061035f60175481565b3480156103a557600080fd5b506102c26103b4366004611ee8565b61089c565b3480156103c557600080fd5b5061033661dead81565b3480156103db57600080fd5b5060405160128152602001610299565b3480156103f757600080fd5b506102c2610406366004611e9f565b610905565b34801561041757600080fd5b506103367f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b50600b546102c29060ff1681565b34801561046557600080fd5b50600b546102c290610100900460ff1681565b34801561048457600080fd5b506102c2610493366004611ecb565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104bd57600080fd5b5061035f60135481565b3480156104d357600080fd5b50600b546102c29062010000900460ff1681565b3480156104f357600080fd5b5061035f610502366004611ecb565b6001600160a01b031660009081526020819052604090205490565b34801561052957600080fd5b5061053261093b565b005b34801561054057600080fd5b506102c26109b8565b34801561055557600080fd5b50610532610564366004611f29565b610a01565b34801561057557600080fd5b50600654610336906001600160a01b031681565b34801561059557600080fd5b5061035f60105481565b3480156105ab57600080fd5b50610532610a56565b3480156105c057600080fd5b506005546001600160a01b0316610336565b3480156105de57600080fd5b50600754610336906001600160a01b031681565b3480156105fe57600080fd5b5061035f60145481565b34801561061457600080fd5b5061028c610a93565b34801561062957600080fd5b5061035f60125481565b34801561063f57600080fd5b5061035f60195481565b34801561065557600080fd5b5061035f60165481565b34801561066b57600080fd5b506102c261067a366004611e9f565b610aa2565b34801561068b57600080fd5b506102c261069a366004611e9f565b610af1565b3480156106ab57600080fd5b506102c26106ba366004611ecb565b601c6020526000908152604090205460ff1681565b3480156106db57600080fd5b506105326106ea366004611f29565b610afe565b3480156106fb57600080fd5b50600e546102c29060ff1681565b34801561071557600080fd5b5061035f60085481565b34801561072b57600080fd5b5061035f600f5481565b34801561074157600080fd5b5061035f610750366004611f67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078757600080fd5b5061035f60095481565b34801561079d57600080fd5b5061035f60115481565b3480156107b357600080fd5b506105326107c2366004611ecb565b610b87565b3480156107d357600080fd5b5061035f60155481565b3480156107e957600080fd5b5061035f600a5481565b60606003805461080290611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611f95565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892338484610cd8565b5060015b92915050565b60006108a9848484610dfd565b6108fb84336108f6856040518060600160405280602881526020016121fa602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906116df565b610cd8565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108929185906108f69086610c72565b6005546001600160a01b0316331461096e5760405162461bcd60e51b815260040161096590611fcf565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146109e55760405162461bcd60e51b815260040161096590611fcf565b50600b805460ff19908116909155600e80549091169055600190565b6005546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a805760405162461bcd60e51b815260040161096590611fcf565b600b805462ffff00191662010100179055565b60606004805461080290611f95565b600061089233846108f685604051806060016040528060258152602001612222602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906116df565b6000610892338484610dfd565b6005546001600160a01b03163314610b285760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610bb15760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b038116610c165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610c7f838561201a565b905083811015610cd15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610965565b9392505050565b6001600160a01b038316610d3a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610965565b6001600160a01b038216610d9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610965565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e235760405162461bcd60e51b81526004016109659061202d565b6001600160a01b038216610e495760405162461bcd60e51b815260040161096590612072565b80600003610e6257610e5d83836000611719565b505050565b6005546001600160a01b03163203610e7f57610e5d838383611719565b600b54610100900460ff16610f12576001600160a01b0383166000908152601a602052604090205460ff1680610ecd57506001600160a01b0382166000908152601a602052604090205460ff165b610f125760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610965565b600b5460ff161561131c576005546001600160a01b03848116911614801590610f4957506005546001600160a01b03838116911614155b8015610f5d57506001600160a01b03821615155b8015610f7457506001600160a01b03821661dead14155b8015610f8a5750600554600160a01b900460ff16155b1561131c57600e5460ff16156110d6576005546001600160a01b03838116911614801590610fea57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561102857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156110d657326000908152600c602052604090205443116110c35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610965565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff16801561111757506001600160a01b0382166000908152601b602052604090205460ff16155b156111fb5760085481111561118c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610965565b600a546001600160a01b0383166000908152602081905260409020546111b2908361201a565b11156111f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b61131c565b6001600160a01b0382166000908152601c602052604090205460ff16801561123c57506001600160a01b0383166000908152601b602052604090205460ff16155b156112b2576008548111156111f65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610965565b600a546001600160a01b0383166000908152602081905260409020546112d8908361201a565b111561131c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b30600090815260208190526040902054600954811080159081906113485750600b5462010000900460ff165b801561135e5750600554600160a01b900460ff16155b801561138357506001600160a01b0385166000908152601c602052604090205460ff16155b80156113a857506001600160a01b0385166000908152601a602052604090205460ff16155b80156113cd57506001600160a01b0384166000908152601a602052604090205460ff16155b156113fb576005805460ff60a01b1916600160a01b1790556113ed611822565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061144957506001600160a01b0385166000908152601a602052604090205460ff165b15611456575043600d5560005b6001600160a01b0386166000908152601a602052604090205460ff161561148a576114828686866119fe565b505050505050565b600081156116cb576001600160a01b0386166000908152601c602052604090205460ff161561159b57600d546001600160a01b0388166000908152600c60205260409020546114d991906120b5565b50601354156115965761150260646114fc60135488611a6c90919063ffffffff16565b90611aee565b90506013546015548261151591906120c8565b61151f91906120df565b60186000828254611530919061201a565b909155505060135460165461154590836120c8565b61154f91906120df565b60196000828254611560919061201a565b909155505060135460145461157590836120c8565b61157f91906120df565b60176000828254611590919061201a565b90915550505b6116ad565b6001600160a01b0387166000908152601c602052604090205460ff16156116ad576001600160a01b0386166000908152600c602052604081205490036115f7576001600160a01b0386166000908152600c602052604090204390555b600f54156116ad5761161960646114fc600f5488611a6c90919063ffffffff16565b9050600f546011548261162c91906120c8565b61163691906120df565b60186000828254611647919061201a565b9091555050600f5460125461165c90836120c8565b61166691906120df565b60196000828254611677919061201a565b9091555050600f5460105461168c90836120c8565b61169691906120df565b601760008282546116a7919061201a565b90915550505b80156116be576116be873083611719565b6116c881866120b5565b94505b6116d6878787611719565b50505050505050565b600081848411156117035760405162461bcd60e51b81526004016109659190611e39565b50600061171084866120b5565b95945050505050565b6001600160a01b03831661173f5760405162461bcd60e51b81526004016109659061202d565b6001600160a01b0382166117655760405162461bcd60e51b815260040161096590612072565b6117a2816040518060600160405280602681526020016121d4602691396001600160a01b03861660009081526020819052604090205491906116df565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117d19082610c72565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610df0565b3060009081526020819052604081205490506000601954601754601854611849919061201a565b611853919061201a565b9050811580611860575080155b15611869575050565b60006002826018548561187c91906120c8565b61188691906120df565b61189091906120df565b9050600061189e8483611b30565b9050476118aa82611b72565b60006118b64783611b30565b905060006118d3866114fc60175485611a6c90919063ffffffff16565b905060006118f0876114fc60195486611a6c90919063ffffffff16565b90506000816118ff84866120b5565b61190991906120b5565b60006018819055601781905560198190556006546040519293506001600160a01b03169185156108fc0291869190818181858888f19350505050158015611954573d6000803e3d6000fd5b506007546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561198f573d6000803e3d6000fd5b506000871180156119a05750600081115b156119f3576119af8782611d2a565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b038316611a245760405162461bcd60e51b81526004016109659061202d565b6001600160a01b038216611a4a5760405162461bcd60e51b815260040161096590612072565b600060208190526001600160a01b038316815260409020546117d19082610c72565b600082600003611a7e57506000610896565b6000611a8a83856120c8565b905082611a9785836120df565b14610cd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610965565b6000610cd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e0b565b6000610cd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116df565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba757611ba7612101565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c499190612117565b81600181518110611c5c57611c5c612101565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca7307f000000000000000000000000000000000000000000000000000000000000000084610cd8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cfc908590600090869030904290600401612134565b600060405180830381600087803b158015611d1657600080fd5b505af1158015611482573d6000803e3d6000fd5b611d55307f000000000000000000000000000000000000000000000000000000000000000084610cd8565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0491906121a5565b5050505050565b60008183611e2c5760405162461bcd60e51b81526004016109659190611e39565b50600061171084866120df565b600060208083528351808285015260005b81811015611e6657858101830151858201604001528201611e4a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e9c57600080fd5b50565b60008060408385031215611eb257600080fd5b8235611ebd81611e87565b946020939093013593505050565b600060208284031215611edd57600080fd5b8135610cd181611e87565b600080600060608486031215611efd57600080fd5b8335611f0881611e87565b92506020840135611f1881611e87565b929592945050506040919091013590565b60008060408385031215611f3c57600080fd5b8235611f4781611e87565b915060208301358015158114611f5c57600080fd5b809150509250929050565b60008060408385031215611f7a57600080fd5b8235611f8581611e87565b91506020830135611f5c81611e87565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089657610896612004565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561089657610896612004565b808202811582820484141761089657610896612004565b6000826120fc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561212957600080fd5b8151610cd181611e87565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121ba57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220546b438c2f0e3818250ad8e28bb13850f8c015f8df9378ae9639b9f1c19c1c5864736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80637bce5a0411610144578063b62496f5116100b6578063dd62ed3e1161007a578063dd62ed3e14610735578063e2f456051461077b578063f11a24d314610791578063f2fde38b146107a7578063f6374342146107c7578063f8b45b05146107dd57600080fd5b8063b62496f51461069f578063c0246668146106cf578063c876d0b9146106ef578063c8c8ebe414610709578063d85ba0631461071f57600080fd5b806395d89b411161010857806395d89b41146106085780639c3b4fdc1461061d5780639fccce3214610633578063a0d82dc514610649578063a457c2d71461065f578063a9059cbb1461067f57600080fd5b80637bce5a04146105895780638a8c523c1461059f5780638da5cb5b146105b45780638ea5220f146105d257806392136913146105f257600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104c757806370a08231146104e7578063715018a61461051d578063751039fc146105345780637571336a1461054957806375f0a8741461056957600080fd5b806349bd5a5e1461040b5780634a62bb651461043f5780634ada218b146104595780634fbee193146104785780636a486a8e146104b157600080fd5b80631a8145bb1161022f5780631a8145bb1461036d5780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57806339509351146103eb57600080fd5b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102d25780631694505e1461030257806318160ddd1461034e57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c6107f3565b6040516102999190611e39565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611e9f565b610885565b6040519015158152602001610299565b3480156102de57600080fd5b506102c26102ed366004611ecb565b601b6020526000908152604090205460ff1681565b34801561030e57600080fd5b506103367f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561035a57600080fd5b506002545b604051908152602001610299565b34801561037957600080fd5b5061035f60185481565b34801561038f57600080fd5b5061035f60175481565b3480156103a557600080fd5b506102c26103b4366004611ee8565b61089c565b3480156103c557600080fd5b5061033661dead81565b3480156103db57600080fd5b5060405160128152602001610299565b3480156103f757600080fd5b506102c2610406366004611e9f565b610905565b34801561041757600080fd5b506103367f0000000000000000000000001a3af29554559ee1e68fd25cd9c58d84172da00781565b34801561044b57600080fd5b50600b546102c29060ff1681565b34801561046557600080fd5b50600b546102c290610100900460ff1681565b34801561048457600080fd5b506102c2610493366004611ecb565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104bd57600080fd5b5061035f60135481565b3480156104d357600080fd5b50600b546102c29062010000900460ff1681565b3480156104f357600080fd5b5061035f610502366004611ecb565b6001600160a01b031660009081526020819052604090205490565b34801561052957600080fd5b5061053261093b565b005b34801561054057600080fd5b506102c26109b8565b34801561055557600080fd5b50610532610564366004611f29565b610a01565b34801561057557600080fd5b50600654610336906001600160a01b031681565b34801561059557600080fd5b5061035f60105481565b3480156105ab57600080fd5b50610532610a56565b3480156105c057600080fd5b506005546001600160a01b0316610336565b3480156105de57600080fd5b50600754610336906001600160a01b031681565b3480156105fe57600080fd5b5061035f60145481565b34801561061457600080fd5b5061028c610a93565b34801561062957600080fd5b5061035f60125481565b34801561063f57600080fd5b5061035f60195481565b34801561065557600080fd5b5061035f60165481565b34801561066b57600080fd5b506102c261067a366004611e9f565b610aa2565b34801561068b57600080fd5b506102c261069a366004611e9f565b610af1565b3480156106ab57600080fd5b506102c26106ba366004611ecb565b601c6020526000908152604090205460ff1681565b3480156106db57600080fd5b506105326106ea366004611f29565b610afe565b3480156106fb57600080fd5b50600e546102c29060ff1681565b34801561071557600080fd5b5061035f60085481565b34801561072b57600080fd5b5061035f600f5481565b34801561074157600080fd5b5061035f610750366004611f67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078757600080fd5b5061035f60095481565b34801561079d57600080fd5b5061035f60115481565b3480156107b357600080fd5b506105326107c2366004611ecb565b610b87565b3480156107d357600080fd5b5061035f60155481565b3480156107e957600080fd5b5061035f600a5481565b60606003805461080290611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611f95565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892338484610cd8565b5060015b92915050565b60006108a9848484610dfd565b6108fb84336108f6856040518060600160405280602881526020016121fa602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906116df565b610cd8565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108929185906108f69086610c72565b6005546001600160a01b0316331461096e5760405162461bcd60e51b815260040161096590611fcf565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146109e55760405162461bcd60e51b815260040161096590611fcf565b50600b805460ff19908116909155600e80549091169055600190565b6005546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a805760405162461bcd60e51b815260040161096590611fcf565b600b805462ffff00191662010100179055565b60606004805461080290611f95565b600061089233846108f685604051806060016040528060258152602001612222602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906116df565b6000610892338484610dfd565b6005546001600160a01b03163314610b285760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610bb15760405162461bcd60e51b815260040161096590611fcf565b6001600160a01b038116610c165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610c7f838561201a565b905083811015610cd15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610965565b9392505050565b6001600160a01b038316610d3a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610965565b6001600160a01b038216610d9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610965565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e235760405162461bcd60e51b81526004016109659061202d565b6001600160a01b038216610e495760405162461bcd60e51b815260040161096590612072565b80600003610e6257610e5d83836000611719565b505050565b6005546001600160a01b03163203610e7f57610e5d838383611719565b600b54610100900460ff16610f12576001600160a01b0383166000908152601a602052604090205460ff1680610ecd57506001600160a01b0382166000908152601a602052604090205460ff165b610f125760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610965565b600b5460ff161561131c576005546001600160a01b03848116911614801590610f4957506005546001600160a01b03838116911614155b8015610f5d57506001600160a01b03821615155b8015610f7457506001600160a01b03821661dead14155b8015610f8a5750600554600160a01b900460ff16155b1561131c57600e5460ff16156110d6576005546001600160a01b03838116911614801590610fea57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561102857507f0000000000000000000000001a3af29554559ee1e68fd25cd9c58d84172da0076001600160a01b0316826001600160a01b031614155b156110d657326000908152600c602052604090205443116110c35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610965565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff16801561111757506001600160a01b0382166000908152601b602052604090205460ff16155b156111fb5760085481111561118c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610965565b600a546001600160a01b0383166000908152602081905260409020546111b2908361201a565b11156111f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b61131c565b6001600160a01b0382166000908152601c602052604090205460ff16801561123c57506001600160a01b0383166000908152601b602052604090205460ff16155b156112b2576008548111156111f65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610965565b600a546001600160a01b0383166000908152602081905260409020546112d8908361201a565b111561131c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610965565b30600090815260208190526040902054600954811080159081906113485750600b5462010000900460ff165b801561135e5750600554600160a01b900460ff16155b801561138357506001600160a01b0385166000908152601c602052604090205460ff16155b80156113a857506001600160a01b0385166000908152601a602052604090205460ff16155b80156113cd57506001600160a01b0384166000908152601a602052604090205460ff16155b156113fb576005805460ff60a01b1916600160a01b1790556113ed611822565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061144957506001600160a01b0385166000908152601a602052604090205460ff165b15611456575043600d5560005b6001600160a01b0386166000908152601a602052604090205460ff161561148a576114828686866119fe565b505050505050565b600081156116cb576001600160a01b0386166000908152601c602052604090205460ff161561159b57600d546001600160a01b0388166000908152600c60205260409020546114d991906120b5565b50601354156115965761150260646114fc60135488611a6c90919063ffffffff16565b90611aee565b90506013546015548261151591906120c8565b61151f91906120df565b60186000828254611530919061201a565b909155505060135460165461154590836120c8565b61154f91906120df565b60196000828254611560919061201a565b909155505060135460145461157590836120c8565b61157f91906120df565b60176000828254611590919061201a565b90915550505b6116ad565b6001600160a01b0387166000908152601c602052604090205460ff16156116ad576001600160a01b0386166000908152600c602052604081205490036115f7576001600160a01b0386166000908152600c602052604090204390555b600f54156116ad5761161960646114fc600f5488611a6c90919063ffffffff16565b9050600f546011548261162c91906120c8565b61163691906120df565b60186000828254611647919061201a565b9091555050600f5460125461165c90836120c8565b61166691906120df565b60196000828254611677919061201a565b9091555050600f5460105461168c90836120c8565b61169691906120df565b601760008282546116a7919061201a565b90915550505b80156116be576116be873083611719565b6116c881866120b5565b94505b6116d6878787611719565b50505050505050565b600081848411156117035760405162461bcd60e51b81526004016109659190611e39565b50600061171084866120b5565b95945050505050565b6001600160a01b03831661173f5760405162461bcd60e51b81526004016109659061202d565b6001600160a01b0382166117655760405162461bcd60e51b815260040161096590612072565b6117a2816040518060600160405280602681526020016121d4602691396001600160a01b03861660009081526020819052604090205491906116df565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117d19082610c72565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610df0565b3060009081526020819052604081205490506000601954601754601854611849919061201a565b611853919061201a565b9050811580611860575080155b15611869575050565b60006002826018548561187c91906120c8565b61188691906120df565b61189091906120df565b9050600061189e8483611b30565b9050476118aa82611b72565b60006118b64783611b30565b905060006118d3866114fc60175485611a6c90919063ffffffff16565b905060006118f0876114fc60195486611a6c90919063ffffffff16565b90506000816118ff84866120b5565b61190991906120b5565b60006018819055601781905560198190556006546040519293506001600160a01b03169185156108fc0291869190818181858888f19350505050158015611954573d6000803e3d6000fd5b506007546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561198f573d6000803e3d6000fd5b506000871180156119a05750600081115b156119f3576119af8782611d2a565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b038316611a245760405162461bcd60e51b81526004016109659061202d565b6001600160a01b038216611a4a5760405162461bcd60e51b815260040161096590612072565b600060208190526001600160a01b038316815260409020546117d19082610c72565b600082600003611a7e57506000610896565b6000611a8a83856120c8565b905082611a9785836120df565b14610cd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610965565b6000610cd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e0b565b6000610cd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116df565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba757611ba7612101565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c499190612117565b81600181518110611c5c57611c5c612101565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cd8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cfc908590600090869030904290600401612134565b600060405180830381600087803b158015611d1657600080fd5b505af1158015611482573d6000803e3d6000fd5b611d55307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cd8565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0491906121a5565b5050505050565b60008183611e2c5760405162461bcd60e51b81526004016109659190611e39565b50600061171084866120df565b600060208083528351808285015260005b81811015611e6657858101830151858201604001528201611e4a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e9c57600080fd5b50565b60008060408385031215611eb257600080fd5b8235611ebd81611e87565b946020939093013593505050565b600060208284031215611edd57600080fd5b8135610cd181611e87565b600080600060608486031215611efd57600080fd5b8335611f0881611e87565b92506020840135611f1881611e87565b929592945050506040919091013590565b60008060408385031215611f3c57600080fd5b8235611f4781611e87565b915060208301358015158114611f5c57600080fd5b809150509250929050565b60008060408385031215611f7a57600080fd5b8235611f8581611e87565b91506020830135611f5c81611e87565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089657610896612004565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561089657610896612004565b808202811582820484141761089657610896612004565b6000826120fc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561212957600080fd5b8151610cd181611e87565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121ba57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220546b438c2f0e3818250ad8e28bb13850f8c015f8df9378ae9639b9f1c19c1c5864736f6c63430008120033

Deployed Bytecode Sourcemap

28270:12353:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7863:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10030:169;;;;;;;;;;-1:-1:-1;10030:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10030:169:0;1023:187:1;29684:64:0;;;;;;;;;;-1:-1:-1;29684:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28352:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;28352:51:0;1467:230:1;8983:108:0;;;;;;;;;;-1:-1:-1;9071:12:0;;8983:108;;;1848:25:1;;;1836:2;1821:18;8983:108:0;1702:177:1;29460:33:0;;;;;;;;;;;;;;;;29420;;;;;;;;;;;;;;;;10681:355;;;;;;;;;;-1:-1:-1;10681:355:0;;;;;:::i;:::-;;:::i;28455:53::-;;;;;;;;;;;;28501:6;28455:53;;8825:93;;;;;;;;;;-1:-1:-1;8825:93:0;;8908:2;2695:36:1;;2683:2;2668:18;8825:93:0;2553:184:1;11445:218:0;;;;;;;;;;-1:-1:-1;11445:218:0;;;;;:::i;:::-;;:::i;28410:38::-;;;;;;;;;;;;;;;28736:33;;;;;;;;;;-1:-1:-1;28736:33:0;;;;;;;;28776:34;;;;;;;;;;-1:-1:-1;28776:34:0;;;;;;;;;;;33270:125;;;;;;;;;;-1:-1:-1;33270:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;33359:28:0;33335:4;33359:28;;;:19;:28;;;;;;;;;33270:125;29271:28;;;;;;;;;;;;;;;;28817:31;;;;;;;;;;-1:-1:-1;28817:31:0;;;;;;;;;;;9154:127;;;;;;;;;;-1:-1:-1;9154:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9255:18:0;9228:7;9255:18;;;;;;;;;;;;9154:127;22855:148;;;;;;;;;;;;;:::i;:::-;;32623:159;;;;;;;;;;;;;:::i;32790:140::-;;;;;;;;;;-1:-1:-1;32790:140:0;;;;;:::i;:::-;;:::i;28547:30::-;;;;;;;;;;-1:-1:-1;28547:30:0;;;;-1:-1:-1;;;;;28547:30:0;;;29160;;;;;;;;;;;;;;;;32454:113;;;;;;;;;;;;;:::i;22213:79::-;;;;;;;;;;-1:-1:-1;22278:6:0;;-1:-1:-1;;;;;22278:6:0;22213:79;;28584:24;;;;;;;;;;-1:-1:-1;28584:24:0;;;;-1:-1:-1;;;;;28584:24:0;;;29306:31;;;;;;;;;;;;;;;;8082:104;;;;;;;;;;;;;:::i;29234:24::-;;;;;;;;;;;;;;;;29500:27;;;;;;;;;;;;;;;;29382:25;;;;;;;;;;;;;;;;12166:269;;;;;;;;;;-1:-1:-1;12166:269:0;;;;;:::i;:::-;;:::i;9494:175::-;;;;;;;;;;-1:-1:-1;9494:175:0;;;;;:::i;:::-;;:::i;29906:58::-;;;;;;;;;;-1:-1:-1;29906:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32942:182;;;;;;;;;;-1:-1:-1;32942:182:0;;;;;:::i;:::-;;:::i;29074:39::-;;;;;;;;;;-1:-1:-1;29074:39:0;;;;;;;;28621:35;;;;;;;;;;;;;;;;29126:27;;;;;;;;;;;;;;;;9732:151;;;;;;;;;;-1:-1:-1;9732:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9848:18:0;;;9821:7;9848:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9732:151;28663:33;;;;;;;;;;;;;;;;29197:30;;;;;;;;;;;;;;;;23158:244;;;;;;;;;;-1:-1:-1;23158:244:0;;;;;:::i;:::-;;:::i;29344:31::-;;;;;;;;;;;;;;;;28703:24;;;;;;;;;;;;;;;;7863:100;7917:13;7950:5;7943:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7863:100;:::o;10030:169::-;10113:4;10130:39;579:10;10153:7;10162:6;10130:8;:39::i;:::-;-1:-1:-1;10187:4:0;10030:169;;;;;:::o;10681:355::-;10821:4;10838:36;10848:6;10856:9;10867:6;10838:9;:36::i;:::-;10885:121;10894:6;579:10;10916:89;10954:6;10916:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10916:19:0;;;;;;:11;:19;;;;;;;;579:10;10916:33;;;;;;;;;;:37;:89::i;:::-;10885:8;:121::i;:::-;-1:-1:-1;11024:4:0;10681:355;;;;;:::o;11445:218::-;579:10;11533:4;11582:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11582:34:0;;;;;;;;;;11533:4;;11550:83;;11573:7;;11582:50;;11621:10;11582:38;:50::i;22855:148::-;22425:6;;-1:-1:-1;;;;;22425:6:0;579:10;22425:22;22417:67;;;;-1:-1:-1;;;22417:67:0;;;;;;;:::i;:::-;;;;;;;;;22946:6:::1;::::0;22925:40:::1;::::0;22962:1:::1;::::0;-1:-1:-1;;;;;22946:6:0::1;::::0;22925:40:::1;::::0;22962:1;;22925:40:::1;22976:6;:19:::0;;-1:-1:-1;;;;;;22976:19:0::1;::::0;;22855:148::o;32623:159::-;22425:6;;32675:4;;-1:-1:-1;;;;;22425:6:0;579:10;22425:22;22417:67;;;;-1:-1:-1;;;22417:67:0;;;;;;;:::i;:::-;-1:-1:-1;32691:14:0::1;:22:::0;;-1:-1:-1;;32691:22:0;;::::1;::::0;;;32724:20:::1;:28:::0;;;;::::1;::::0;;32691:22;32623:159;:::o;32790:140::-;22425:6;;-1:-1:-1;;;;;22425:6:0;579:10;22425:22;22417:67;;;;-1:-1:-1;;;22417:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32878:38:0;;;::::1;;::::0;;;:31:::1;:38;::::0;;;;:44;;-1:-1:-1;;32878:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32790:140::o;32454:113::-;22425:6;;-1:-1:-1;;;;;22425:6:0;579:10;22425:22;22417:67;;;;-1:-1:-1;;;22417:67:0;;;;;;;:::i;:::-;32509:14:::1;:21:::0;;-1:-1:-1;;32541:18:0;;;;;32454:113::o;8082:104::-;8138:13;8171:7;8164:14;;;;;:::i;12166:269::-;12259:4;12276:129;579:10;12299:7;12308:96;12347:15;12308:96;;;;;;;;;;;;;;;;;579:10;12308:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12308:34:0;;;;;;;;;;;;:38;:96::i;9494:175::-;9580:4;9597:42;579:10;9621:9;9632:6;9597:9;:42::i;32942:182::-;22425:6;;-1:-1:-1;;;;;22425:6:0;579:10;22425:22;22417:67;;;;-1:-1:-1;;;22417:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33027:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;33027:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33082:34;;1163:41:1;;;33082:34:0::1;::::0;1136:18:1;33082:34:0::1;;;;;;;32942:182:::0;;:::o;23158:244::-;22425:6;;-1:-1:-1;;;;;22425:6:0;579:10;22425:22;22417:67;;;;-1:-1:-1;;;22417:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23247:22:0;::::1;23239:73;;;::::0;-1:-1:-1;;;23239:73:0;;4504:2:1;23239: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;;23239:73:0::1;4302:402:1::0;23239:73:0::1;23349:6;::::0;23328:38:::1;::::0;-1:-1:-1;;;;;23328:38:0;;::::1;::::0;23349:6:::1;::::0;23328:38:::1;::::0;23349:6:::1;::::0;23328:38:::1;23377:6;:17:::0;;-1:-1:-1;;;;;;23377:17:0::1;-1:-1:-1::0;;;;;23377:17:0;;;::::1;::::0;;;::::1;::::0;;23158:244::o;17257:181::-;17315:7;;17347:5;17351:1;17347;:5;:::i;:::-;17335:17;;17376:1;17371;:6;;17363:46;;;;-1:-1:-1;;;17363:46:0;;5173:2:1;17363:46:0;;;5155:21:1;5212:2;5192:18;;;5185:30;5251:29;5231:18;;;5224:57;5298:18;;17363:46:0;4971:351:1;17363:46:0;17429:1;17257:181;-1:-1:-1;;;17257:181:0:o;15879:380::-;-1:-1:-1;;;;;16015:19:0;;16007:68;;;;-1:-1:-1;;;16007:68:0;;5529:2:1;16007: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;;16007:68:0;5327:400:1;16007:68:0;-1:-1:-1;;;;;16094:21:0;;16086:68;;;;-1:-1:-1;;;16086:68:0;;5934:2:1;16086: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;;16086:68:0;5732:398:1;16086:68:0;-1:-1:-1;;;;;16167:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16219:32;;1848:25:1;;;16219:32:0;;1821:18:1;16219:32:0;;;;;;;;15879:380;;;:::o;33407:4627::-;-1:-1:-1;;;;;33539:18:0;;33531:68;;;;-1:-1:-1;;;33531:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33618:16:0;;33610:64;;;;-1:-1:-1;;;33610:64:0;;;;;;;:::i;:::-;33699:6;33709:1;33699:11;33696:92;;33727:28;33743:4;33749:2;33753:1;33727:15;:28::i;:::-;33407:4627;;;:::o;33696:92::-;22278:6;;-1:-1:-1;;;;;22278:6:0;33804:9;:20;33800:107;;33841:33;33857:4;33863:2;33867:6;33841:15;:33::i;33800:107::-;33923:14;;;;;;;33919:133;;-1:-1:-1;;;;;33961:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;33990:23:0;;;;;;:19;:23;;;;;;;;33961:52;33953:87;;;;-1:-1:-1;;;33953:87:0;;7147:2:1;33953:87:0;;;7129:21:1;7186:2;7166:18;;;7159:30;-1:-1:-1;;;7205:18:1;;;7198:52;7267:18;;33953:87:0;6945:346:1;33953:87:0;34075:14;;;;34072:1608;;;22278:6;;-1:-1:-1;;;;;34127:15:0;;;22278:6;;34127:15;;;;:49;;-1:-1:-1;22278:6:0;;-1:-1:-1;;;;;34163:13:0;;;22278:6;;34163:13;;34127:49;:86;;;;-1:-1:-1;;;;;;34197:16:0;;;;34127:86;:128;;;;-1:-1:-1;;;;;;34234:21:0;;34248:6;34234:21;;34127:128;:158;;;;-1:-1:-1;34277:8:0;;-1:-1:-1;;;34277:8:0;;;;34276:9;34127:158;34105:1564;;;34469:20;;;;34465:415;;;22278:6;;-1:-1:-1;;;;;34517:13:0;;;22278:6;;34517:13;;;;:47;;;34548:15;-1:-1:-1;;;;;34534:30:0;:2;-1:-1:-1;;;;;34534:30:0;;;34517:47;:79;;;;;34582:13;-1:-1:-1;;;;;34568:28:0;:2;-1:-1:-1;;;;;34568:28:0;;;34517:79;34513:348;;;34657:9;34632:35;;;;:24;:35;;;;;;34670:12;-1:-1:-1;34624:136:0;;;;-1:-1:-1;;;34624:136:0;;7498:2:1;34624: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;;34624:136:0;7296:477:1;34624:136:0;34812:9;34787:35;;;;:24;:35;;;;;34825:12;34787:50;;34513:348;-1:-1:-1;;;;;34932:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;34968:35:0;;;;;;:31;:35;;;;;;;;34967:36;34932:71;34928:726;;;35046:20;;35036:6;:30;;35028:96;;;;-1:-1:-1;;;35028:96:0;;7980:2:1;35028: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;;35028:96:0;7778:417:1;35028:96:0;35181:9;;-1:-1:-1;;;;;9255:18:0;;9228:7;9255:18;;;;;;;;;;;35155:22;;:6;:22;:::i;:::-;:35;;35147:67;;;;-1:-1:-1;;;35147:67:0;;8402:2:1;35147:67:0;;;8384:21:1;8441:2;8421:18;;;8414:30;-1:-1:-1;;;8460:18:1;;;8453:49;8519:18;;35147:67:0;8200:343:1;35147:67:0;34928:726;;;-1:-1:-1;;;;;35308:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;35342:37:0;;;;;;:31;:37;;;;;;;;35341:38;35308:71;35304:350;;;35422:20;;35412:6;:30;;35404:97;;;;-1:-1:-1;;;35404:97:0;;8750:2:1;35404: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;;35404:97:0;8548:418:1;35304:350:0;35601:9;;-1:-1:-1;;;;;9255:18:0;;9228:7;9255:18;;;;;;;;;;;35575:22;;:6;:22;:::i;:::-;:35;;35567:67;;;;-1:-1:-1;;;35567:67:0;;8402:2:1;35567:67:0;;;8384:21:1;8441:2;8421:18;;;8414:30;-1:-1:-1;;;8460:18:1;;;8453:49;8519:18;;35567:67:0;8200:343:1;35567:67:0;35743:4;35694:28;9255:18;;;;;;;;;;;35809;;35785:42;;;;;;;35858:35;;-1:-1:-1;35882:11:0;;;;;;;35858:35;:61;;;;-1:-1:-1;35911:8:0;;-1:-1:-1;;;35911:8:0;;;;35910:9;35858:61;:110;;;;-1:-1:-1;;;;;;35937:31:0;;;;;;:25;:31;;;;;;;;35936:32;35858:110;:153;;;;-1:-1:-1;;;;;;35986:25:0;;;;;;:19;:25;;;;;;;;35985:26;35858:153;:194;;;;-1:-1:-1;;;;;;36029:23:0;;;;;;:19;:23;;;;;;;;36028:24;35858:194;35840:334;;;36079:8;:15;;-1:-1:-1;;;;36079:15:0;-1:-1:-1;;;36079:15:0;;;36121:10;:8;:10::i;:::-;36146:8;:16;;-1:-1:-1;;;;36146:16:0;;;35840:334;36210:8;;-1:-1:-1;;;;;36319:25:0;;36194:12;36319:25;;;:19;:25;;;;;;36210:8;-1:-1:-1;;;36210:8:0;;;;;36209:9;;36319:25;;:52;;-1:-1:-1;;;;;;36348:23:0;;;;;;:19;:23;;;;;;;;36319:52;36316:149;;;-1:-1:-1;36411:12:0;36388:20;:35;36448:5;36316:149;-1:-1:-1;;;;;36478:25:0;;;;;;:19;:25;;;;;;;;36475:110;;;36520:32;36535:4;36541:2;36545:6;36520:14;:32::i;:::-;36567:7;;;33407:4627;;;:::o;36475:110::-;36605:12;36709:7;36706:1275;;;-1:-1:-1;;;;;36760:29:0;;;;;;:25;:29;;;;;;;;36756:1056;;;36843:20;;-1:-1:-1;;;;;36810:30:0;;;;;;:24;:30;;;;;;:53;;36843:20;36810:53;:::i;:::-;-1:-1:-1;36886:13:0;;:17;36882:347;;36935:34;36965:3;36935:25;36946:13;;36935:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;36928:41;;37040:13;;37021:16;;37014:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;36992:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;37112:13:0;;37099:10;;37092:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;37076:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;37196:13:0;;37177:16;;37170:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;37148:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;36882:347:0;36756:1056;;;-1:-1:-1;;;;;37289:31:0;;;;;;:25;:31;;;;;;;;37286:526;;;-1:-1:-1;;;;;37345:28:0;;;;;;:24;:28;;;;;;:33;;37341:82;;-1:-1:-1;;;;;37380:28:0;;;;;;:24;:28;;;;;37411:12;37380:43;;37341:82;37446:12;;:16;37442:355;;37494:33;37523:3;37494:24;37505:12;;37494:6;:10;;:24;;;;:::i;:33::-;37487:40;;37613:12;;37595:15;;37588:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;37566:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;37683:12:0;;37671:9;;37664:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;37648:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;37765:12:0;;37747:15;;37740:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;37718:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;37442:355:0;37843:8;;37840:93;;37875:42;37891:4;37905;37912;37875:15;:42::i;:::-;37955:14;37965:4;37955:14;;:::i;:::-;;;36706:1275;37993:33;38009:4;38015:2;38019:6;37993:15;:33::i;:::-;33520:4514;;;;33407:4627;;;:::o;18160:192::-;18246:7;18282:12;18274:6;;;;18266:29;;;;-1:-1:-1;;;18266:29:0;;;;;;;;:::i;:::-;-1:-1:-1;18306:9:0;18318:5;18322:1;18318;:5;:::i;:::-;18306:17;18160:192;-1:-1:-1;;;;;18160:192:0:o;13452:573::-;-1:-1:-1;;;;;13592:20:0;;13584:70;;;;-1:-1:-1;;;13584:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13673:23:0;;13665:71;;;;-1:-1:-1;;;13665:71:0;;;;;;;:::i;:::-;13829;13851:6;13829:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13829:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13809:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13934:20;;;;;;;:32;;13959:6;13934:24;:32::i;:::-;-1:-1:-1;;;;;13911:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13982:35;1848:25:1;;;13911:20:0;;13982:35;;;;;;1821:18:1;13982:35:0;1702:177:1;39180:1440:0;39263:4;39219:23;9255:18;;;;;;;;;;;39219:50;;39280:25;39350:12;;39329:18;;39308;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;39280:82;-1:-1:-1;39386:20:0;;;:46;;-1:-1:-1;39410:22:0;;39386:46;39383:60;;;39435:7;;39180:1440::o;39383:60::-;39512:23;39597:1;39577:17;39556:18;;39538:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;39512:86;-1:-1:-1;39609:26:0;39638:36;:15;39512:86;39638:19;:36::i;:::-;39609:65;-1:-1:-1;39723:21:0;39757:36;39609:65;39757:16;:36::i;:::-;39815:18;39836:44;:21;39862:17;39836:25;:44::i;:::-;39815:65;;39901:23;39927:57;39966:17;39927:34;39942:18;;39927:10;:14;;:34;;;;:::i;:57::-;39901:83;;39995:17;40015:51;40048:17;40015:28;40030:12;;40015:10;:14;;:28;;;;:::i;:51::-;39995:71;-1:-1:-1;40085:23:0;39995:71;40111:28;40124:15;40111:10;:28;:::i;:::-;:40;;;;:::i;:::-;40193:1;40172:18;:22;;;40205:18;:22;;;40238:12;:16;;;40283:15;;40275:50;;40085:66;;-1:-1:-1;;;;;;40283:15:0;;40275:50;;;;;40309:15;;40275:50;;40193:1;40275:50;40309:15;40283;40275:50;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40344:9:0;;40336:38;;-1:-1:-1;;;;;40344:9:0;;;;40336:38;;;;;40364:9;;40344;40336:38;40344:9;40336:38;40364:9;40344;40336:38;;;;;;;;;;;;;;;;;;;;;40416:1;40398:15;:19;:42;;;;;40439:1;40421:15;:19;40398:42;40395:210;;;40456:46;40469:15;40486;40456:12;:46::i;:::-;40574:18;;40522:71;;;9701:25:1;;;9757:2;9742:18;;9735:34;;;9785:18;;;9778:34;;;;40522:71:0;;;;;;9689:2:1;40522:71:0;;;40395:210;39208:1412;;;;;;;;;39180:1440::o;12926:518::-;-1:-1:-1;;;;;13065:20:0;;13057:70;;;;-1:-1:-1;;;13057:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13146:23:0;;13138:71;;;;-1:-1:-1;;;13138:71:0;;;;;;;:::i;:::-;13302:9;:17;;;;-1:-1:-1;;;;;13353:20:0;;;;13302:17;13353:20;;;:32;;13378:6;13353:24;:32::i;18611:471::-;18669:7;18914:1;18919;18914:6;18910:47;;-1:-1:-1;18944:1:0;18937:8;;18910:47;18969:9;18981:5;18985:1;18981;:5;:::i;:::-;18969:17;-1:-1:-1;19014:1:0;19005:5;19009:1;18969:17;19005:5;:::i;:::-;:10;18997:56;;;;-1:-1:-1;;;18997:56:0;;10025:2:1;18997: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;;18997:56:0;9823:397:1;19558:132:0;19616:7;19643:39;19647:1;19650;19643:39;;;;;;;;;;;;;;;;;:3;:39::i;17721:136::-;17779:7;17806:43;17810:1;17813;17806:43;;;;;;;;;;;;;;;;;:3;:43::i;38042:601::-;38194:16;;;38208:1;38194:16;;;;;;;;38170:21;;38194:16;;;;;;;;;;-1:-1:-1;38194:16:0;38170:40;;38239:4;38221;38226:1;38221:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;38221:23:0;;;-1:-1:-1;;;;;38221:23:0;;;;;38265:15;-1:-1:-1;;;;;38265:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38255:4;38260:1;38255:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;38255:32:0;;;-1:-1:-1;;;;;38255:32:0;;;;;38300:62;38317:4;38332:15;38350:11;38300:8;:62::i;:::-;38401:224;;-1:-1:-1;;;38401:224:0;;-1:-1:-1;;;;;38401:15:0;:66;;;;:224;;38482:11;;38508:1;;38552:4;;38579;;38599:15;;38401:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38655:517;38803:62;38820:4;38835:15;38853:11;38803:8;:62::i;:::-;38908:256;;-1:-1:-1;;;38908:256:0;;38980:4;38908:256;;;12071:34:1;12121:18;;;12114:34;;;39026:1:0;12164:18:1;;;12157:34;;;12207:18;;;12200:34;28501:6:0;12250:19:1;;;12243:44;39138:15:0;12303:19:1;;;12296:35;38908:15:0;-1:-1:-1;;;;;38908:31:0;;;;38947:9;;12005:19:1;;38908:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38655:517;;:::o;20186:278::-;20272:7;20307:12;20300:5;20292:28;;;;-1:-1:-1;;;20292:28:0;;;;;;;;:::i;:::-;-1:-1:-1;20331:9:0;20343:5;20347:1;20343;: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://546b438c2f0e3818250ad8e28bb13850f8c015f8df9378ae9639b9f1c19c1c58
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.