ETH Price: $3,100.74 (+0.92%)
Gas: 4 Gwei

Token

UTOSHIN (UTOSHIN)
 

Overview

Max Total Supply

1,000,000,000 UTOSHIN

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
199,999.980000000000000001 UTOSHIN

Value
$0.00
0x88d2f1a39a3d473d2836e9bee7bce3a242b489fc
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:
UTOSHIN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

Website: https://utoshin.com/

---------------------------------------------------------------------------------
-------------------U-----T-----O-----S-----H-----I-----N-------------------------
---------------------------------------------------------------------------------

Telegram: t.me/utoshineth

*/

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

interface IERC20 {
    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.
     *
     * 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
    );
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

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) {

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

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;


    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 IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract UTOSHIN is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcludedFromLimit;

    uint256 private _tTotal = 1000000000 * 10**18;

    address payable _marketingAddress = payable(address(0x5b1fBC06609542d42cF2D11c8339aF31A58806Db));

    string private _name = "UTOSHIN";
    string private _symbol = "UTOSHIN";
    uint8 private _decimals = 18;

    struct BuyFee {
        uint8 liquidity;
        uint8 marketing;
    }

    struct SellFee {
        uint8 liquidity;
        uint8 marketing;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _liquidityFee;
    uint8 private _marketingFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = _tTotal.div(1000).mul(10); //2%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(3); //0.3%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(20); // 2%

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    uint256 deadBlocks = 1;
    uint256 launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) _lastTrade;

    constructor() {
        _rOwned[_msgSender()] = _tTotal;

        buyFee.liquidity = 1;
        buyFee.marketing = 2;

        sellFee.liquidity = 2;
        sellFee.marketing = 3;

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

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _rOwned[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }



    function setBothFees(
        uint8 buy_liquidity,
        uint8 buy_marketing,
        uint8 sell_liquidity,
        uint8 sell_marketing

    ) external onlyOwner {
        buyFee.marketing = buy_marketing;
        buyFee.liquidity = buy_liquidity;

        sellFee.marketing = sell_marketing;
        sellFee.liquidity = sell_liquidity;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }


    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tWallet = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tLiquidity).sub(tWallet);

        return (tTransferAmount, tLiquidity, tWallet);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        _rOwned[address(this)] = _rOwned[address(this)].add(tLiquidity);
    }

    function _takeWalletFee(uint256 tWallet) private {
        _rOwned[address(this)] = _rOwned[address(this)].add(tWallet);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**2);
    }

    function calculateMarketingFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**2);
    }

   
    function removeAllFee() private {
        _liquidityFee = 0;
        _marketingFee = 0;
     
    }

    function setBuy() private {
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
      
    }

    function setSell() private {
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
      
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[account];
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(
                    amount <= _maxTxAmount,
                    "Transfer amount exceeds the maxTxAmount."
                );
                if (to != uniswapV2Pair) {
                    require(
                        amount + balanceOf(to) <= _maxWalletSize,
                        "Recipient exceeds max wallet size."
                    );
                }

              
            }
        }

        //transfer amount, it will take liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            // Add liquidity to uniswap
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
       

        if (marketingAmt > 0) {
            payable(_marketingAddress).transfer(marketingAmt);
        }

    
    }

    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
            address(this),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

        _transferStandard(sender, recipient, amount);

        removeAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);

        _rOwned[sender] = _rOwned[sender].sub(tAmount);
        _rOwned[recipient] = _rOwned[recipient].add(tTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() {
        tradingOpen = _status;
        if(tradingOpen && launchedAt == 0){
            launchedAt = block.number;
            deadBlocks = _deadBlocks;
        }
    }
}

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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6b033b2e3c9fd0803ce8000000600655600780546001600160a01b031916735b1fbc06609542d42cf2d11c8339af31a58806db17815561010060405260c0908152662aaa27a9a424a760c91b60e0526008906200005d90826200060c565b506040805180820190915260078152662aaa27a9a424a760c91b60208201526009906200008b90826200060c565b50600a805460ff19166012178155600d805463ff00000019166301000000179055600654620000ca9190620000c3906103e86200044a565b906200049d565b600e55600654620000e690600390620000c3906103e86200044a565b600f556006546200010290601490620000c3906103e86200044a565b601055600160115560006012556013805460ff191690553480156200012657600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006543360009081526002602090815260409182902092909255600b805461ffff1990811661020117909155600c8054909116610302179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa158015620001ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002149190620006d8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000262573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002889190620006d8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fc9190620006d8565b6001600160a01b0390811660a0528116608052600160046000620003286000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600484528281208054861660019081179091556007805484168352848320805488168317905554909216815260059384905291822080549094168117909355620003ab6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620003f33390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200043b91815260200190565b60405180910390a3506200079c565b60006200049483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200052b60201b60201c565b90505b92915050565b600082600003620004b15750600062000497565b6000620004bf838562000703565b905082620004ce858362000729565b14620004945760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b600081836200054f5760405162461bcd60e51b81526004016200052291906200074c565b5060006200055e848662000729565b95945050505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200059257607f821691505b602082108103620005b357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200060757600081815260208120601f850160051c81016020861015620005e25750805b601f850160051c820191505b818110156200060357828155600101620005ee565b5050505b505050565b81516001600160401b0381111562000628576200062862000567565b62000640816200063984546200057d565b84620005b9565b602080601f8311600181146200067857600084156200065f5750858301515b600019600386901b1c1916600185901b17855562000603565b600085815260208120601f198616915b82811015620006a95788860151825594840194600190910190840162000688565b5085821015620006c85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006eb57600080fd5b81516001600160a01b03811681146200049457600080fd5b80820281158282048414176200049757634e487b7160e01b600052601160045260246000fd5b6000826200074757634e487b7160e01b600052601260045260246000fd5b500490565b600060208083528351808285015260005b818110156200077b578581018301518582016040015282016200075d565b506000604082860101526040601f19601f8301168501019250505092915050565b60805160a051611b58620008016000396000818161031701528181610c3a01528181610d940152818161106901526110cf0152600081816101c8015281816111ab01528181611264015281816112a001528181611312015261136e0152611b586000f3fe60806040526004361061014f5760003560e01c806370a08231116100b6578063a9059cbb1161006f578063a9059cbb1461041c578063c49b9a801461043c578063d94160e01461045c578063dd62ed3e14610495578063f0f165af146104db578063f2fde38b146104fb57600080fd5b806370a0823114610372578063715018a6146103a85780637d1db4a5146103bd5780638da5cb5b146103d35780638f9a55c0146103f157806395d89b411461040757600080fd5b80632d4103d6116101085780632d4103d61461027e578063313ce567146102a05780633a17304a146102c257806347062402146102e257806349bd5a5e146103055780635342acb41461033957600080fd5b806306fdde031461015b578063095ea7b3146101865780631694505e146101b657806318160ddd1461020257806323b872dd146102215780632b14ca561461024157600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017061051b565b60405161017d9190611715565b60405180910390f35b34801561019257600080fd5b506101a66101a136600461177b565b6105ad565b604051901515815260200161017d565b3480156101c257600080fd5b506101ea7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161017d565b34801561020e57600080fd5b506006545b60405190815260200161017d565b34801561022d57600080fd5b506101a661023c3660046117a7565b6105c4565b34801561024d57600080fd5b50600c546102649060ff8082169161010090041682565b6040805160ff93841681529290911660208301520161017d565b34801561028a57600080fd5b5061029e6102993660046117fd565b61062d565b005b3480156102ac57600080fd5b50600a5460405160ff909116815260200161017d565b3480156102ce57600080fd5b5061029e6102dd36600461182a565b610693565b3480156102ee57600080fd5b50600b546102649060ff8082169161010090041682565b34801561031157600080fd5b506101ea7f000000000000000000000000000000000000000000000000000000000000000081565b34801561034557600080fd5b506101a661035436600461187e565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561037e57600080fd5b5061021361038d36600461187e565b6001600160a01b031660009081526002602052604090205490565b3480156103b457600080fd5b5061029e6106fc565b3480156103c957600080fd5b50610213600e5481565b3480156103df57600080fd5b506000546001600160a01b03166101ea565b3480156103fd57600080fd5b5061021360105481565b34801561041357600080fd5b50610170610770565b34801561042857600080fd5b506101a661043736600461177b565b61077f565b34801561044857600080fd5b5061029e61045736600461189b565b61078c565b34801561046857600080fd5b506101a661047736600461187e565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156104a157600080fd5b506102136104b03660046118b6565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156104e757600080fd5b5061029e6104f63660046118ef565b61080e565b34801561050757600080fd5b5061029e61051636600461187e565b61083d565b60606008805461052a90611908565b80601f016020809104026020016040519081016040528092919081815260200182805461055690611908565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b5050505050905090565b60006105ba338484610927565b5060015b92915050565b60006105d1848484610a4b565b610623843361061e85604051806060016040528060288152602001611afb602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610e5e565b610927565b5060019392505050565b6000546001600160a01b031633146106605760405162461bcd60e51b815260040161065790611942565b60405180910390fd5b6013805460ff191683151590811790915560ff1680156106805750601254155b1561068f574360125560118190555b5050565b6000546001600160a01b031633146106bd5760405162461bcd60e51b815260040161065790611942565b600b805461ffff1990811661010060ff968716810260ff199081169290921797871697909717909255600c805490911692851690950216179116179055565b6000546001600160a01b031633146107265760405162461bcd60e51b815260040161065790611942565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606009805461052a90611908565b60006105ba338484610a4b565b6000546001600160a01b031633146107b65760405162461bcd60e51b815260040161065790611942565b600d805482151563010000000263ff000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061080390831515815260200190565b60405180910390a150565b6000546001600160a01b031633146108385760405162461bcd60e51b815260040161065790611942565b600f55565b6000546001600160a01b031633146108675760405162461bcd60e51b815260040161065790611942565b6001600160a01b0381166108cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610657565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610657565b6001600160a01b0382166109ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610657565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610aaf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610657565b6001600160a01b038216610b115760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610657565b60008111610b735760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610657565b6000546001600160a01b03848116911614801590610b9f57506000546001600160a01b03838116911614155b15610bf65760135460ff16610bf65760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610657565b30600090815260026020526040902054600e548110610c145750600e545b600f5481108015908190610c315750600d5462010000900460ff16155b8015610c6f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015610c845750600d546301000000900460ff165b15610c9757600f549150610c9782610e98565b6001600160a01b03851660009081526004602052604090205460019060ff1680610cd957506001600160a01b03851660009081526004602052604090205460ff165b15610ce2575060005b8015610e4a576001600160a01b03861660009081526005602052604090205460ff16158015610d2a57506001600160a01b03851660009081526005602052604090205460ff16155b15610e4a57600e54841115610d925760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610657565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614610e4a576010546001600160a01b038616600090815260026020526040902054610df1908661198d565b1115610e4a5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610657565b610e5686868684611051565b505050505050565b60008184841115610e825760405162461bcd60e51b81526004016106579190611715565b506000610e8f84866119a0565b95945050505050565b600d805462ff0000191662010000179055600c54600b5460009161010080820460ff90811693918204811692610ed29290821691166119b3565b610edc91906119b3565b610ee691906119b3565b610ef19060026119cc565b600c54600b5460ff92831693506000928492610f119290821691166119b3565b610f1e9060ff16856119ef565b610f289190611a06565b90506000610f3682856119a0565b905047610f4282611154565b6000610f4e82476119a0565b600c54600b54919250600091610f6a9160ff90811691166119b3565b610f779060ff16876119a0565b610f819083611a06565b600c54600b54919250600091610f9d9160ff90811691166119b3565b610faa9060ff16836119ef565b90508015610fbc57610fbc868261130c565b600c54600b54600091610fde9160ff61010092839004811692909104166119b3565b60ff16610fec8460026119ef565b610ff691906119ef565b9050801561103a576007546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611038573d6000803e3d6000fd5b505b5050600d805462ff00001916905550505050505050565b801561113357611067600d805461ffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036110cd576110cd600b54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361113357611133600c54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b61113e8484846113ec565b61114e600d805461ffff19169055565b50505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061118957611189611a28565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611207573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122b9190611a3e565b8160018151811061123e5761123e611a28565b60200260200101906001600160a01b031690816001600160a01b031681525050611289307f000000000000000000000000000000000000000000000000000000000000000084610927565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906112de908590600090869030904290600401611a5b565b600060405180830381600087803b1580156112f857600080fd5b505af1158015610e56573d6000803e3d6000fd5b611337307f000000000000000000000000000000000000000000000000000000000000000084610927565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156113c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113e59190611acc565b5050505050565b60008060006113fa846114d4565b6001600160a01b03891660009081526002602052604090205492955090935091506114259085611516565b6001600160a01b038088166000908152600260205260408082209390935590871681522054611454908461155f565b6001600160a01b038616600090815260026020526040902055611476826115be565b61147f816115be565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516114c491815260200190565b60405180910390a3505050505050565b6000806000806114e3856115eb565b905060006114f08661160c565b90506000611508826115028986611516565b90611516565b979296509094509092505050565b600061155883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e5e565b9392505050565b60008061156c838561198d565b9050838110156115585760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610657565b306000908152600260205260409020546115d8908261155f565b3060009081526002602052604090205550565b600d546000906105be9060649061160690859060ff16611628565b906116aa565b600d546000906105be90606490611606908590610100900460ff165b60008260000361163a575060006105be565b600061164683856119ef565b9050826116538583611a06565b146115585760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610657565b600061155883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250600081836117085760405162461bcd60e51b81526004016106579190611715565b506000610e8f8486611a06565b600060208083528351808285015260005b8181101561174257858101830151858201604001528201611726565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461177857600080fd5b50565b6000806040838503121561178e57600080fd5b823561179981611763565b946020939093013593505050565b6000806000606084860312156117bc57600080fd5b83356117c781611763565b925060208401356117d781611763565b929592945050506040919091013590565b803580151581146117f857600080fd5b919050565b6000806040838503121561181057600080fd5b611799836117e8565b803560ff811681146117f857600080fd5b6000806000806080858703121561184057600080fd5b61184985611819565b935061185760208601611819565b925061186560408601611819565b915061187360608601611819565b905092959194509250565b60006020828403121561189057600080fd5b813561155881611763565b6000602082840312156118ad57600080fd5b611558826117e8565b600080604083850312156118c957600080fd5b82356118d481611763565b915060208301356118e481611763565b809150509250929050565b60006020828403121561190157600080fd5b5035919050565b600181811c9082168061191c57607f821691505b60208210810361193c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105be576105be611977565b818103818111156105be576105be611977565b60ff81811683821601908111156105be576105be611977565b60ff81811683821602908116908181146119e8576119e8611977565b5092915050565b80820281158282048414176105be576105be611977565b600082611a2357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a5057600080fd5b815161155881611763565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611aab5784516001600160a01b031683529383019391830191600101611a86565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611ae157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200bcfc1a842885ecef20943d583dae273b0da380022f673d18f30b9262d64e0aa64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c806370a08231116100b6578063a9059cbb1161006f578063a9059cbb1461041c578063c49b9a801461043c578063d94160e01461045c578063dd62ed3e14610495578063f0f165af146104db578063f2fde38b146104fb57600080fd5b806370a0823114610372578063715018a6146103a85780637d1db4a5146103bd5780638da5cb5b146103d35780638f9a55c0146103f157806395d89b411461040757600080fd5b80632d4103d6116101085780632d4103d61461027e578063313ce567146102a05780633a17304a146102c257806347062402146102e257806349bd5a5e146103055780635342acb41461033957600080fd5b806306fdde031461015b578063095ea7b3146101865780631694505e146101b657806318160ddd1461020257806323b872dd146102215780632b14ca561461024157600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017061051b565b60405161017d9190611715565b60405180910390f35b34801561019257600080fd5b506101a66101a136600461177b565b6105ad565b604051901515815260200161017d565b3480156101c257600080fd5b506101ea7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161017d565b34801561020e57600080fd5b506006545b60405190815260200161017d565b34801561022d57600080fd5b506101a661023c3660046117a7565b6105c4565b34801561024d57600080fd5b50600c546102649060ff8082169161010090041682565b6040805160ff93841681529290911660208301520161017d565b34801561028a57600080fd5b5061029e6102993660046117fd565b61062d565b005b3480156102ac57600080fd5b50600a5460405160ff909116815260200161017d565b3480156102ce57600080fd5b5061029e6102dd36600461182a565b610693565b3480156102ee57600080fd5b50600b546102649060ff8082169161010090041682565b34801561031157600080fd5b506101ea7f000000000000000000000000ffb9cef9e334773a5044b16c6342400e8f30816e81565b34801561034557600080fd5b506101a661035436600461187e565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561037e57600080fd5b5061021361038d36600461187e565b6001600160a01b031660009081526002602052604090205490565b3480156103b457600080fd5b5061029e6106fc565b3480156103c957600080fd5b50610213600e5481565b3480156103df57600080fd5b506000546001600160a01b03166101ea565b3480156103fd57600080fd5b5061021360105481565b34801561041357600080fd5b50610170610770565b34801561042857600080fd5b506101a661043736600461177b565b61077f565b34801561044857600080fd5b5061029e61045736600461189b565b61078c565b34801561046857600080fd5b506101a661047736600461187e565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156104a157600080fd5b506102136104b03660046118b6565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156104e757600080fd5b5061029e6104f63660046118ef565b61080e565b34801561050757600080fd5b5061029e61051636600461187e565b61083d565b60606008805461052a90611908565b80601f016020809104026020016040519081016040528092919081815260200182805461055690611908565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b5050505050905090565b60006105ba338484610927565b5060015b92915050565b60006105d1848484610a4b565b610623843361061e85604051806060016040528060288152602001611afb602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610e5e565b610927565b5060019392505050565b6000546001600160a01b031633146106605760405162461bcd60e51b815260040161065790611942565b60405180910390fd5b6013805460ff191683151590811790915560ff1680156106805750601254155b1561068f574360125560118190555b5050565b6000546001600160a01b031633146106bd5760405162461bcd60e51b815260040161065790611942565b600b805461ffff1990811661010060ff968716810260ff199081169290921797871697909717909255600c805490911692851690950216179116179055565b6000546001600160a01b031633146107265760405162461bcd60e51b815260040161065790611942565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606009805461052a90611908565b60006105ba338484610a4b565b6000546001600160a01b031633146107b65760405162461bcd60e51b815260040161065790611942565b600d805482151563010000000263ff000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061080390831515815260200190565b60405180910390a150565b6000546001600160a01b031633146108385760405162461bcd60e51b815260040161065790611942565b600f55565b6000546001600160a01b031633146108675760405162461bcd60e51b815260040161065790611942565b6001600160a01b0381166108cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610657565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610657565b6001600160a01b0382166109ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610657565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610aaf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610657565b6001600160a01b038216610b115760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610657565b60008111610b735760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610657565b6000546001600160a01b03848116911614801590610b9f57506000546001600160a01b03838116911614155b15610bf65760135460ff16610bf65760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610657565b30600090815260026020526040902054600e548110610c145750600e545b600f5481108015908190610c315750600d5462010000900460ff16155b8015610c6f57507f000000000000000000000000ffb9cef9e334773a5044b16c6342400e8f30816e6001600160a01b0316856001600160a01b031614155b8015610c845750600d546301000000900460ff165b15610c9757600f549150610c9782610e98565b6001600160a01b03851660009081526004602052604090205460019060ff1680610cd957506001600160a01b03851660009081526004602052604090205460ff165b15610ce2575060005b8015610e4a576001600160a01b03861660009081526005602052604090205460ff16158015610d2a57506001600160a01b03851660009081526005602052604090205460ff16155b15610e4a57600e54841115610d925760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610657565b7f000000000000000000000000ffb9cef9e334773a5044b16c6342400e8f30816e6001600160a01b0316856001600160a01b031614610e4a576010546001600160a01b038616600090815260026020526040902054610df1908661198d565b1115610e4a5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610657565b610e5686868684611051565b505050505050565b60008184841115610e825760405162461bcd60e51b81526004016106579190611715565b506000610e8f84866119a0565b95945050505050565b600d805462ff0000191662010000179055600c54600b5460009161010080820460ff90811693918204811692610ed29290821691166119b3565b610edc91906119b3565b610ee691906119b3565b610ef19060026119cc565b600c54600b5460ff92831693506000928492610f119290821691166119b3565b610f1e9060ff16856119ef565b610f289190611a06565b90506000610f3682856119a0565b905047610f4282611154565b6000610f4e82476119a0565b600c54600b54919250600091610f6a9160ff90811691166119b3565b610f779060ff16876119a0565b610f819083611a06565b600c54600b54919250600091610f9d9160ff90811691166119b3565b610faa9060ff16836119ef565b90508015610fbc57610fbc868261130c565b600c54600b54600091610fde9160ff61010092839004811692909104166119b3565b60ff16610fec8460026119ef565b610ff691906119ef565b9050801561103a576007546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611038573d6000803e3d6000fd5b505b5050600d805462ff00001916905550505050505050565b801561113357611067600d805461ffff19169055565b7f000000000000000000000000ffb9cef9e334773a5044b16c6342400e8f30816e6001600160a01b0316846001600160a01b0316036110cd576110cd600b54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b7f000000000000000000000000ffb9cef9e334773a5044b16c6342400e8f30816e6001600160a01b0316836001600160a01b03160361113357611133600c54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b61113e8484846113ec565b61114e600d805461ffff19169055565b50505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061118957611189611a28565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611207573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122b9190611a3e565b8160018151811061123e5761123e611a28565b60200260200101906001600160a01b031690816001600160a01b031681525050611289307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610927565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906112de908590600090869030904290600401611a5b565b600060405180830381600087803b1580156112f857600080fd5b505af1158015610e56573d6000803e3d6000fd5b611337307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610927565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156113c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113e59190611acc565b5050505050565b60008060006113fa846114d4565b6001600160a01b03891660009081526002602052604090205492955090935091506114259085611516565b6001600160a01b038088166000908152600260205260408082209390935590871681522054611454908461155f565b6001600160a01b038616600090815260026020526040902055611476826115be565b61147f816115be565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516114c491815260200190565b60405180910390a3505050505050565b6000806000806114e3856115eb565b905060006114f08661160c565b90506000611508826115028986611516565b90611516565b979296509094509092505050565b600061155883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e5e565b9392505050565b60008061156c838561198d565b9050838110156115585760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610657565b306000908152600260205260409020546115d8908261155f565b3060009081526002602052604090205550565b600d546000906105be9060649061160690859060ff16611628565b906116aa565b600d546000906105be90606490611606908590610100900460ff165b60008260000361163a575060006105be565b600061164683856119ef565b9050826116538583611a06565b146115585760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610657565b600061155883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250600081836117085760405162461bcd60e51b81526004016106579190611715565b506000610e8f8486611a06565b600060208083528351808285015260005b8181101561174257858101830151858201604001528201611726565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461177857600080fd5b50565b6000806040838503121561178e57600080fd5b823561179981611763565b946020939093013593505050565b6000806000606084860312156117bc57600080fd5b83356117c781611763565b925060208401356117d781611763565b929592945050506040919091013590565b803580151581146117f857600080fd5b919050565b6000806040838503121561181057600080fd5b611799836117e8565b803560ff811681146117f857600080fd5b6000806000806080858703121561184057600080fd5b61184985611819565b935061185760208601611819565b925061186560408601611819565b915061187360608601611819565b905092959194509250565b60006020828403121561189057600080fd5b813561155881611763565b6000602082840312156118ad57600080fd5b611558826117e8565b600080604083850312156118c957600080fd5b82356118d481611763565b915060208301356118e481611763565b809150509250929050565b60006020828403121561190157600080fd5b5035919050565b600181811c9082168061191c57607f821691505b60208210810361193c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105be576105be611977565b818103818111156105be576105be611977565b60ff81811683821601908111156105be576105be611977565b60ff81811683821602908116908181146119e8576119e8611977565b5092915050565b80820281158282048414176105be576105be611977565b600082611a2357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a5057600080fd5b815161155881611763565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611aab5784516001600160a01b031683529383019391830191600101611a86565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611ae157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200bcfc1a842885ecef20943d583dae273b0da380022f673d18f30b9262d64e0aa64736f6c63430008130033

