ETH Price: $2,626.68 (+5.77%)
Gas: 5 Gwei

Token

Detox (DETOX)
 

Overview

Max Total Supply

777,777,777 DETOX

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,142,695.711418809197252918 DETOX

Value
$0.00
0xbf96ee6b4ea0c93883fcb8c7d07bd7e696a84c8e
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:
Detox

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-05-10
*/

/**

Twitter: https://twitter.com/detoxtoken/
Telegram: https://t.me/DETOXERC
Website: https://detoxtoken.xyz

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }


    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

    function WETH() external pure returns (address);

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

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

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

    bool private swapping;

    address public marketingWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;

    /******************/

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Detox", "DETOX") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 777_777_777 * 1e18;

        maxTransactionAmount =  totalSupply * 3 / 100; // 3% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 3 / 100; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;

        marketingWallet = address(0xeCe722a3C2F5609415AFf61787d0dB96840aA23D); // set as marketing wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

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

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 25, "Buy fees cannot be higher than 25%.");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees <= 25, "Sell fees cannot be higher than 25%.");
    }

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

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }


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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForMarketing = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing = (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForMarketing = (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees> 0) {
                super._transfer(from, address(this), fees);
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
            }

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            marketingWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForETH(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805462ffffff191660011790553480156200002057600080fd5b5060405180604001604052806005815260200164088cae8def60db1b815250604051806040016040528060058152602001640888aa89eb60db1b81525081600390816200006e91906200068b565b5060046200007d82826200068b565b5050506200009a620000946200038360201b60201c565b62000387565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000bc816001620003d9565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000107573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012d919062000757565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a1919062000757565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000215919062000757565b6001600160a01b031660a081905262000230906001620003d9565b60008080806b02835cd9c6d6f2156b2400006064620002518260036200079f565b6200025d9190620007bf565b60075560646200026f8260036200079f565b6200027b9190620007bf565b6009556127106200028e8260036200079f565b6200029a9190620007bf565b600855600c859055600d849055620002b38486620007e2565b600b55600f8390556010829055620002cc8284620007e2565b600e55600680546001600160a01b03191673ece722a3c2f5609415aff61787d0db96840aa23d179055620003146200030c6005546001600160a01b031690565b600162000453565b6200032130600162000453565b6200033061dead600162000453565b6200034f620003476005546001600160a01b031690565b6001620003d9565b6200035c306001620003d9565b6200036b61dead6001620003d9565b620003773382620004fd565b505050505050620007f8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004285760405162461bcd60e51b81526020600482018190526024820152600080516020620027ea83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200049e5760405162461bcd60e51b81526020600482018190526024820152600080516020620027ea83398151915260448201526064016200041f565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005555760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200041f565b8060026000828254620005699190620007e2565b90915550506001600160a01b0382166000908152602081905260408120805483929062000598908490620007e2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200061257607f821691505b6020821081036200063357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005e257600081815260208120601f850160051c81016020861015620006625750805b601f850160051c820191505b8181101562000683578281556001016200066e565b505050505050565b81516001600160401b03811115620006a757620006a7620005e7565b620006bf81620006b88454620005fd565b8462000639565b602080601f831160018114620006f75760008415620006de5750858301515b600019600386901b1c1916600185901b17855562000683565b600085815260208120601f198616915b82811015620007285788860151825594840194600190910190840162000707565b5085821015620007475787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076a57600080fd5b81516001600160a01b03811681146200078257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007b957620007b962000789565b92915050565b600082620007dd57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007b957620007b962000789565b60805160a051611f9462000856600039600081816103f2015281816112ea015281816114fb0152818161160b015281816116b4015261176e01526000818161031501528181611a1d01528181611ad60152611b150152611f946000f3fe60806040526004361061024a5760003560e01c806375f0a87411610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106dc578063e2f4560514610722578063f11a24d314610738578063f2fde38b1461074e578063f63743421461076e578063f8b45b051461078457600080fd5b8063c024666814610650578063c18bc19514610670578063c8c8ebe414610690578063d257b34f146106a6578063d85ba063146106c657600080fd5b8063924de9b7116100fd578063924de9b7146105bc57806395d89b41146105dc578063a9059cbb146105f1578063aacebbe314610611578063bbc0c7421461063157600080fd5b806375f0a8741461053d5780637bce5a041461055d5780638a8c523c146105735780638da5cb5b1461058857806392136913146105a657600080fd5b806349bd5a5e116101c75780636ddd17131161018b5780636ddd17131461049d57806370a08231146104bd578063715018a6146104f3578063751039fc146105085780637571336a1461051d57600080fd5b806349bd5a5e146103e05780634a62bb65146104145780634fbee1931461042e57806366ca9b83146104675780636a486a8e1461048757600080fd5b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461036e57806323b872dd1461038e57806327c8f835146103ae578063313ce567146103c457600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004611b8d565b61079a565b005b34801561028457600080fd5b5061028d610846565b60405161029a9190611baf565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004611c12565b6108d8565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611c3e565b60126020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610389366004611c5b565b6108ef565b34801561039a57600080fd5b506102c36103a9366004611c74565b6109cc565b3480156103ba57600080fd5b5061033761dead81565b3480156103d057600080fd5b506040516012815260200161029a565b3480156103ec57600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b34801561042057600080fd5b50600a546102c39060ff1681565b34801561043a57600080fd5b506102c3610449366004611c3e565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561047357600080fd5b50610276610482366004611b8d565b610a76565b34801561049357600080fd5b50610360600e5481565b3480156104a957600080fd5b50600a546102c39062010000900460ff1681565b3480156104c957600080fd5b506103606104d8366004611c3e565b6001600160a01b031660009081526020819052604090205490565b3480156104ff57600080fd5b50610276610b15565b34801561051457600080fd5b506102c3610b4b565b34801561052957600080fd5b50610276610538366004611cc5565b610b88565b34801561054957600080fd5b50600654610337906001600160a01b031681565b34801561056957600080fd5b50610360600c5481565b34801561057f57600080fd5b50610276610bdd565b34801561059457600080fd5b506005546001600160a01b0316610337565b3480156105b257600080fd5b50610360600f5481565b3480156105c857600080fd5b506102766105d7366004611cfa565b610c1a565b3480156105e857600080fd5b5061028d610c60565b3480156105fd57600080fd5b506102c361060c366004611c12565b610c6f565b34801561061d57600080fd5b5061027661062c366004611c3e565b610c7c565b34801561063d57600080fd5b50600a546102c390610100900460ff1681565b34801561065c57600080fd5b5061027661066b366004611cc5565b610d03565b34801561067c57600080fd5b5061027661068b366004611c5b565b610d8c565b34801561069c57600080fd5b5061036060075481565b3480156106b257600080fd5b506102c36106c1366004611c5b565b610e5d565b3480156106d257600080fd5b50610360600b5481565b3480156106e857600080fd5b506103606106f7366004611d15565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061036060085481565b34801561074457600080fd5b50610360600d5481565b34801561075a57600080fd5b50610276610769366004611c3e565b610fb4565b34801561077a57600080fd5b5061036060105481565b34801561079057600080fd5b5061036060095481565b6005546001600160a01b031633146107cd5760405162461bcd60e51b81526004016107c490611d4e565b60405180910390fd5b600f82905560108190556107e18183611d99565b600e819055601910156108425760405162461bcd60e51b8152602060048201526024808201527f53656c6c20666565732063616e6e6f7420626520686967686572207468616e20604482015263191a929760e11b60648201526084016107c4565b5050565b60606003805461085590611dac565b80601f016020809104026020016040519081016040528092919081815260200182805461088190611dac565b80156108ce5780601f106108a3576101008083540402835291602001916108ce565b820191906000526020600020905b8154815290600101906020018083116108b157829003601f168201915b5050505050905090565b60006108e533848461104f565b5060015b92915050565b6005546001600160a01b031633146109195760405162461bcd60e51b81526004016107c490611d4e565b670de0b6b3a76400006103e861092e60025490565b610939906001611de6565b6109439190611dfd565b61094d9190611dfd565b8110156109b45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107c4565b6109c681670de0b6b3a7640000611de6565b60075550565b60006109d9848484611173565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a5e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107c4565b610a6b853385840361104f565b506001949350505050565b6005546001600160a01b03163314610aa05760405162461bcd60e51b81526004016107c490611d4e565b600c829055600d819055610ab48183611d99565b600b819055601910156108425760405162461bcd60e51b815260206004820152602360248201527f42757920666565732063616e6e6f7420626520686967686572207468616e20326044820152621a929760e91b60648201526084016107c4565b6005546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016107c490611d4e565b610b4960006117b6565b565b6005546000906001600160a01b03163314610b785760405162461bcd60e51b81526004016107c490611d4e565b50600a805460ff19169055600190565b6005546001600160a01b03163314610bb25760405162461bcd60e51b81526004016107c490611d4e565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c075760405162461bcd60e51b81526004016107c490611d4e565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610c445760405162461bcd60e51b81526004016107c490611d4e565b600a8054911515620100000262ff000019909216919091179055565b60606004805461085590611dac565b60006108e5338484611173565b6005546001600160a01b03163314610ca65760405162461bcd60e51b81526004016107c490611d4e565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d2d5760405162461bcd60e51b81526004016107c490611d4e565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610db65760405162461bcd60e51b81526004016107c490611d4e565b670de0b6b3a76400006103e8610dcb60025490565b610dd6906005611de6565b610de09190611dfd565b610dea9190611dfd565b811015610e455760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107c4565b610e5781670de0b6b3a7640000611de6565b60095550565b6005546000906001600160a01b03163314610e8a5760405162461bcd60e51b81526004016107c490611d4e565b620186a0610e9760025490565b610ea2906001611de6565b610eac9190611dfd565b821015610f195760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107c4565b6103e8610f2560025490565b610f30906005611de6565b610f3a9190611dfd565b821115610fa65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107c4565b50600881905560015b919050565b6005546001600160a01b03163314610fde5760405162461bcd60e51b81526004016107c490611d4e565b6001600160a01b0381166110435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c4565b61104c816117b6565b50565b6001600160a01b0383166110b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c4565b6001600160a01b0382166111125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111995760405162461bcd60e51b81526004016107c490611e1f565b6001600160a01b0382166111bf5760405162461bcd60e51b81526004016107c490611e64565b806000036111d8576111d383836000611808565b505050565b600a5460ff16156114b0576005546001600160a01b0384811691161480159061120f57506005546001600160a01b03838116911614155b801561122357506001600160a01b03821615155b801561123a57506001600160a01b03821661dead14155b80156112505750600554600160a01b900460ff16155b156114b057600a54610100900460ff166112e8576001600160a01b03831660009081526011602052604090205460ff16806112a357506001600160a01b03821660009081526011602052604090205460ff165b6112e85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107c4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561134257506001600160a01b03821660009081526012602052604090205460ff16155b15611426576007548111156113b75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107c4565b6009546001600160a01b0383166000908152602081905260409020546113dd9083611d99565b11156114215760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b6114b0565b6001600160a01b03821660009081526012602052604090205460ff166114b0576009546001600160a01b03831660009081526020819052604090205461146c9083611d99565b11156114b05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b30600090815260208190526040902054600854811080159081906114dc5750600a5462010000900460ff165b80156114f25750600554600160a01b900460ff16155b801561152f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561155457506001600160a01b03851660009081526011602052604090205460ff16155b801561157957506001600160a01b03841660009081526011602052604090205460ff16155b156115a7576005805460ff60a01b1916600160a01b17905561159961195d565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526011602052604090205460ff600160a01b9092048216159116806115f557506001600160a01b03851660009081526011602052604090205460ff165b156115fe575060005b600080600083156117a0577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561164c57506000600e54115b156116b257611671606461166b600e548a6119a790919063ffffffff16565b906119ba565b9250600e54601054846116849190611de6565b61168e9190611dfd565b9150600e54600f54846116a19190611de6565b6116ab9190611dfd565b9050611751565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156116f557506000600b54115b1561175157611714606461166b600b548a6119a790919063ffffffff16565b9250600b54600d54846117279190611de6565b6117319190611dfd565b9150600b54600c54846117449190611de6565b61174e9190611dfd565b90505b821561176257611762893085611808565b811561179357611793307f000000000000000000000000000000000000000000000000000000000000000084611808565b61179d8388611ea7565b96505b6117ab898989611808565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661182e5760405162461bcd60e51b81526004016107c490611e1f565b6001600160a01b0382166118545760405162461bcd60e51b81526004016107c490611e64565b6001600160a01b038316600090815260208190526040902054818110156118cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c4565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611903908490611d99565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194f91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119785750565b600854611986906014611de6565b81111561199e5760085461199b906014611de6565b90505b61104c816119c6565b60006119b38284611de6565b9392505050565b60006119b38284611dfd565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119fb576119fb611eba565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9d9190611ed0565b81600181518110611ab057611ab0611eba565b60200260200101906001600160a01b031690816001600160a01b031681525050611afb307f00000000000000000000000000000000000000000000000000000000000000008461104f565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611b57928792600092889291909116904290600401611eed565b600060405180830381600087803b158015611b7157600080fd5b505af1158015611b85573d6000803e3d6000fd5b505050505050565b60008060408385031215611ba057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bdc57858101830151858201604001528201611bc0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461104c57600080fd5b60008060408385031215611c2557600080fd5b8235611c3081611bfd565b946020939093013593505050565b600060208284031215611c5057600080fd5b81356119b381611bfd565b600060208284031215611c6d57600080fd5b5035919050565b600080600060608486031215611c8957600080fd5b8335611c9481611bfd565b92506020840135611ca481611bfd565b929592945050506040919091013590565b80358015158114610faf57600080fd5b60008060408385031215611cd857600080fd5b8235611ce381611bfd565b9150611cf160208401611cb5565b90509250929050565b600060208284031215611d0c57600080fd5b6119b382611cb5565b60008060408385031215611d2857600080fd5b8235611d3381611bfd565b91506020830135611d4381611bfd565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e9576108e9611d83565b600181811c90821680611dc057607f821691505b602082108103611de057634e487b7160e01b600052602260045260246000fd5b50919050565b80820281158282048414176108e9576108e9611d83565b600082611e1a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108e9576108e9611d83565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ee257600080fd5b81516119b381611bfd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f3d5784516001600160a01b031683529383019391830191600101611f18565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122092b6c944c89507a2ded798c0a85bf1b92725dccbc11b1332f7728dc5ede89b1964736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061024a5760003560e01c806375f0a87411610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106dc578063e2f4560514610722578063f11a24d314610738578063f2fde38b1461074e578063f63743421461076e578063f8b45b051461078457600080fd5b8063c024666814610650578063c18bc19514610670578063c8c8ebe414610690578063d257b34f146106a6578063d85ba063146106c657600080fd5b8063924de9b7116100fd578063924de9b7146105bc57806395d89b41146105dc578063a9059cbb146105f1578063aacebbe314610611578063bbc0c7421461063157600080fd5b806375f0a8741461053d5780637bce5a041461055d5780638a8c523c146105735780638da5cb5b1461058857806392136913146105a657600080fd5b806349bd5a5e116101c75780636ddd17131161018b5780636ddd17131461049d57806370a08231146104bd578063715018a6146104f3578063751039fc146105085780637571336a1461051d57600080fd5b806349bd5a5e146103e05780634a62bb65146104145780634fbee1931461042e57806366ca9b83146104675780636a486a8e1461048757600080fd5b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461036e57806323b872dd1461038e57806327c8f835146103ae578063313ce567146103c457600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004611b8d565b61079a565b005b34801561028457600080fd5b5061028d610846565b60405161029a9190611baf565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004611c12565b6108d8565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611c3e565b60126020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610389366004611c5b565b6108ef565b34801561039a57600080fd5b506102c36103a9366004611c74565b6109cc565b3480156103ba57600080fd5b5061033761dead81565b3480156103d057600080fd5b506040516012815260200161029a565b3480156103ec57600080fd5b506103377f00000000000000000000000093b91ee6f17f40c27cb0dbba9b48bde09d3dd1db81565b34801561042057600080fd5b50600a546102c39060ff1681565b34801561043a57600080fd5b506102c3610449366004611c3e565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561047357600080fd5b50610276610482366004611b8d565b610a76565b34801561049357600080fd5b50610360600e5481565b3480156104a957600080fd5b50600a546102c39062010000900460ff1681565b3480156104c957600080fd5b506103606104d8366004611c3e565b6001600160a01b031660009081526020819052604090205490565b3480156104ff57600080fd5b50610276610b15565b34801561051457600080fd5b506102c3610b4b565b34801561052957600080fd5b50610276610538366004611cc5565b610b88565b34801561054957600080fd5b50600654610337906001600160a01b031681565b34801561056957600080fd5b50610360600c5481565b34801561057f57600080fd5b50610276610bdd565b34801561059457600080fd5b506005546001600160a01b0316610337565b3480156105b257600080fd5b50610360600f5481565b3480156105c857600080fd5b506102766105d7366004611cfa565b610c1a565b3480156105e857600080fd5b5061028d610c60565b3480156105fd57600080fd5b506102c361060c366004611c12565b610c6f565b34801561061d57600080fd5b5061027661062c366004611c3e565b610c7c565b34801561063d57600080fd5b50600a546102c390610100900460ff1681565b34801561065c57600080fd5b5061027661066b366004611cc5565b610d03565b34801561067c57600080fd5b5061027661068b366004611c5b565b610d8c565b34801561069c57600080fd5b5061036060075481565b3480156106b257600080fd5b506102c36106c1366004611c5b565b610e5d565b3480156106d257600080fd5b50610360600b5481565b3480156106e857600080fd5b506103606106f7366004611d15565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061036060085481565b34801561074457600080fd5b50610360600d5481565b34801561075a57600080fd5b50610276610769366004611c3e565b610fb4565b34801561077a57600080fd5b5061036060105481565b34801561079057600080fd5b5061036060095481565b6005546001600160a01b031633146107cd5760405162461bcd60e51b81526004016107c490611d4e565b60405180910390fd5b600f82905560108190556107e18183611d99565b600e819055601910156108425760405162461bcd60e51b8152602060048201526024808201527f53656c6c20666565732063616e6e6f7420626520686967686572207468616e20604482015263191a929760e11b60648201526084016107c4565b5050565b60606003805461085590611dac565b80601f016020809104026020016040519081016040528092919081815260200182805461088190611dac565b80156108ce5780601f106108a3576101008083540402835291602001916108ce565b820191906000526020600020905b8154815290600101906020018083116108b157829003601f168201915b5050505050905090565b60006108e533848461104f565b5060015b92915050565b6005546001600160a01b031633146109195760405162461bcd60e51b81526004016107c490611d4e565b670de0b6b3a76400006103e861092e60025490565b610939906001611de6565b6109439190611dfd565b61094d9190611dfd565b8110156109b45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107c4565b6109c681670de0b6b3a7640000611de6565b60075550565b60006109d9848484611173565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a5e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107c4565b610a6b853385840361104f565b506001949350505050565b6005546001600160a01b03163314610aa05760405162461bcd60e51b81526004016107c490611d4e565b600c829055600d819055610ab48183611d99565b600b819055601910156108425760405162461bcd60e51b815260206004820152602360248201527f42757920666565732063616e6e6f7420626520686967686572207468616e20326044820152621a929760e91b60648201526084016107c4565b6005546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016107c490611d4e565b610b4960006117b6565b565b6005546000906001600160a01b03163314610b785760405162461bcd60e51b81526004016107c490611d4e565b50600a805460ff19169055600190565b6005546001600160a01b03163314610bb25760405162461bcd60e51b81526004016107c490611d4e565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c075760405162461bcd60e51b81526004016107c490611d4e565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610c445760405162461bcd60e51b81526004016107c490611d4e565b600a8054911515620100000262ff000019909216919091179055565b60606004805461085590611dac565b60006108e5338484611173565b6005546001600160a01b03163314610ca65760405162461bcd60e51b81526004016107c490611d4e565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d2d5760405162461bcd60e51b81526004016107c490611d4e565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610db65760405162461bcd60e51b81526004016107c490611d4e565b670de0b6b3a76400006103e8610dcb60025490565b610dd6906005611de6565b610de09190611dfd565b610dea9190611dfd565b811015610e455760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107c4565b610e5781670de0b6b3a7640000611de6565b60095550565b6005546000906001600160a01b03163314610e8a5760405162461bcd60e51b81526004016107c490611d4e565b620186a0610e9760025490565b610ea2906001611de6565b610eac9190611dfd565b821015610f195760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107c4565b6103e8610f2560025490565b610f30906005611de6565b610f3a9190611dfd565b821115610fa65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107c4565b50600881905560015b919050565b6005546001600160a01b03163314610fde5760405162461bcd60e51b81526004016107c490611d4e565b6001600160a01b0381166110435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c4565b61104c816117b6565b50565b6001600160a01b0383166110b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c4565b6001600160a01b0382166111125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111995760405162461bcd60e51b81526004016107c490611e1f565b6001600160a01b0382166111bf5760405162461bcd60e51b81526004016107c490611e64565b806000036111d8576111d383836000611808565b505050565b600a5460ff16156114b0576005546001600160a01b0384811691161480159061120f57506005546001600160a01b03838116911614155b801561122357506001600160a01b03821615155b801561123a57506001600160a01b03821661dead14155b80156112505750600554600160a01b900460ff16155b156114b057600a54610100900460ff166112e8576001600160a01b03831660009081526011602052604090205460ff16806112a357506001600160a01b03821660009081526011602052604090205460ff165b6112e85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107c4565b7f00000000000000000000000093b91ee6f17f40c27cb0dbba9b48bde09d3dd1db6001600160a01b0316836001600160a01b031614801561134257506001600160a01b03821660009081526012602052604090205460ff16155b15611426576007548111156113b75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107c4565b6009546001600160a01b0383166000908152602081905260409020546113dd9083611d99565b11156114215760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b6114b0565b6001600160a01b03821660009081526012602052604090205460ff166114b0576009546001600160a01b03831660009081526020819052604090205461146c9083611d99565b11156114b05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b30600090815260208190526040902054600854811080159081906114dc5750600a5462010000900460ff165b80156114f25750600554600160a01b900460ff16155b801561152f57507f00000000000000000000000093b91ee6f17f40c27cb0dbba9b48bde09d3dd1db6001600160a01b0316846001600160a01b0316145b801561155457506001600160a01b03851660009081526011602052604090205460ff16155b801561157957506001600160a01b03841660009081526011602052604090205460ff16155b156115a7576005805460ff60a01b1916600160a01b17905561159961195d565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526011602052604090205460ff600160a01b9092048216159116806115f557506001600160a01b03851660009081526011602052604090205460ff165b156115fe575060005b600080600083156117a0577f00000000000000000000000093b91ee6f17f40c27cb0dbba9b48bde09d3dd1db6001600160a01b0316886001600160a01b031614801561164c57506000600e54115b156116b257611671606461166b600e548a6119a790919063ffffffff16565b906119ba565b9250600e54601054846116849190611de6565b61168e9190611dfd565b9150600e54600f54846116a19190611de6565b6116ab9190611dfd565b9050611751565b7f00000000000000000000000093b91ee6f17f40c27cb0dbba9b48bde09d3dd1db6001600160a01b0316896001600160a01b03161480156116f557506000600b54115b1561175157611714606461166b600b548a6119a790919063ffffffff16565b9250600b54600d54846117279190611de6565b6117319190611dfd565b9150600b54600c54846117449190611de6565b61174e9190611dfd565b90505b821561176257611762893085611808565b811561179357611793307f00000000000000000000000093b91ee6f17f40c27cb0dbba9b48bde09d3dd1db84611808565b61179d8388611ea7565b96505b6117ab898989611808565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661182e5760405162461bcd60e51b81526004016107c490611e1f565b6001600160a01b0382166118545760405162461bcd60e51b81526004016107c490611e64565b6001600160a01b038316600090815260208190526040902054818110156118cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c4565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611903908490611d99565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194f91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119785750565b600854611986906014611de6565b81111561199e5760085461199b906014611de6565b90505b61104c816119c6565b60006119b38284611de6565b9392505050565b60006119b38284611dfd565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119fb576119fb611eba565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9d9190611ed0565b81600181518110611ab057611ab0611eba565b60200260200101906001600160a01b031690816001600160a01b031681525050611afb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461104f565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611b57928792600092889291909116904290600401611eed565b600060405180830381600087803b158015611b7157600080fd5b505af1158015611b85573d6000803e3d6000fd5b505050505050565b60008060408385031215611ba057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bdc57858101830151858201604001528201611bc0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461104c57600080fd5b60008060408385031215611c2557600080fd5b8235611c3081611bfd565b946020939093013593505050565b600060208284031215611c5057600080fd5b81356119b381611bfd565b600060208284031215611c6d57600080fd5b5035919050565b600080600060608486031215611c8957600080fd5b8335611c9481611bfd565b92506020840135611ca481611bfd565b929592945050506040919091013590565b80358015158114610faf57600080fd5b60008060408385031215611cd857600080fd5b8235611ce381611bfd565b9150611cf160208401611cb5565b90509250929050565b600060208284031215611d0c57600080fd5b6119b382611cb5565b60008060408385031215611d2857600080fd5b8235611d3381611bfd565b91506020830135611d4381611bfd565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e9576108e9611d83565b600181811c90821680611dc057607f821691505b602082108103611de057634e487b7160e01b600052602260045260246000fd5b50919050565b80820281158282048414176108e9576108e9611d83565b600082611e1a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108e9576108e9611d83565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ee257600080fd5b81516119b381611bfd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f3d5784516001600160a01b031683529383019391830191600101611f18565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122092b6c944c89507a2ded798c0a85bf1b92725dccbc11b1332f7728dc5ede89b1964736f6c63430008130033

Deployed Bytecode Sourcemap

24851:10938:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30207:349;;;;;;;;;;-1:-1:-1;30207:349:0;;;;;:::i;:::-;;:::i;:::-;;9654:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11821:169;;;;;;;;;;-1:-1:-1;11821:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;11821:169:0;1276:187:1;25758:63:0;;;;;;;;;;-1:-1:-1;25758:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24926:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1910:32:1;;;1892:51;;1880:2;1865:18;24926:51:0;1720:229:1;10774:108:0;;;;;;;;;;-1:-1:-1;10862:12:0;;10774:108;;;2100:25:1;;;2088:2;2073:18;10774:108:0;1954:177:1;28940:275:0;;;;;;;;;;-1:-1:-1;28940:275:0;;;;;:::i;:::-;;:::i;12472:492::-;;;;;;;;;;-1:-1:-1;12472:492:0;;;;;:::i;:::-;;:::i;25029:53::-;;;;;;;;;;;;25075:6;25029:53;;10616:93;;;;;;;;;;-1:-1:-1;10616:93:0;;10699:2;3132:36:1;;3120:2;3105:18;10616:93:0;2990:184:1;24984:38:0;;;;;;;;;;;;;;;25275:33;;;;;;;;;;-1:-1:-1;25275:33:0;;;;;;;;30995:126;;;;;;;;;;-1:-1:-1;30995:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31085:28:0;31061:4;31085:28;;;:19;:28;;;;;;;;;30995:126;29858:341;;;;;;;;;;-1:-1:-1;29858:341:0;;;;;:::i;:::-;;:::i;25505:28::-;;;;;;;;;;;;;;;;25355:31;;;;;;;;;;-1:-1:-1;25355:31:0;;;;;;;;;;;10945:127;;;;;;;;;;-1:-1:-1;10945:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11046:18:0;11019:7;11046:18;;;;;;;;;;;;10945:127;2889:103;;;;;;;;;;;;;:::i;28244:121::-;;;;;;;;;;;;;:::i;29487:167::-;;;;;;;;;;-1:-1:-1;29487:167:0;;;;;:::i;:::-;;:::i;25121:30::-;;;;;;;;;;-1:-1:-1;25121:30:0;;;;-1:-1:-1;;;;;25121:30:0;;;25429;;;;;;;;;;;;;;;;28080:112;;;;;;;;;;;;;:::i;2238:87::-;;;;;;;;;;-1:-1:-1;2311:6:0;;-1:-1:-1;;;;;2311:6:0;2238:87;;25540:31;;;;;;;;;;;;;;;;29750:100;;;;;;;;;;-1:-1:-1;29750:100:0;;;;;:::i;:::-;;:::i;9873:104::-;;;;;;;;;;;;;:::i;11285:175::-;;;;;;;;;;-1:-1:-1;11285:175:0;;;;;:::i;:::-;;:::i;30754:231::-;;;;;;;;;;-1:-1:-1;30754:231:0;;;;;:::i;:::-;;:::i;25315:33::-;;;;;;;;;;-1:-1:-1;25315:33:0;;;;;;;;;;;30564:182;;;;;;;;;;-1:-1:-1;30564:182:0;;;;;:::i;:::-;;:::i;29223:256::-;;;;;;;;;;-1:-1:-1;29223:256:0;;;;;:::i;:::-;;:::i;25160:35::-;;;;;;;;;;;;;;;;28435:497;;;;;;;;;;-1:-1:-1;28435:497:0;;;;;:::i;:::-;;:::i;25395:27::-;;;;;;;;;;;;;;;;11523:151;;;;;;;;;;-1:-1:-1;11523:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11639:18:0;;;11612:7;11639:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11523:151;25202:33;;;;;;;;;;;;;;;;25466:30;;;;;;;;;;;;;;;;3147:201;;;;;;;;;;-1:-1:-1;3147:201:0;;;;;:::i;:::-;;:::i;25578:31::-;;;;;;;;;;;;;;;;25242:24;;;;;;;;;;;;;;;;30207:349;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;;;;;;;;;30332:16:::1;:32:::0;;;30375:16:::1;:32:::0;;;30434:35:::1;30394:13:::0;30351;30434:35:::1;:::i;:::-;30418:13;:51:::0;;;30505:2:::1;-1:-1:-1::0;30488:19:0::1;30480:68;;;::::0;-1:-1:-1;;;30480:68:0;;5067:2:1;30480:68:0::1;::::0;::::1;5049:21:1::0;5106:2;5086:18;;;5079:30;5145:34;5125:18;;;5118:62;-1:-1:-1;;;5196:18:1;;;5189:34;5240:19;;30480:68:0::1;4865:400:1::0;30480:68:0::1;30207:349:::0;;:::o;9654:100::-;9708:13;9741:5;9734:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9654:100;:::o;11821:169::-;11904:4;11921:39;991:10;11944:7;11953:6;11921:8;:39::i;:::-;-1:-1:-1;11978:4:0;11821:169;;;;;:::o;28940:275::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;29077:4:::1;29069;29048:13;10862:12:::0;;;10774:108;29048:13:::1;:17;::::0;29064:1:::1;29048:17;:::i;:::-;29047:26;;;;:::i;:::-;29046:35;;;;:::i;:::-;29036:6;:45;;29014:142;;;::::0;-1:-1:-1;;;29014:142:0;;6252:2:1;29014:142:0::1;::::0;::::1;6234:21:1::0;6291:2;6271:18;;;6264:30;6330:34;6310:18;;;6303:62;-1:-1:-1;;;6381:18:1;;;6374:45;6436:19;;29014:142:0::1;6050:411:1::0;29014:142:0::1;29190:17;:6:::0;29200::::1;29190:17;:::i;:::-;29167:20;:40:::0;-1:-1:-1;28940:275:0:o;12472:492::-;12612:4;12629:36;12639:6;12647:9;12658:6;12629:9;:36::i;:::-;-1:-1:-1;;;;;12705:19:0;;12678:24;12705:19;;;:11;:19;;;;;;;;991:10;12705:33;;;;;;;;12757:26;;;;12749:79;;;;-1:-1:-1;;;12749:79:0;;6668:2:1;12749:79:0;;;6650:21:1;6707:2;6687:18;;;6680:30;6746:34;6726:18;;;6719:62;-1:-1:-1;;;6797:18:1;;;6790:38;6845:19;;12749:79:0;6466:404:1;12749:79:0;12864:57;12873:6;991:10;12914:6;12895:16;:25;12864:8;:57::i;:::-;-1:-1:-1;12952:4:0;;12472:492;-1:-1:-1;;;;12472:492:0:o;29858:341::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;29982:15:::1;:31:::0;;;30024:15:::1;:31:::0;;;30081:33:::1;30042:13:::0;30000;30081:33:::1;:::i;:::-;30066:12;:48:::0;;;30149:2:::1;-1:-1:-1::0;30133:18:0::1;30125:66;;;::::0;-1:-1:-1;;;30125:66:0;;7077:2:1;30125:66:0::1;::::0;::::1;7059:21:1::0;7116:2;7096:18;;;7089:30;7155:34;7135:18;;;7128:62;-1:-1:-1;;;7206:18:1;;;7199:33;7249:19;;30125:66:0::1;6875:399:1::0;2889:103:0;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;2954:30:::1;2981:1;2954:18;:30::i;:::-;2889:103::o:0;28244:121::-;2311:6;;28296:4;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;-1:-1:-1;28313:14:0::1;:22:::0;;-1:-1:-1;;28313:22:0::1;::::0;;;28244:121;:::o;29487:167::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29600:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29600:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29487:167::o;28080:112::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;28135:13:::1;:20:::0;;-1:-1:-1;;28166:18:0;;;;;28080:112::o;29750:100::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;29821:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29821:21:0;;::::1;::::0;;;::::1;::::0;;29750:100::o;9873:104::-;9929:13;9962:7;9955:14;;;;;:::i;11285:175::-;11371:4;11388:42;991:10;11412:9;11423:6;11388:9;:42::i;30754:231::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;30914:15:::1;::::0;30871:59:::1;::::0;-1:-1:-1;;;;;30914:15:0;;::::1;::::0;30871:59;::::1;::::0;::::1;::::0;30914:15:::1;::::0;30871:59:::1;30941:15;:36:::0;;-1:-1:-1;;;;;;30941:36:0::1;-1:-1:-1::0;;;;;30941:36:0;;;::::1;::::0;;;::::1;::::0;;30754:231::o;30564:182::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30649:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30649:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30704:34;;1416:41:1;;;30704:34:0::1;::::0;1389:18:1;30704:34:0::1;;;;;;;30564:182:::0;;:::o;29223:256::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;29363:4:::1;29355;29334:13;10862:12:::0;;;10774:108;29334:13:::1;:17;::::0;29350:1:::1;29334:17;:::i;:::-;29333:26;;;;:::i;:::-;29332:35;;;;:::i;:::-;29322:6;:45;;29300:131;;;::::0;-1:-1:-1;;;29300:131:0;;7481:2:1;29300:131:0::1;::::0;::::1;7463:21:1::0;7520:2;7500:18;;;7493:30;7559:34;7539:18;;;7532:62;-1:-1:-1;;;7610:18:1;;;7603:34;7654:19;;29300:131:0::1;7279:400:1::0;29300:131:0::1;29454:17;:6:::0;29464::::1;29454:17;:::i;:::-;29442:9;:29:::0;-1:-1:-1;29223:256:0:o;28435:497::-;2311:6;;28543:4;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;28622:6:::1;28601:13;10862:12:::0;;;10774:108;28601:13:::1;:17;::::0;28617:1:::1;28601:17;:::i;:::-;28600:28;;;;:::i;:::-;28587:9;:41;;28565:144;;;::::0;-1:-1:-1;;;28565:144:0;;7886:2:1;28565:144:0::1;::::0;::::1;7868:21:1::0;7925:2;7905:18;;;7898:30;7964:34;7944:18;;;7937:62;-1:-1:-1;;;8015:18:1;;;8008:51;8076:19;;28565:144:0::1;7684:417:1::0;28565:144:0::1;28777:4;28756:13;10862:12:::0;;;10774:108;28756:13:::1;:17;::::0;28772:1:::1;28756:17;:::i;:::-;28755:26;;;;:::i;:::-;28742:9;:39;;28720:141;;;::::0;-1:-1:-1;;;28720:141:0;;8308:2:1;28720:141:0::1;::::0;::::1;8290:21:1::0;8347:2;8327:18;;;8320:30;8386:34;8366:18;;;8359:62;-1:-1:-1;;;8437:18:1;;;8430:50;8497:19;;28720:141:0::1;8106:416:1::0;28720:141:0::1;-1:-1:-1::0;28872:18:0::1;:30:::0;;;28920:4:::1;2529:1;28435:497:::0;;;:::o;3147:201::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3236:22:0;::::1;3228:73;;;::::0;-1:-1:-1;;;3228:73:0;;8729:2:1;3228:73:0::1;::::0;::::1;8711:21:1::0;8768:2;8748:18;;;8741:30;8807:34;8787:18;;;8780:62;-1:-1:-1;;;8858:18:1;;;8851:36;8904:19;;3228:73:0::1;8527:402:1::0;3228:73:0::1;3312:28;3331:8;3312:18;:28::i;:::-;3147:201:::0;:::o;15313:380::-;-1:-1:-1;;;;;15449:19:0;;15441:68;;;;-1:-1:-1;;;15441:68:0;;9136:2:1;15441:68:0;;;9118:21:1;9175:2;9155:18;;;9148:30;9214:34;9194:18;;;9187:62;-1:-1:-1;;;9265:18:1;;;9258:34;9309:19;;15441:68:0;8934:400:1;15441:68:0;-1:-1:-1;;;;;15528:21:0;;15520:68;;;;-1:-1:-1;;;15520:68:0;;9541:2:1;15520:68:0;;;9523:21:1;9580:2;9560:18;;;9553:30;9619:34;9599:18;;;9592:62;-1:-1:-1;;;9670:18:1;;;9663:32;9712:19;;15520:68:0;9339:398:1;15520:68:0;-1:-1:-1;;;;;15601:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15653:32;;2100:25:1;;;15653:32:0;;2073:18:1;15653:32:0;;;;;;;15313:380;;;:::o;31129:3709::-;-1:-1:-1;;;;;31261:18:0;;31253:68;;;;-1:-1:-1;;;31253:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31340:16:0;;31332:64;;;;-1:-1:-1;;;31332:64:0;;;;;;;:::i;:::-;31413:6;31423:1;31413:11;31409:93;;31441:28;31457:4;31463:2;31467:1;31441:15;:28::i;:::-;31129:3709;;;:::o;31409:93::-;31518:14;;;;31514:1430;;;2311:6;;-1:-1:-1;;;;;31571:15:0;;;2311:6;;31571:15;;;;:49;;-1:-1:-1;2311:6:0;;-1:-1:-1;;;;;31607:13:0;;;2311:6;;31607:13;;31571:49;:86;;;;-1:-1:-1;;;;;;31641:16:0;;;;31571:86;:128;;;;-1:-1:-1;;;;;;31678:21:0;;31692:6;31678:21;;31571:128;:158;;;;-1:-1:-1;31721:8:0;;-1:-1:-1;;;31721:8:0;;;;31720:9;31571:158;31549:1384;;;31769:13;;;;;;;31764:223;;-1:-1:-1;;;;;31841:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31870:23:0;;;;;;:19;:23;;;;;;;;31841:52;31807:160;;;;-1:-1:-1;;;31807:160:0;;10754:2:1;31807:160:0;;;10736:21:1;10793:2;10773:18;;;10766:30;-1:-1:-1;;;10812:18:1;;;10805:52;10874:18;;31807:160:0;10552:346:1;31807:160:0;32201:13;-1:-1:-1;;;;;32193:21:0;:4;-1:-1:-1;;;;;32193:21:0;;:82;;;;-1:-1:-1;;;;;;32240:35:0;;;;;;:31;:35;;;;;;;;32239:36;32193:82;32167:751;;;32362:20;;32352:6;:30;;32318:169;;;;-1:-1:-1;;;32318:169:0;;11105:2:1;32318:169:0;;;11087:21:1;11144:2;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;-1:-1:-1;;;11234:18:1;;;11227:51;11295:19;;32318:169:0;10903:417:1;32318:169:0;32570:9;;-1:-1:-1;;;;;11046:18:0;;11019:7;11046:18;;;;;;;;;;;32544:22;;:6;:22;:::i;:::-;:35;;32510:140;;;;-1:-1:-1;;;32510:140:0;;11527:2:1;32510:140:0;;;11509:21:1;11566:2;11546:18;;;11539:30;-1:-1:-1;;;11585:18:1;;;11578:49;11644:18;;32510:140:0;11325:343:1;32510:140:0;32167:751;;;-1:-1:-1;;;;;32698:35:0;;;;;;:31;:35;;;;;;;;32693:225;;32818:9;;-1:-1:-1;;;;;11046:18:0;;11019:7;11046:18;;;;;;;;;;;32792:22;;:6;:22;:::i;:::-;:35;;32758:140;;;;-1:-1:-1;;;32758:140:0;;11527:2:1;32758:140:0;;;11509:21:1;11566:2;11546:18;;;11539:30;-1:-1:-1;;;11585:18:1;;;11578:49;11644:18;;32758:140:0;11325:343:1;32758:140:0;33005:4;32956:28;11046:18;;;;;;;;;;;33063;;33039:42;;;;;;;33112:35;;-1:-1:-1;33136:11:0;;;;;;;33112:35;:61;;;;-1:-1:-1;33165:8:0;;-1:-1:-1;;;33165:8:0;;;;33164:9;33112:61;:97;;;;;33196:13;-1:-1:-1;;;;;33190:19:0;:2;-1:-1:-1;;;;;33190:19:0;;33112:97;:140;;;;-1:-1:-1;;;;;;33227:25:0;;;;;;:19;:25;;;;;;;;33226:26;33112:140;:181;;;;-1:-1:-1;;;;;;33270:23:0;;;;;;:19;:23;;;;;;;;33269:24;33112:181;33094:313;;;33320:8;:15;;-1:-1:-1;;;;33320:15:0;-1:-1:-1;;;33320:15:0;;;33352:10;:8;:10::i;:::-;33379:8;:16;;-1:-1:-1;;;;33379:16:0;;;33094:313;33435:8;;-1:-1:-1;;;;;33545:25:0;;33419:12;33545:25;;;:19;:25;;;;;;33435:8;-1:-1:-1;;;33435:8:0;;;;;33434:9;;33545:25;;:52;;-1:-1:-1;;;;;;33574:23:0;;;;;;:19;:23;;;;;;;;33545:52;33541:100;;;-1:-1:-1;33624:5:0;33541:100;33653:12;33680:26;33721;33840:7;33836:949;;;33898:13;-1:-1:-1;;;;;33892:19:0;:2;-1:-1:-1;;;;;33892:19:0;;:40;;;;;33931:1;33915:13;;:17;33892:40;33888:607;;;33960:34;33990:3;33960:25;33971:13;;33960:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33953:41;;34062:13;;34042:16;;34035:4;:23;;;;:::i;:::-;34034:41;;;;:::i;:::-;34013:62;;34143:13;;34123:16;;34116:4;:23;;;;:::i;:::-;34115:41;;;;:::i;:::-;34094:62;;33888:607;;;34226:13;-1:-1:-1;;;;;34218:21:0;:4;-1:-1:-1;;;;;34218:21:0;;:41;;;;;34258:1;34243:12;;:16;34218:41;34214:281;;;34287:33;34316:3;34287:24;34298:12;;34287:6;:10;;:24;;;;:::i;:33::-;34280:40;;34387:12;;34368:15;;34361:4;:22;;;;:::i;:::-;34360:39;;;;:::i;:::-;34339:60;;34467:12;;34448:15;;34441:4;:22;;;;:::i;:::-;34440:39;;;;:::i;:::-;34419:60;;34214:281;34515:7;;34511:90;;34543:42;34559:4;34573;34580;34543:15;:42::i;:::-;34619:22;;34615:128;;34662:65;34686:4;34693:13;34708:18;34662:15;:65::i;:::-;34759:14;34769:4;34759:14;;:::i;:::-;;;33836:949;34797:33;34813:4;34819:2;34823:6;34797:15;:33::i;:::-;31242:3596;;;;;;31129:3709;;;:::o;3508:191::-;3601:6;;;-1:-1:-1;;;;;3618:17:0;;;-1:-1:-1;;;;;;3618:17:0;;;;;;;3651:40;;3601:6;;;3618:17;3601:6;;3651:40;;3582:16;;3651:40;3571:128;3508:191;:::o;13454:733::-;-1:-1:-1;;;;;13594:20:0;;13586:70;;;;-1:-1:-1;;;13586:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13675:23:0;;13667:71;;;;-1:-1:-1;;;13667:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13835:17:0;;13811:21;13835:17;;;;;;;;;;;13871:23;;;;13863:74;;;;-1:-1:-1;;;13863:74:0;;12008:2:1;13863:74:0;;;11990:21:1;12047:2;12027:18;;;12020:30;12086:34;12066:18;;;12059:62;-1:-1:-1;;;12137:18:1;;;12130:36;12183:19;;13863:74:0;11806:402:1;13863:74:0;-1:-1:-1;;;;;13973:17:0;;;:9;:17;;;;;;;;;;;13993:22;;;13973:42;;14037:20;;;;;;;;:30;;14009:6;;13973:9;14037:30;;14009:6;;14037:30;:::i;:::-;;;;;;;;14102:9;-1:-1:-1;;;;;14085:35:0;14094:6;-1:-1:-1;;;;;14085:35:0;;14113:6;14085:35;;;;2100:25:1;;2088:2;2073:18;;1954:177;14085:35:0;;;;;;;;13575:612;13454:733;;;:::o;35445:339::-;35528:4;35484:23;11046:18;;;;;;;;;;;;35549:20;;;35545:59;;35586:7;35445:339::o;35545:59::-;35638:18;;:23;;35659:2;35638:23;:::i;:::-;35620:15;:41;35616:115;;;35696:18;;:23;;35717:2;35696:23;:::i;:::-;35678:41;;35616:115;35743:33;35760:15;35743:16;:33::i;20766:98::-;20824:7;20851:5;20855:1;20851;:5;:::i;:::-;20844:12;20766:98;-1:-1:-1;;;20766:98:0:o;21165:::-;21223:7;21250:5;21254:1;21250;:5;:::i;34846:591::-;34996:16;;;35010:1;34996:16;;;;;;;;34972:21;;34996:16;;;;;;;;;;-1:-1:-1;34996:16:0;34972:40;;35041:4;35023;35028:1;35023:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35023:23:0;;;-1:-1:-1;;;;;35023:23:0;;;;;35067:15;-1:-1:-1;;;;;35067:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35057:4;35062:1;35057:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;35057:32:0;;;-1:-1:-1;;;;;35057:32:0;;;;;35102:62;35119:4;35134:15;35152:11;35102:8;:62::i;:::-;35373:15;;35203:226;;-1:-1:-1;;;35203:226:0;;-1:-1:-1;;;;;35203:15:0;:66;;;;;:226;;35284:11;;35310:1;;35354:4;;35373:15;;;;;35403;;35203:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34901:536;34846:591;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2136:180::-;2195:6;2248:2;2236:9;2227:7;2223:23;2219:32;2216:52;;;2264:1;2261;2254:12;2216:52;-1:-1:-1;2287:23:1;;2136:180;-1:-1:-1;2136:180:1:o;2321:456::-;2398:6;2406;2414;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2522:9;2509:23;2541:31;2566:5;2541:31;:::i;:::-;2591:5;-1:-1:-1;2648:2:1;2633:18;;2620:32;2661:33;2620:32;2661:33;:::i;:::-;2321:456;;2713:7;;-1:-1:-1;;;2767:2:1;2752:18;;;;2739:32;;2321:456::o;3179:160::-;3244:20;;3300:13;;3293:21;3283:32;;3273:60;;3329:1;3326;3319:12;3344:315;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:180::-;3720:6;3773:2;3761:9;3752:7;3748:23;3744:32;3741:52;;;3789:1;3786;3779:12;3741:52;3812:26;3828:9;3812:26;:::i;3849:388::-;3917:6;3925;3978:2;3966:9;3957:7;3953:23;3949:32;3946:52;;;3994:1;3991;3984:12;3946:52;4033:9;4020:23;4052:31;4077:5;4052:31;:::i;:::-;4102:5;-1:-1:-1;4159:2:1;4144:18;;4131:32;4172:33;4131:32;4172:33;:::i;:::-;4224:7;4214:17;;;3849:388;;;;;:::o;4242:356::-;4444:2;4426:21;;;4463:18;;;4456:30;4522:34;4517:2;4502:18;;4495:62;4589:2;4574:18;;4242:356::o;4603:127::-;4664:10;4659:3;4655:20;4652:1;4645:31;4695:4;4692:1;4685:15;4719:4;4716:1;4709:15;4735:125;4800:9;;;4821:10;;;4818:36;;;4834:18;;:::i;5270:380::-;5349:1;5345:12;;;;5392;;;5413:61;;5467:4;5459:6;5455:17;5445:27;;5413:61;5520:2;5512:6;5509:14;5489:18;5486:38;5483:161;;5566:10;5561:3;5557:20;5554:1;5547:31;5601:4;5598:1;5591:15;5629:4;5626:1;5619:15;5483:161;;5270:380;;;:::o;5655:168::-;5728:9;;;5759;;5776:15;;;5770:22;;5756:37;5746:71;;5797:18;;:::i;5828:217::-;5868:1;5894;5884:132;;5938:10;5933:3;5929:20;5926:1;5919:31;5973:4;5970:1;5963:15;6001:4;5998:1;5991:15;5884:132;-1:-1:-1;6030:9:1;;5828:217::o;9742:401::-;9944:2;9926:21;;;9983:2;9963:18;;;9956:30;10022:34;10017:2;10002:18;;9995:62;-1:-1:-1;;;10088:2:1;10073:18;;10066:35;10133:3;10118:19;;9742:401::o;10148:399::-;10350:2;10332:21;;;10389:2;10369:18;;;10362:30;10428:34;10423:2;10408:18;;10401:62;-1:-1:-1;;;10494:2:1;10479:18;;10472:33;10537:3;10522:19;;10148:399::o;11673:128::-;11740:9;;;11761:11;;;11758:37;;;11775:18;;:::i;12345:127::-;12406:10;12401:3;12397:20;12394:1;12387:31;12437:4;12434:1;12427:15;12461:4;12458:1;12451:15;12477:251;12547:6;12600:2;12588:9;12579:7;12575:23;12571:32;12568:52;;;12616:1;12613;12606:12;12568:52;12648:9;12642:16;12667:31;12692:5;12667:31;:::i;12733:980::-;12995:4;13043:3;13032:9;13028:19;13074:6;13063:9;13056:25;13100:2;13138:6;13133:2;13122:9;13118:18;13111:34;13181:3;13176:2;13165:9;13161:18;13154:31;13205:6;13240;13234:13;13271:6;13263;13256:22;13309:3;13298:9;13294:19;13287:26;;13348:2;13340:6;13336:15;13322:29;;13369:1;13379:195;13393:6;13390:1;13387:13;13379:195;;;13458:13;;-1:-1:-1;;;;;13454:39:1;13442:52;;13549:15;;;;13514:12;;;;13490:1;13408:9;13379:195;;;-1:-1:-1;;;;;;;13630:32:1;;;;13625:2;13610:18;;13603:60;-1:-1:-1;;;13694:3:1;13679:19;13672:35;13591:3;12733:980;-1:-1:-1;;;12733:980:1:o

Swarm Source

ipfs://92b6c944c89507a2ded798c0a85bf1b92725dccbc11b1332f7728dc5ede89b19
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.