Deployed Bytecode Sourcemap

25446:13354:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28315:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29219:193;;;;;;;;;;-1:-1:-1;29219:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;29219:193:0;1023:187:1;26382:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;26382:51:0;1215:230:1;28592:95:0;;;;;;;;;;-1:-1:-1;28672:7:0;;28592:95;;;1596:25:1;;;1584:2;1569:18;28592:95:0;1450:177:1;29420:446:0;;;;;;;;;;-1:-1:-1;29420:446:0;;;;;:::i;:::-;;:::i;26281:22::-;;;;;;;;;;-1:-1:-1;26281:22:0;;;;;;;;;;;;;;;;;;;2289:4:1;2277:17;;;2259:36;;2331:17;;;;2326:2;2311:18;;2304:45;2232:18;26281:22:0;2093:262:1;38546:251:0;;;;;;;;;;-1:-1:-1;38546:251:0;;;;;:::i;:::-;;:::i;:::-;;28501:83;;;;;;;;;;-1:-1:-1;28567:9:0;;28501:83;;28567:9;;;;2920:36:1;;2908:2;2893:18;28501:83:0;2778:184:1;29878:357:0;;;;;;;;;;-1:-1:-1;29878:357:0;;;;;:::i;:::-;;:::i;26254:20::-;;;;;;;;;;-1:-1:-1;26254:20:0;;;;;;;;;;;;;;;26440:38;;;;;;;;;;;;;;;32136:124;;;;;;;;;;-1:-1:-1;32136:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;32225:27:0;32201:4;32225:27;;;:18;:27;;;;;;;;;32136:124;28695:117;;;;;;;;;;-1:-1:-1;28695:117:0;;;;;:::i;:::-;-1:-1:-1;;;;;28788:16:0;28761:7;28788:16;;;:7;:16;;;;;;;28695:117;15510:148;;;;;;;;;;;;;:::i;26557:55::-;;;;;;;;;;;;;;;;14868:79;;;;;;;;;;-1:-1:-1;14906:7:0;14933:6;-1:-1:-1;;;;;14933:6:0;14868:79;;26710:57;;;;;;;;;;;;;;;;28406:87;;;;;;;;;;;;;:::i;28820:199::-;;;;;;;;;;-1:-1:-1;28820:199:0;;;;;:::i;:::-;;:::i;30393:171::-;;;;;;;;;;-1:-1:-1;30393:171:0;;;;;:::i;:::-;;:::i;32268:128::-;;;;;;;;;;-1:-1:-1;32268:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;32359:29:0;32335:4;32359:29;;;:20;:29;;;;;;;;;32268:128;29027:184;;;;;;;;;;-1:-1:-1;29027:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29176:18:0;;;29144:7;29176:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29027:184;30243:140;;;;;;;;;;-1:-1:-1;30243:140:0;;;;;:::i;:::-;;:::i;15813:281::-;;;;;;;;;;-1:-1:-1;15813:281:0;;;;;:::i;:::-;;:::i;28315:83::-;28352:13;28385:5;28378:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28315:83;:::o;29219:193::-;29321:4;29343:39;7712:10;29366:7;29375:6;29343:8;:39::i;:::-;-1:-1:-1;29400:4:0;29219:193;;;;;:::o;29420:446::-;29552:4;29569:36;29579:6;29587:9;29598:6;29569:9;:36::i;:::-;29616:220;29639:6;7712:10;29687:138;29743:6;29687:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29687:19:0;;;;;;:11;:19;;;;;;;;7712:10;29687:33;;;;;;;;;;:37;:138::i;:::-;29616:8;:220::i;:::-;-1:-1:-1;29854:4:0;29420:446;;;;;:::o;38546:251::-;15080:6;;-1:-1:-1;;;;;15080:6:0;7712:10;15080:22;15072:67;;;;-1:-1:-1;;;15072:67:0;;;;;;;:::i;:::-;;;;;;;;;38633:11:::1;:21:::0;;-1:-1:-1;;38633:21:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;38668:11:::0;:30;::::1;;;-1:-1:-1::0;38683:10:0::1;::::0;:15;38668:30:::1;38665:125;;;38727:12;38714:10;:25:::0;38754:10:::1;:24:::0;;;38665:125:::1;38546:251:::0;;:::o;29878:357::-;15080:6;;-1:-1:-1;;;;;15080:6:0;7712:10;15080:22;15072:67;;;;-1:-1:-1;;;15072:67:0;;;;;;;:::i;:::-;30060:6:::1;:32:::0;;-1:-1:-1;;30103:32:0;;;30060::::1;;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;30103:32:0;;;;;;;;;::::1;::::0;;;::::1;::::0;;;30148:7:::1;:34:::0;;30193;;;30148;;::::1;::::0;;::::1;30193::::0;;;::::1;;::::0;;29878:357::o;15510:148::-;15080:6;;-1:-1:-1;;;;;15080:6:0;7712:10;15080:22;15072:67;;;;-1:-1:-1;;;15072:67:0;;;;;;;:::i;:::-;15617:1:::1;15601:6:::0;;15580:40:::1;::::0;-1:-1:-1;;;;;15601:6:0;;::::1;::::0;15580:40:::1;::::0;15617:1;;15580:40:::1;15648:1;15631:19:::0;;-1:-1:-1;;;;;;15631:19:0::1;::::0;;15510:148::o;28406:87::-;28445:13;28478:7;28471:14;;;;;:::i;28820:199::-;28925:4;28947:42;7712:10;28971:9;28982:6;28947:9;:42::i;30393:171::-;15080:6;;-1:-1:-1;;;;;15080:6:0;7712:10;15080:22;15072:67;;;;-1:-1:-1;;;15072:67:0;;;;;;;:::i;:::-;30470:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30470:32:0;;::::1;;::::0;;30518:38:::1;::::0;::::1;::::0;::::1;::::0;30494:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;30518:38:0::1;;;;;;;;30393:171:::0;:::o;30243:140::-;15080:6;;-1:-1:-1;;;;;15080:6:0;7712:10;15080:22;15072:67;;;;-1:-1:-1;;;15072:67:0;;;;;;;:::i;:::-;30334:29:::1;:41:::0;30243:140::o;15813:281::-;15080:6;;-1:-1:-1;;;;;15080:6:0;7712:10;15080:22;15072:67;;;;-1:-1:-1;;;15072:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15916:22:0;::::1;15894:110;;;::::0;-1:-1:-1;;;15894:110:0;;5697:2:1;15894:110:0::1;::::0;::::1;5679:21:1::0;5736:2;5716:18;;;5709:30;5775:34;5755:18;;;5748:62;-1:-1:-1;;;5826:18:1;;;5819:36;5872:19;;15894:110:0::1;5495:402:1::0;15894:110:0::1;16041:6;::::0;;16020:38:::1;::::0;-1:-1:-1;;;;;16020:38:0;;::::1;::::0;16041:6;::::1;::::0;16020:38:::1;::::0;::::1;16069:6;:17:::0;;-1:-1:-1;;;;;;16069:17:0::1;-1:-1:-1::0;;;;;16069:17:0;;;::::1;::::0;;;::::1;::::0;;15813:281::o;32404:371::-;-1:-1:-1;;;;;32531:19:0;;32523:68;;;;-1:-1:-1;;;32523:68:0;;6104:2:1;32523:68:0;;;6086:21:1;6143:2;6123:18;;;6116:30;6182:34;6162:18;;;6155:62;-1:-1:-1;;;6233:18:1;;;6226:34;6277:19;;32523:68:0;5902:400:1;32523:68:0;-1:-1:-1;;;;;32610:21:0;;32602:68;;;;-1:-1:-1;;;32602:68:0;;6509:2:1;32602:68:0;;;6491:21:1;6548:2;6528:18;;;6521:30;6587:34;6567:18;;;6560:62;-1:-1:-1;;;6638:18:1;;;6631:32;6680:19;;32602:68:0;6307:398:1;32602:68:0;-1:-1:-1;;;;;32683:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32735:32;;1596:25:1;;;32735:32:0;;1569:18:1;32735:32:0;;;;;;;32404:371;;;:::o;32783:2331::-;-1:-1:-1;;;;;32905:18:0;;32897:68;;;;-1:-1:-1;;;32897:68:0;;6912:2:1;32897:68:0;;;6894:21:1;6951:2;6931:18;;;6924:30;6990:34;6970:18;;;6963:62;-1:-1:-1;;;7041:18:1;;;7034:35;7086:19;;32897:68:0;6710:401:1;32897:68:0;-1:-1:-1;;;;;32984:16:0;;32976:64;;;;-1:-1:-1;;;32976:64:0;;7318:2:1;32976:64:0;;;7300:21:1;7357:2;7337:18;;;7330:30;7396:34;7376:18;;;7369:62;-1:-1:-1;;;7447:18:1;;;7440:33;7490:19;;32976:64:0;7116:399:1;32976:64:0;33068:1;33059:6;:10;33051:64;;;;-1:-1:-1;;;33051:64:0;;7722:2:1;33051:64:0;;;7704:21:1;7761:2;7741:18;;;7734:30;7800:34;7780:18;;;7773:62;-1:-1:-1;;;7851:18:1;;;7844:39;7900:19;;33051:64:0;7520:405:1;33051:64:0;14906:7;14933:6;-1:-1:-1;;;;;33141:15:0;;;14933:6;;33141:15;;;;:32;;-1:-1:-1;14906:7:0;14933:6;-1:-1:-1;;;;;33160:13:0;;;14933:6;;33160:13;;33141:32;33136:88;;;33184:11;;;;33176:48;;;;-1:-1:-1;;;33176:48:0;;8132:2:1;33176:48:0;;;8114:21:1;8171:2;8151:18;;;8144:30;8210:26;8190:18;;;8183:54;8254:18;;33176:48:0;7930:348:1;33176:48:0;33608:4;33559:28;28788:16;;;:7;:16;;;;;;33655:12;;33631:36;;33627:104;;-1:-1:-1;33707:12:0;;33627:104;33807:29;;33770:66;;;;;;;33865:53;;-1:-1:-1;33902:16:0;;;;;;;33901:17;33865:53;:91;;;;;33943:13;-1:-1:-1;;;;;33935:21:0;:4;-1:-1:-1;;;;;33935:21:0;;;33865:91;:129;;;;-1:-1:-1;33973:21:0;;;;;;;33865:129;33847:318;;;34044:29;;34021:52;;34117:36;34132:20;34117:14;:36::i;:::-;-1:-1:-1;;;;;34358:24:0;;34238:12;34358:24;;;:18;:24;;;;;;34253:4;;34358:24;;;:50;;-1:-1:-1;;;;;;34386:22:0;;;;;;:18;:22;;;;;;;;34358:50;34354:98;;;-1:-1:-1;34435:5:0;34354:98;34466:7;34462:536;;;-1:-1:-1;;;;;34495:26:0;;;;;;:20;:26;;;;;;;;34494:27;:56;;;;-1:-1:-1;;;;;;34526:24:0;;;;;;:20;:24;;;;;;;;34525:25;34494:56;34490:497;;;34611:12;;34601:6;:22;;34571:136;;;;-1:-1:-1;;;34571:136:0;;8485:2:1;34571:136:0;;;8467:21:1;8524:2;8504:18;;;8497:30;8563:34;8543:18;;;8536:62;-1:-1:-1;;;8614:18:1;;;8607:38;8662:19;;34571:136:0;8283:404:1;34571:136:0;34736:13;-1:-1:-1;;;;;34730:19:0;:2;-1:-1:-1;;;;;34730:19:0;;34726:228;;34834:14;;-1:-1:-1;;;;;28788:16:0;;28761:7;28788:16;;;:7;:16;;;;;;34808:22;;:6;:22;:::i;:::-;:40;;34774:160;;;;-1:-1:-1;;;34774:160:0;;9156:2:1;34774:160:0;;;9138:21:1;9195:2;9175:18;;;9168:30;9234:34;9214:18;;;9207:62;-1:-1:-1;;;9285:18:1;;;9278:32;9327:19;;34774:160:0;8954:398:1;34774:160:0;35065:41;35080:4;35086:2;35090:6;35098:7;35065:14;:41::i;:::-;32886:2228;;;32783:2331;;;:::o;4376:226::-;4496:7;4532:12;4524:6;;;;4516:29;;;;-1:-1:-1;;;4516:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4556:9:0;4568:5;4572:1;4568;:5;:::i;:::-;4556:17;4376:226;-1:-1:-1;;;;;4376:226:0:o;35122:1195::-;27074:16;:23;;-1:-1:-1;;27074:23:0;;;;;35325:7:::1;:17:::0;35306:6:::1;:16:::0;27074:23;;;35325:17;;::::1;27074:23:::0;35325:17;;::::1;::::0;35306:16;;::::1;::::0;::::1;::::0;35267:36:::1;::::0;35286:17;;::::1;::::0;35267:16:::1;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;35266:81;::::0;35346:1:::1;35266:81;:::i;:::-;35423:7;:17:::0;35404:6:::1;:16:::0;35244:103:::1;::::0;;::::1;::::0;-1:-1:-1;35358:32:0::1;::::0;35244:103;;35404:36:::1;::::0;35423:17;;::::1;::::0;35404:16:::1;:36;:::i;:::-;35394:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;35393:63;;;;:::i;:::-;35358:98:::0;-1:-1:-1;35467:14:0::1;35484:33;35358:98:::0;35484:6;:33:::1;:::i;:::-;35467:50:::0;-1:-1:-1;35555:21:0::1;35589:24;35467:50:::0;35589:16:::1;:24::i;:::-;35626:20;35649:38;35673:14:::0;35649:21:::1;:38;:::i;:::-;35770:7;:17:::0;35751:6:::1;:16:::0;35626:61;;-1:-1:-1;35698:19:0::1;::::0;35751:36:::1;::::0;35770:17:::1;::::0;;::::1;::::0;35751:16:::1;:36;:::i;:::-;35736:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;35720:69;::::0;:12;:69:::1;:::i;:::-;35866:7;:17:::0;35847:6:::1;:16:::0;35698:91;;-1:-1:-1;35800:29:0::1;::::0;35847:36:::1;::::0;35866:17:::1;::::0;;::::1;::::0;35847:16:::1;:36;:::i;:::-;35832:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;35800:84:::0;-1:-1:-1;35901:25:0;;35897:160:::1;;35984:61;35997:24;36023:21;35984:12;:61::i;:::-;36164:7;:17:::0;36145:6:::1;:16:::0;36103:20:::1;::::0;36145:36:::1;::::0;36164:17:::1;;::::0;;;::::1;::::0;::::1;::::0;36145:16;;::::1;;:36;:::i;:::-;36126:56;;:15;:11:::0;36140:1:::1;36126:15;:::i;:::-;:56;;;;:::i;:::-;36103:79:::0;-1:-1:-1;36208:16:0;;36204:98:::1;;36249:17;::::0;36241:49:::1;::::0;-1:-1:-1;;;;;36249:17:0;;::::1;::::0;36241:49;::::1;;;::::0;36277:12;;36249:17:::1;36241:49:::0;36249:17;36241:49;36277:12;36249:17;36241:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36204:98;-1:-1:-1::0;;27120:16:0;:24;;-1:-1:-1;;27120:24:0;;;-1:-1:-1;;;;;;;35122:1195:0:o;37522:472::-;37677:7;37673:230;;;37701:14;31793:13;:17;;-1:-1:-1;;31821:17:0;;;31750:103;37701:14;37744:13;-1:-1:-1;;;;;37734:23:0;:6;-1:-1:-1;;;;;37734:23:0;;37730:72;;37778:8;31914:6;:16;31898:13;:32;;31914:16;31957;;;31914;31957;;;31941:32;;;-1:-1:-1;;31941:32:0;;;31914:16;;31941:32;;;;;;;;;;31861:128;37778:8;37833:13;-1:-1:-1;;;;;37820:26:0;:9;-1:-1:-1;;;;;37820:26:0;;37816:76;;37867:9;32051:7;:17;32035:13;:33;;32051:17;32095;;;32051;32095;;;32079:33;;;-1:-1:-1;;32079:33:0;;;32051:17;;32079:33;;;;;;;;;;31997:131;37867:9;37915:44;37933:6;37941:9;37952:6;37915:17;:44::i;:::-;37972:14;31793:13;:17;;-1:-1:-1;;31821:17:0;;;31750:103;37972:14;37522:472;;;;:::o;36325:589::-;36475:16;;;36489:1;36475:16;;;;;;;;36451:21;;36475:16;;;;;;;;;;-1:-1:-1;36475:16:0;36451:40;;36520:4;36502;36507:1;36502:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36502:23:0;;;-1:-1:-1;;;;;36502:23:0;;;;;36546:15;-1:-1:-1;;;;;36546:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36536:4;36541:1;36536:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;36536:32:0;;;-1:-1:-1;;;;;36536:32:0;;;;;36581:62;36598:4;36613:15;36631:11;36581:8;:62::i;:::-;36682:224;;-1:-1:-1;;;36682:224:0;;-1:-1:-1;;;;;36682:15:0;:66;;;;:224;;36763:11;;36789:1;;36833:4;;36860;;36880:15;;36682:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36922:519;37070:62;37087:4;37102:15;37120:11;37070:8;:62::i;:::-;37175:258;;-1:-1:-1;;;37175:258:0;;37247:4;37175:258;;;12114:34:1;;;12164:18;;;12157:34;;;37293:1:0;12207:18:1;;;12200:34;;;12250:18;;;12243:34;12293:19;;;12286:44;37407:15:0;12346:19:1;;;12339:35;37175:15:0;-1:-1:-1;;;;;37175:31:0;;;;37214:9;;12048:19:1;;37175:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36922:519;;:::o;38002:536::-;38149:23;38187:18;38220:15;38249:20;38261:7;38249:11;:20::i;:::-;-1:-1:-1;;;;;38300:15:0;;;;;;:7;:15;;;;;;38134:135;;-1:-1:-1;38134:135:0;;-1:-1:-1;38134:135:0;-1:-1:-1;38300:28:0;;38320:7;38300:19;:28::i;:::-;-1:-1:-1;;;;;38282:15:0;;;;;;;:7;:15;;;;;;:46;;;;38360:18;;;;;;;:39;;38383:15;38360:22;:39::i;:::-;-1:-1:-1;;;;;38339:18:0;;;;;;:7;:18;;;;;:60;38410:26;38425:10;38410:14;:26::i;:::-;38447:23;38462:7;38447:14;:23::i;:::-;38503:9;-1:-1:-1;;;;;38486:44:0;38495:6;-1:-1:-1;;;;;38486:44:0;;38514:15;38486:44;;;;1596:25:1;;1584:2;1569:18;;1450:177;38486:44:0;;;;;;;;38123:415;;;38002:536;;;:::o;30666:429::-;30767:7;30789;30811;30846:18;30867:30;30889:7;30867:21;:30::i;:::-;30846:51;;30908:15;30926:30;30948:7;30926:21;:30::i;:::-;30908:48;-1:-1:-1;30967:23:0;30993:36;30908:48;30993:23;:7;31005:10;30993:11;:23::i;:::-;:27;;:36::i;:::-;30967:62;31067:10;;-1:-1:-1;31079:7:0;;-1:-1:-1;30666:429:0;;-1:-1:-1;;;30666:429:0:o;3937:136::-;3995:7;4022:43;4026:1;4029;4022:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4015:50;3937:136;-1:-1:-1;;;3937:136:0:o;3473:181::-;3531:7;;3563:5;3567:1;3563;:5;:::i;:::-;3551:17;;3592:1;3587;:6;;3579:46;;;;-1:-1:-1;;;3579:46:0;;12898:2:1;3579:46:0;;;12880:21:1;12937:2;12917:18;;;12910:30;12976:29;12956:18;;;12949:57;13023:18;;3579:46:0;12696:351:1;31103:134:0;31207:4;31191:22;;;;:7;:22;;;;;;:38;;31218:10;31191:26;:38::i;:::-;31182:4;31166:22;;;;:7;:22;;;;;:63;-1:-1:-1;31103:134:0:o;31381:174::-;31522:13;;31478:7;;31510:37;;31541:5;;31510:26;;:7;;31522:13;;31510:11;:26::i;:::-;:30;;:37::i;31563:174::-;31704:13;;31660:7;;31692:37;;31723:5;;31692:26;;:7;;31704:13;;;;;4861:252;4919:7;4945:1;4950;4945:6;4941:47;;-1:-1:-1;4975:1:0;4968:8;;4941:47;5000:9;5012:5;5016:1;5012;:5;:::i;:::-;5000:17;-1:-1:-1;5045:1:0;5036:5;5040:1;5000:17;5036:5;:::i;:::-;:10;5028:56;;;;-1:-1:-1;;;5028:56:0;;13254:2:1;5028:56:0;;;13236:21:1;13293:2;13273:18;;;13266:30;13332:34;13312:18;;;13305:62;-1:-1:-1;;;13383:18:1;;;13376:31;13424:19;;5028:56:0;13052:397:1;5356:132:0;5414:7;5441:39;5445:1;5448;5441:39;;;;;;;;;;;;;;;;;6104:7;6139:12;6132:5;6124:28;;;;-1:-1:-1;;;6124:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6163:9:0;6175:5;6179:1;6175;: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;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2454:60;2360:160;;;:::o;2525:248::-;2590:6;2598;2651:2;2639:9;2630:7;2626:23;2622:32;2619:52;;;2667:1;2664;2657:12;2619:52;2690:26;2706:9;2690:26;:::i;2967:156::-;3033:20;;3093:4;3082:16;;3072:27;;3062:55;;3113:1;3110;3103:12;3128:393;3206:6;3214;3222;3230;3283:3;3271:9;3262:7;3258:23;3254:33;3251:53;;;3300:1;3297;3290:12;3251:53;3323:27;3340:9;3323:27;:::i;:::-;3313:37;;3369:36;3401:2;3390:9;3386:18;3369:36;:::i;:::-;3359:46;;3424:36;3456:2;3445:9;3441:18;3424:36;:::i;:::-;3414:46;;3479:36;3511:2;3500:9;3496:18;3479:36;:::i;:::-;3469:46;;3128:393;;;;;;;:::o;3734:247::-;3793:6;3846:2;3834:9;3825:7;3821:23;3817:32;3814:52;;;3862:1;3859;3852:12;3814:52;3901:9;3888:23;3920:31;3945:5;3920:31;:::i;3986:180::-;4042:6;4095:2;4083:9;4074:7;4070:23;4066:32;4063:52;;;4111:1;4108;4101:12;4063:52;4134:26;4150:9;4134:26;:::i;4171:388::-;4239:6;4247;4300:2;4288:9;4279:7;4275:23;4271:32;4268:52;;;4316:1;4313;4306:12;4268:52;4355:9;4342:23;4374:31;4399:5;4374:31;:::i;:::-;4424:5;-1:-1:-1;4481:2:1;4466:18;;4453:32;4494:33;4453:32;4494:33;:::i;:::-;4546:7;4536:17;;;4171:388;;;;;:::o;4564:180::-;4623:6;4676:2;4664:9;4655:7;4651:23;4647:32;4644:52;;;4692:1;4689;4682:12;4644:52;-1:-1:-1;4715:23:1;;4564:180;-1:-1:-1;4564:180:1:o;4749:380::-;4828:1;4824:12;;;;4871;;;4892:61;;4946:4;4938:6;4934:17;4924:27;;4892:61;4999:2;4991:6;4988:14;4968:18;4965:38;4962:161;;5045:10;5040:3;5036:20;5033:1;5026:31;5080:4;5077:1;5070:15;5108:4;5105:1;5098:15;4962:161;;4749:380;;;:::o;5134:356::-;5336:2;5318:21;;;5355:18;;;5348:30;5414:34;5409:2;5394:18;;5387:62;5481:2;5466:18;;5134:356::o;8692:127::-;8753:10;8748:3;8744:20;8741:1;8734:31;8784:4;8781:1;8774:15;8808:4;8805:1;8798:15;8824:125;8889:9;;;8910:10;;;8907:36;;;8923:18;;:::i;9357:128::-;9424:9;;;9445:11;;;9442:37;;;9459:18;;:::i;9490:148::-;9578:4;9557:12;;;9571;;;9553:31;;9596:13;;9593:39;;;9612:18;;:::i;9643:225::-;9747:4;9726:12;;;9740;;;9722:31;9773:22;;;;9814:24;;;9804:58;;9842:18;;:::i;:::-;9804:58;9643:225;;;;:::o;9873:168::-;9946:9;;;9977;;9994:15;;;9988:22;;9974:37;9964:71;;10015:18;;:::i;10046:217::-;10086:1;10112;10102:132;;10156:10;10151:3;10147:20;10144:1;10137:31;10191:4;10188:1;10181:15;10219:4;10216:1;10209:15;10102:132;-1:-1:-1;10248:9:1;;10046:217::o;10400:127::-;10461:10;10456:3;10452:20;10449:1;10442:31;10492:4;10489:1;10482:15;10516:4;10513:1;10506:15;10532:251;10602:6;10655:2;10643:9;10634:7;10630:23;10626:32;10623:52;;;10671:1;10668;10661:12;10623:52;10703:9;10697:16;10722:31;10747:5;10722:31;:::i;10788:980::-;11050:4;11098:3;11087:9;11083:19;11129:6;11118:9;11111:25;11155:2;11193:6;11188:2;11177:9;11173:18;11166:34;11236:3;11231:2;11220:9;11216:18;11209:31;11260:6;11295;11289:13;11326:6;11318;11311:22;11364:3;11353:9;11349:19;11342:26;;11403:2;11395:6;11391:15;11377:29;;11424:1;11434:195;11448:6;11445:1;11442:13;11434:195;;;11513:13;;-1:-1:-1;;;;;11509:39:1;11497:52;;11604:15;;;;11569:12;;;;11545:1;11463:9;11434:195;;;-1:-1:-1;;;;;;;11685:32:1;;;;11680:2;11665:18;;11658:60;-1:-1:-1;;;11749:3:1;11734:19;11727:35;11646:3;10788:980;-1:-1:-1;;;10788:980:1:o;12385:306::-;12473:6;12481;12489;12542:2;12530:9;12521:7;12517:23;12513:32;12510:52;;;12558:1;12555;12548:12;12510:52;12587:9;12581:16;12571:26;;12637:2;12626:9;12622:18;12616:25;12606:35;;12681:2;12670:9;12666:18;12660:25;12650:35;;12385:306;;;;;:::o

Swarm Source

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