ETH Price: $2,589.88 (-2.77%)

Token

ERC20 ***
 

Overview

Max Total Supply

100,000,000 ERC20 ***

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,676,393.905352402621536465 ERC20 ***

Value
$0.00
0xece79bceb16ca63e8e5aa3e61a1abddd58765ef2
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:
CUBEDAI

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

CubedAI - AI3

Telegram https://t.me/CubedAIerc
Twitter  https://twitter.com/cubedAi10902/
Website  https://www.aiaiaierc.com/

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
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 CUBEDAI is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    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 buyMarketingFee;
    uint256 public sellMarketingFee;

    uint256 public divisor;

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

    // 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("CubedAI", unicode"AI³") {
        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 = 3;
        uint256 _sellMarketingFee = 3;

        uint256 _divisor = 100;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 20) / 100000; // 0.02% swap wallet

        buyMarketingFee = _buyMarketingFee;
        sellMarketingFee = _sellMarketingFee;

        divisor = _divisor;

        marketingWallet = address(0xb4ed331257c5E0a39755c129EC561f6626Ab7F1D);

        // 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
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        require(buyMarketingFee.mul(100).div(divisor) <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        require(sellMarketingFee.mul(100).div(divisor) <= 25, "Must keep fees at 25% or less");
    }

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

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    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(uint256 amount) private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        uint256 swapAmount = min(amount, min(contractBalance, swapTokensAtAmount * 40));

        swapTokensForETH(swapAmount);
    }

}

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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellMarketingFee","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"}],"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"}],"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"}]

60c0604052600a805462ffffff191660011790553480156200001f575f80fd5b50604051806040016040528060078152602001664375626564414960c81b815250604051806040016040528060048152602001634149c2b360e01b81525081600390816200006e919062000652565b5060046200007d828262000652565b5050506200009a620000946200035760201b60201c565b6200035b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000bc816001620003ac565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000105573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012b91906200071a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000177573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019d91906200071a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020e91906200071a565b6001600160a01b031660a081905262000229906001620003ac565b60038060646a52b7d2dcc80cd2e400000081620002488260026200075d565b6200025491906200077d565b6007556064620002668260026200075d565b6200027291906200077d565b600955620186a0620002868260146200075d565b6200029291906200077d565b600855600b849055600c839055600d829055600680546001600160a01b03191673b4ed331257c5e0a39755c129ec561f6626ab7f1d179055620002e9620002e16005546001600160a01b031690565b600162000424565b620002f630600162000424565b6200030561dead600162000424565b620003246200031c6005546001600160a01b031690565b6001620003ac565b62000331306001620003ac565b6200034061dead6001620003ac565b6200034c3382620004cc565b5050505050620007b3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003fa5760405162461bcd60e51b815260206004820181905260248201525f805160206200256783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200046e5760405162461bcd60e51b815260206004820181905260248201525f80516020620025678339815191526044820152606401620003f1565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003f1565b8060025f8282546200053791906200079d565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005659084906200079d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620005dc57607f821691505b602082108103620005fb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005ae575f81815260208120601f850160051c81016020861015620006295750805b601f850160051c820191505b818110156200064a5782815560010162000635565b505050505050565b81516001600160401b038111156200066e576200066e620005b3565b62000686816200067f8454620005c7565b8462000601565b602080601f831160018114620006bc575f8415620006a45750858301515b5f19600386901b1c1916600185901b1785556200064a565b5f85815260208120601f198616915b82811015620006ec57888601518255948401946001909101908401620006cb565b50858210156200070a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200072b575f80fd5b81516001600160a01b038116811462000742575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000777576200077762000749565b92915050565b5f826200079857634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000777576200077762000749565b60805160a051611d61620008065f395f8181610391015281816111bc015281816113c8015281816114d0015261153901525f81816102b80152818161183b015281816118f201526119310152611d615ff3fe608060405260043610610215575f3560e01c806375f0a8741161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e14610637578063e2f456051461067b578063eba4c33314610690578063f2fde38b146106af578063f8b45b05146106ce575f80fd5b8063bbc0c742146105a7578063c0246668146105c5578063c18bc195146105e4578063c8c8ebe414610603578063d257b34f14610618575f80fd5b806392136913116100ee5780639213691314610521578063924de9b71461053657806395d89b4114610555578063a9059cbb14610569578063aacebbe314610588575f80fd5b806375f0a874146104bc5780637bce5a04146104db5780638a8c523c146104f05780638da5cb5b14610504575f80fd5b806349bd5a5e1161019f57806370a082311161016f57806370a0823114610422578063715018a61461045657806371fc46881461046a578063751039fc146104895780637571336a1461049d575f80fd5b806349bd5a5e146103805780634a62bb65146103b35780634fbee193146103cc5780636ddd171314610403575f80fd5b806318160ddd116101e557806318160ddd146102f25780631f2dc5ef14610310578063203e727e1461032557806323b872dd14610346578063313ce56714610365575f80fd5b806306fdde0314610220578063095ea7b31461024a57806310d5de53146102795780631694505e146102a7575f80fd5b3661021c57005b5f80fd5b34801561022b575f80fd5b506102346106e3565b60405161024191906119a3565b60405180910390f35b348015610255575f80fd5b50610269610264366004611a02565b610773565b6040519015158152602001610241565b348015610284575f80fd5b50610269610293366004611a2c565b600f6020525f908152604090205460ff1681565b3480156102b2575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156102fd575f80fd5b506002545b604051908152602001610241565b34801561031b575f80fd5b50610302600d5481565b348015610330575f80fd5b5061034461033f366004611a47565b610789565b005b348015610351575f80fd5b50610269610360366004611a5e565b61086f565b348015610370575f80fd5b5060405160128152602001610241565b34801561038b575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103be575f80fd5b50600a546102699060ff1681565b3480156103d7575f80fd5b506102696103e6366004611a2c565b6001600160a01b03165f908152600e602052604090205460ff1690565b34801561040e575f80fd5b50600a546102699062010000900460ff1681565b34801561042d575f80fd5b5061030261043c366004611a2c565b6001600160a01b03165f9081526020819052604090205490565b348015610461575f80fd5b50610344610917565b348015610475575f80fd5b50610344610484366004611a47565b61094c565b348015610494575f80fd5b506102696109e7565b3480156104a8575f80fd5b506103446104b7366004611aab565b610a23565b3480156104c7575f80fd5b506006546102da906001600160a01b031681565b3480156104e6575f80fd5b50610302600b5481565b3480156104fb575f80fd5b50610344610a77565b34801561050f575f80fd5b506005546001600160a01b03166102da565b34801561052c575f80fd5b50610302600c5481565b348015610541575f80fd5b50610344610550366004611ade565b610ab4565b348015610560575f80fd5b50610234610afa565b348015610574575f80fd5b50610269610583366004611a02565b610b09565b348015610593575f80fd5b506103446105a2366004611a2c565b610b15565b3480156105b2575f80fd5b50600a5461026990610100900460ff1681565b3480156105d0575f80fd5b506103446105df366004611aab565b610b9b565b3480156105ef575f80fd5b506103446105fe366004611a47565b610c23565b34801561060e575f80fd5b5061030260075481565b348015610623575f80fd5b50610269610632366004611a47565b610cf4565b348015610642575f80fd5b50610302610651366004611af7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610686575f80fd5b5061030260085481565b34801561069b575f80fd5b506103446106aa366004611a47565b610e4a565b3480156106ba575f80fd5b506103446106c9366004611a2c565b610e8e565b3480156106d9575f80fd5b5061030260095481565b6060600380546106f290611b2e565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90611b2e565b80156107695780601f1061074057610100808354040283529160200191610769565b820191905f5260205f20905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b5f61077f338484610f26565b5060015b92915050565b6005546001600160a01b031633146107bc5760405162461bcd60e51b81526004016107b390611b60565b60405180910390fd5b670de0b6b3a76400006103e86107d160025490565b6107dc906001611ba9565b6107e69190611bc0565b6107f09190611bc0565b8110156108575760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107b3565b61086981670de0b6b3a7640000611ba9565b60075550565b5f61087b848484611049565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108ff5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107b3565b61090c8533858403610f26565b506001949350505050565b6005546001600160a01b031633146109415760405162461bcd60e51b81526004016107b390611b60565b61094a5f6115ce565b565b6005546001600160a01b031633146109765760405162461bcd60e51b81526004016107b390611b60565b600b819055600d546019906109969061099084606461161f565b90611631565b11156109e45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c65737300000060448201526064016107b3565b50565b6005545f906001600160a01b03163314610a135760405162461bcd60e51b81526004016107b390611b60565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a4d5760405162461bcd60e51b81526004016107b390611b60565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610aa15760405162461bcd60e51b81526004016107b390611b60565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610ade5760405162461bcd60e51b81526004016107b390611b60565b600a8054911515620100000262ff000019909216919091179055565b6060600480546106f290611b2e565b5f61077f338484611049565b6005546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016107b390611b60565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bc55760405162461bcd60e51b81526004016107b390611b60565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c4d5760405162461bcd60e51b81526004016107b390611b60565b670de0b6b3a76400006103e8610c6260025490565b610c6d906005611ba9565b610c779190611bc0565b610c819190611bc0565b811015610cdc5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107b3565b610cee81670de0b6b3a7640000611ba9565b60095550565b6005545f906001600160a01b03163314610d205760405162461bcd60e51b81526004016107b390611b60565b620186a0610d2d60025490565b610d38906001611ba9565b610d429190611bc0565b821015610daf5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107b3565b6103e8610dbb60025490565b610dc6906005611ba9565b610dd09190611bc0565b821115610e3c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107b3565b50600881905560015b919050565b6005546001600160a01b03163314610e745760405162461bcd60e51b81526004016107b390611b60565b600c819055600d546019906109969061099084606461161f565b6005546001600160a01b03163314610eb85760405162461bcd60e51b81526004016107b390611b60565b6001600160a01b038116610f1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b3565b6109e4816115ce565b6001600160a01b038316610f885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107b3565b6001600160a01b038216610fe95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107b3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661106f5760405162461bcd60e51b81526004016107b390611bdf565b6001600160a01b0382166110955760405162461bcd60e51b81526004016107b390611c24565b805f036110ac576110a783835f61163c565b505050565b600a5460ff161561137e576005546001600160a01b038481169116148015906110e357506005546001600160a01b03838116911614155b80156110f757506001600160a01b03821615155b801561110e57506001600160a01b03821661dead14155b80156111245750600554600160a01b900460ff16155b1561137e57600a54610100900460ff166111ba576001600160a01b0383165f908152600e602052604090205460ff168061117557506001600160a01b0382165f908152600e602052604090205460ff165b6111ba5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107b3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561121357506001600160a01b0382165f908152600f602052604090205460ff16155b156112f6576007548111156112885760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107b3565b6009546001600160a01b0383165f908152602081905260409020546112ad9083611c67565b11156112f15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107b3565b61137e565b6001600160a01b0382165f908152600f602052604090205460ff1661137e576009546001600160a01b0383165f9081526020819052604090205461133a9083611c67565b111561137e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107b3565b305f90815260208190526040902054600854811080159081906113a95750600a5462010000900460ff165b80156113bf5750600554600160a01b900460ff16155b80156113fc57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561142057506001600160a01b0385165f908152600e602052604090205460ff16155b801561144457506001600160a01b0384165f908152600e602052604090205460ff16155b15611473576005805460ff60a01b1916600160a01b1790556114658361178f565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600e602052604090205460ff600160a01b9092048216159116806114bf57506001600160a01b0385165f908152600e602052604090205460ff165b156114c757505f5b5f81156115ba577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561151057505f600c54115b1561153757611530600d54610990600c548861161f90919063ffffffff16565b905061159c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561157957505f600b54115b1561159c57611599600d54610990600b548861161f90919063ffffffff16565b90505b80156115ad576115ad87308361163c565b6115b78186611c7a565b94505b6115c587878761163c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f61162a8284611ba9565b9392505050565b5f61162a8284611bc0565b6001600160a01b0383166116625760405162461bcd60e51b81526004016107b390611bdf565b6001600160a01b0382166116885760405162461bcd60e51b81526004016107b390611c24565b6001600160a01b0383165f90815260208190526040902054818110156116ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107b3565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611735908490611c67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161178191815260200190565b60405180910390a350505050565b305f90815260208190526040812054908190036117aa575050565b5f6117c7836117c28460085460286117c29190611ba9565b6117d2565b90506110a7816117e6565b5f8183116117e0578261162a565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061181957611819611c8d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611895573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118b99190611ca1565b816001815181106118cc576118cc611c8d565b60200260200101906001600160a01b031690816001600160a01b031681525050611917307f000000000000000000000000000000000000000000000000000000000000000084610f26565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926119729287925f92889291909116904290600401611cbc565b5f604051808303815f87803b158015611989575f80fd5b505af115801561199b573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b818110156119ce578581018301518582016040015282016119b2565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109e4575f80fd5b5f8060408385031215611a13575f80fd5b8235611a1e816119ee565b946020939093013593505050565b5f60208284031215611a3c575f80fd5b813561162a816119ee565b5f60208284031215611a57575f80fd5b5035919050565b5f805f60608486031215611a70575f80fd5b8335611a7b816119ee565b92506020840135611a8b816119ee565b929592945050506040919091013590565b80358015158114610e45575f80fd5b5f8060408385031215611abc575f80fd5b8235611ac7816119ee565b9150611ad560208401611a9c565b90509250929050565b5f60208284031215611aee575f80fd5b61162a82611a9c565b5f8060408385031215611b08575f80fd5b8235611b13816119ee565b91506020830135611b23816119ee565b809150509250929050565b600181811c90821680611b4257607f821691505b6020821081036117e057634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761078357610783611b95565b5f82611bda57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561078357610783611b95565b8181038181111561078357610783611b95565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611cb1575f80fd5b815161162a816119ee565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611d0a5784516001600160a01b031683529383019391830191600101611ce5565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206c778e67c812f8490ec4454630b72146c752263792d4fcf1e491ec402bc352ed64736f6c634300081500334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610215575f3560e01c806375f0a8741161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e14610637578063e2f456051461067b578063eba4c33314610690578063f2fde38b146106af578063f8b45b05146106ce575f80fd5b8063bbc0c742146105a7578063c0246668146105c5578063c18bc195146105e4578063c8c8ebe414610603578063d257b34f14610618575f80fd5b806392136913116100ee5780639213691314610521578063924de9b71461053657806395d89b4114610555578063a9059cbb14610569578063aacebbe314610588575f80fd5b806375f0a874146104bc5780637bce5a04146104db5780638a8c523c146104f05780638da5cb5b14610504575f80fd5b806349bd5a5e1161019f57806370a082311161016f57806370a0823114610422578063715018a61461045657806371fc46881461046a578063751039fc146104895780637571336a1461049d575f80fd5b806349bd5a5e146103805780634a62bb65146103b35780634fbee193146103cc5780636ddd171314610403575f80fd5b806318160ddd116101e557806318160ddd146102f25780631f2dc5ef14610310578063203e727e1461032557806323b872dd14610346578063313ce56714610365575f80fd5b806306fdde0314610220578063095ea7b31461024a57806310d5de53146102795780631694505e146102a7575f80fd5b3661021c57005b5f80fd5b34801561022b575f80fd5b506102346106e3565b60405161024191906119a3565b60405180910390f35b348015610255575f80fd5b50610269610264366004611a02565b610773565b6040519015158152602001610241565b348015610284575f80fd5b50610269610293366004611a2c565b600f6020525f908152604090205460ff1681565b3480156102b2575f80fd5b506102da7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610241565b3480156102fd575f80fd5b506002545b604051908152602001610241565b34801561031b575f80fd5b50610302600d5481565b348015610330575f80fd5b5061034461033f366004611a47565b610789565b005b348015610351575f80fd5b50610269610360366004611a5e565b61086f565b348015610370575f80fd5b5060405160128152602001610241565b34801561038b575f80fd5b506102da7f0000000000000000000000003b58761e9f9bd1585cb72f6c5dc77f4d330f874781565b3480156103be575f80fd5b50600a546102699060ff1681565b3480156103d7575f80fd5b506102696103e6366004611a2c565b6001600160a01b03165f908152600e602052604090205460ff1690565b34801561040e575f80fd5b50600a546102699062010000900460ff1681565b34801561042d575f80fd5b5061030261043c366004611a2c565b6001600160a01b03165f9081526020819052604090205490565b348015610461575f80fd5b50610344610917565b348015610475575f80fd5b50610344610484366004611a47565b61094c565b348015610494575f80fd5b506102696109e7565b3480156104a8575f80fd5b506103446104b7366004611aab565b610a23565b3480156104c7575f80fd5b506006546102da906001600160a01b031681565b3480156104e6575f80fd5b50610302600b5481565b3480156104fb575f80fd5b50610344610a77565b34801561050f575f80fd5b506005546001600160a01b03166102da565b34801561052c575f80fd5b50610302600c5481565b348015610541575f80fd5b50610344610550366004611ade565b610ab4565b348015610560575f80fd5b50610234610afa565b348015610574575f80fd5b50610269610583366004611a02565b610b09565b348015610593575f80fd5b506103446105a2366004611a2c565b610b15565b3480156105b2575f80fd5b50600a5461026990610100900460ff1681565b3480156105d0575f80fd5b506103446105df366004611aab565b610b9b565b3480156105ef575f80fd5b506103446105fe366004611a47565b610c23565b34801561060e575f80fd5b5061030260075481565b348015610623575f80fd5b50610269610632366004611a47565b610cf4565b348015610642575f80fd5b50610302610651366004611af7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610686575f80fd5b5061030260085481565b34801561069b575f80fd5b506103446106aa366004611a47565b610e4a565b3480156106ba575f80fd5b506103446106c9366004611a2c565b610e8e565b3480156106d9575f80fd5b5061030260095481565b6060600380546106f290611b2e565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90611b2e565b80156107695780601f1061074057610100808354040283529160200191610769565b820191905f5260205f20905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b5f61077f338484610f26565b5060015b92915050565b6005546001600160a01b031633146107bc5760405162461bcd60e51b81526004016107b390611b60565b60405180910390fd5b670de0b6b3a76400006103e86107d160025490565b6107dc906001611ba9565b6107e69190611bc0565b6107f09190611bc0565b8110156108575760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107b3565b61086981670de0b6b3a7640000611ba9565b60075550565b5f61087b848484611049565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108ff5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107b3565b61090c8533858403610f26565b506001949350505050565b6005546001600160a01b031633146109415760405162461bcd60e51b81526004016107b390611b60565b61094a5f6115ce565b565b6005546001600160a01b031633146109765760405162461bcd60e51b81526004016107b390611b60565b600b819055600d546019906109969061099084606461161f565b90611631565b11156109e45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c65737300000060448201526064016107b3565b50565b6005545f906001600160a01b03163314610a135760405162461bcd60e51b81526004016107b390611b60565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a4d5760405162461bcd60e51b81526004016107b390611b60565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610aa15760405162461bcd60e51b81526004016107b390611b60565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610ade5760405162461bcd60e51b81526004016107b390611b60565b600a8054911515620100000262ff000019909216919091179055565b6060600480546106f290611b2e565b5f61077f338484611049565b6005546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016107b390611b60565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bc55760405162461bcd60e51b81526004016107b390611b60565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c4d5760405162461bcd60e51b81526004016107b390611b60565b670de0b6b3a76400006103e8610c6260025490565b610c6d906005611ba9565b610c779190611bc0565b610c819190611bc0565b811015610cdc5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107b3565b610cee81670de0b6b3a7640000611ba9565b60095550565b6005545f906001600160a01b03163314610d205760405162461bcd60e51b81526004016107b390611b60565b620186a0610d2d60025490565b610d38906001611ba9565b610d429190611bc0565b821015610daf5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107b3565b6103e8610dbb60025490565b610dc6906005611ba9565b610dd09190611bc0565b821115610e3c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107b3565b50600881905560015b919050565b6005546001600160a01b03163314610e745760405162461bcd60e51b81526004016107b390611b60565b600c819055600d546019906109969061099084606461161f565b6005546001600160a01b03163314610eb85760405162461bcd60e51b81526004016107b390611b60565b6001600160a01b038116610f1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b3565b6109e4816115ce565b6001600160a01b038316610f885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107b3565b6001600160a01b038216610fe95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107b3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661106f5760405162461bcd60e51b81526004016107b390611bdf565b6001600160a01b0382166110955760405162461bcd60e51b81526004016107b390611c24565b805f036110ac576110a783835f61163c565b505050565b600a5460ff161561137e576005546001600160a01b038481169116148015906110e357506005546001600160a01b03838116911614155b80156110f757506001600160a01b03821615155b801561110e57506001600160a01b03821661dead14155b80156111245750600554600160a01b900460ff16155b1561137e57600a54610100900460ff166111ba576001600160a01b0383165f908152600e602052604090205460ff168061117557506001600160a01b0382165f908152600e602052604090205460ff165b6111ba5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107b3565b7f0000000000000000000000003b58761e9f9bd1585cb72f6c5dc77f4d330f87476001600160a01b0316836001600160a01b031614801561121357506001600160a01b0382165f908152600f602052604090205460ff16155b156112f6576007548111156112885760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107b3565b6009546001600160a01b0383165f908152602081905260409020546112ad9083611c67565b11156112f15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107b3565b61137e565b6001600160a01b0382165f908152600f602052604090205460ff1661137e576009546001600160a01b0383165f9081526020819052604090205461133a9083611c67565b111561137e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107b3565b305f90815260208190526040902054600854811080159081906113a95750600a5462010000900460ff165b80156113bf5750600554600160a01b900460ff16155b80156113fc57507f0000000000000000000000003b58761e9f9bd1585cb72f6c5dc77f4d330f87476001600160a01b0316846001600160a01b0316145b801561142057506001600160a01b0385165f908152600e602052604090205460ff16155b801561144457506001600160a01b0384165f908152600e602052604090205460ff16155b15611473576005805460ff60a01b1916600160a01b1790556114658361178f565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600e602052604090205460ff600160a01b9092048216159116806114bf57506001600160a01b0385165f908152600e602052604090205460ff165b156114c757505f5b5f81156115ba577f0000000000000000000000003b58761e9f9bd1585cb72f6c5dc77f4d330f87476001600160a01b0316866001600160a01b031614801561151057505f600c54115b1561153757611530600d54610990600c548861161f90919063ffffffff16565b905061159c565b7f0000000000000000000000003b58761e9f9bd1585cb72f6c5dc77f4d330f87476001600160a01b0316876001600160a01b031614801561157957505f600b54115b1561159c57611599600d54610990600b548861161f90919063ffffffff16565b90505b80156115ad576115ad87308361163c565b6115b78186611c7a565b94505b6115c587878761163c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f61162a8284611ba9565b9392505050565b5f61162a8284611bc0565b6001600160a01b0383166116625760405162461bcd60e51b81526004016107b390611bdf565b6001600160a01b0382166116885760405162461bcd60e51b81526004016107b390611c24565b6001600160a01b0383165f90815260208190526040902054818110156116ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107b3565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611735908490611c67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161178191815260200190565b60405180910390a350505050565b305f90815260208190526040812054908190036117aa575050565b5f6117c7836117c28460085460286117c29190611ba9565b6117d2565b90506110a7816117e6565b5f8183116117e0578261162a565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061181957611819611c8d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611895573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118b99190611ca1565b816001815181106118cc576118cc611c8d565b60200260200101906001600160a01b031690816001600160a01b031681525050611917307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f26565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926119729287925f92889291909116904290600401611cbc565b5f604051808303815f87803b158015611989575f80fd5b505af115801561199b573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b818110156119ce578581018301518582016040015282016119b2565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109e4575f80fd5b5f8060408385031215611a13575f80fd5b8235611a1e816119ee565b946020939093013593505050565b5f60208284031215611a3c575f80fd5b813561162a816119ee565b5f60208284031215611a57575f80fd5b5035919050565b5f805f60608486031215611a70575f80fd5b8335611a7b816119ee565b92506020840135611a8b816119ee565b929592945050506040919091013590565b80358015158114610e45575f80fd5b5f8060408385031215611abc575f80fd5b8235611ac7816119ee565b9150611ad560208401611a9c565b90509250929050565b5f60208284031215611aee575f80fd5b61162a82611a9c565b5f8060408385031215611b08575f80fd5b8235611b13816119ee565b91506020830135611b23816119ee565b809150509250929050565b600181811c90821680611b4257607f821691505b6020821081036117e057634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761078357610783611b95565b5f82611bda57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561078357610783611b95565b8181038181111561078357610783611b95565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611cb1575f80fd5b815161162a816119ee565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611d0a5784516001600160a01b031683529383019391830191600101611ce5565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206c778e67c812f8490ec4454630b72146c752263792d4fcf1e491ec402bc352ed64736f6c63430008150033

Deployed Bytecode Sourcemap

24875:9847:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9678:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11845:169;;;;;;;;;;-1:-1:-1;11845:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11845:169:0;1023:187:1;25609:63:0;;;;;;;;;;-1:-1:-1;25609:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24952:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1657:32:1;;;1639:51;;1627:2;1612:18;24952:51:0;1467:229:1;10798:108:0;;;;;;;;;;-1:-1:-1;10886:12:0;;10798:108;;;1847:25:1;;;1835:2;1820:18;10798:108:0;1701:177:1;25438:22:0;;;;;;;;;;;;;;;;28544:275;;;;;;;;;;-1:-1:-1;28544:275:0;;;;;:::i;:::-;;:::i;:::-;;12496:492;;;;;;;;;;-1:-1:-1;12496:492:0;;;;;:::i;:::-;;:::i;10640:93::-;;;;;;;;;;-1:-1:-1;10640:93:0;;10723:2;2671:36:1;;2659:2;2644:18;10640:93:0;2529:184:1;25010:38:0;;;;;;;;;;;;;;;25241:33;;;;;;;;;;-1:-1:-1;25241:33:0;;;;;;;;30366:126;;;;;;;;;;-1:-1:-1;30366:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30456:28:0;30432:4;30456:28;;;:19;:28;;;;;;;;;30366:126;25321:31;;;;;;;;;;-1:-1:-1;25321:31:0;;;;;;;;;;;10969:127;;;;;;;;;;-1:-1:-1;10969:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11070:18:0;11043:7;11070:18;;;;;;;;;;;;10969:127;2913:103;;;;;;;;;;;;;:::i;29462:227::-;;;;;;;;;;-1:-1:-1;29462:227:0;;;;;:::i;:::-;;:::i;27848:121::-;;;;;;;;;;;;;:::i;29091:167::-;;;;;;;;;;-1:-1:-1;29091:167:0;;;;;:::i;:::-;;:::i;25087:30::-;;;;;;;;;;-1:-1:-1;25087:30:0;;;;-1:-1:-1;;;;;25087:30:0;;;25361;;;;;;;;;;;;;;;;27684:112;;;;;;;;;;;;;:::i;2262:87::-;;;;;;;;;;-1:-1:-1;2335:6:0;;-1:-1:-1;;;;;2335:6:0;2262:87;;25398:31;;;;;;;;;;;;;;;;29354:100;;;;;;;;;;-1:-1:-1;29354:100:0;;;;;:::i;:::-;;:::i;9897:104::-;;;;;;;;;;;;;:::i;11309:175::-;;;;;;;;;;-1:-1:-1;11309:175:0;;;;;:::i;:::-;;:::i;30125:231::-;;;;;;;;;;-1:-1:-1;30125:231:0;;;;;:::i;:::-;;:::i;25281:33::-;;;;;;;;;;-1:-1:-1;25281:33:0;;;;;;;;;;;29935:182;;;;;;;;;;-1:-1:-1;29935:182:0;;;;;:::i;:::-;;:::i;28827:256::-;;;;;;;;;;-1:-1:-1;28827:256:0;;;;;:::i;:::-;;:::i;25126:35::-;;;;;;;;;;;;;;;;28039:497;;;;;;;;;;-1:-1:-1;28039:497:0;;;;;:::i;:::-;;:::i;11547:151::-;;;;;;;;;;-1:-1:-1;11547:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11663:18:0;;;11636:7;11663:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11547:151;25168:33;;;;;;;;;;;;;;;;29697:230;;;;;;;;;;-1:-1:-1;29697:230:0;;;;;:::i;:::-;;:::i;3171:201::-;;;;;;;;;;-1:-1:-1;3171:201:0;;;;;:::i;:::-;;:::i;25208:24::-;;;;;;;;;;;;;;;;9678:100;9732:13;9765:5;9758:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9678:100;:::o;11845:169::-;11928:4;11945:39;1015:10;11968:7;11977:6;11945:8;:39::i;:::-;-1:-1:-1;12002:4:0;11845:169;;;;;:::o;28544:275::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;;;;;;;;;28681:4:::1;28673;28652:13;10886:12:::0;;;10798:108;28652:13:::1;:17;::::0;28668:1:::1;28652:17;:::i;:::-;28651:26;;;;:::i;:::-;28650:35;;;;:::i;:::-;28640:6;:45;;28618:142;;;::::0;-1:-1:-1;;;28618:142:0;;5464:2:1;28618:142:0::1;::::0;::::1;5446:21:1::0;5503:2;5483:18;;;5476:30;5542:34;5522:18;;;5515:62;-1:-1:-1;;;5593:18:1;;;5586:45;5648:19;;28618:142:0::1;5262:411:1::0;28618:142:0::1;28794:17;:6:::0;28804::::1;28794:17;:::i;:::-;28771:20;:40:::0;-1:-1:-1;28544:275:0:o;12496:492::-;12636:4;12653:36;12663:6;12671:9;12682:6;12653:9;:36::i;:::-;-1:-1:-1;;;;;12729:19:0;;12702:24;12729:19;;;:11;:19;;;;;;;;1015:10;12729:33;;;;;;;;12781:26;;;;12773:79;;;;-1:-1:-1;;;12773:79:0;;5880:2:1;12773:79:0;;;5862:21:1;5919:2;5899:18;;;5892:30;5958:34;5938:18;;;5931:62;-1:-1:-1;;;6009:18:1;;;6002:38;6057:19;;12773:79:0;5678:404:1;12773:79:0;12888:57;12897:6;1015:10;12938:6;12919:16;:25;12888:8;:57::i;:::-;-1:-1:-1;12976:4:0;;12496:492;-1:-1:-1;;;;12496:492:0:o;2913:103::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;2978:30:::1;3005:1;2978:18;:30::i;:::-;2913:103::o:0;29462:227::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;29554:15:::1;:31:::0;;;29633:7:::1;::::0;29645:2:::1;::::0;29604:37:::1;::::0;:24:::1;29572:13:::0;29624:3:::1;29604:19;:24::i;:::-;:28:::0;::::1;:37::i;:::-;:43;;29596:85;;;::::0;-1:-1:-1;;;29596:85:0;;6289:2:1;29596:85:0::1;::::0;::::1;6271:21:1::0;6328:2;6308:18;;;6301:30;6367:31;6347:18;;;6340:59;6416:18;;29596:85:0::1;6087:353:1::0;29596:85:0::1;29462:227:::0;:::o;27848:121::-;2335:6;;27900:4;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;-1:-1:-1;27917:14:0::1;:22:::0;;-1:-1:-1;;27917:22:0::1;::::0;;;27848:121;:::o;29091:167::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29204:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29204:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29091:167::o;27684:112::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;27739:13:::1;:20:::0;;-1:-1:-1;;27770:18:0;;;;;27684:112::o;29354:100::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;29425:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29425:21:0;;::::1;::::0;;;::::1;::::0;;29354:100::o;9897:104::-;9953:13;9986:7;9979:14;;;;;:::i;11309:175::-;11395:4;11412:42;1015:10;11436:9;11447:6;11412:9;:42::i;30125:231::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;30285:15:::1;::::0;30242:59:::1;::::0;-1:-1:-1;;;;;30285:15:0;;::::1;::::0;30242:59;::::1;::::0;::::1;::::0;30285:15:::1;::::0;30242:59:::1;30312:15;:36:::0;;-1:-1:-1;;;;;;30312:36:0::1;-1:-1:-1::0;;;;;30312:36:0;;;::::1;::::0;;;::::1;::::0;;30125:231::o;29935:182::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30020:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30020:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30075:34;;1163:41:1;;;30075:34:0::1;::::0;1136:18:1;30075:34:0::1;;;;;;;29935:182:::0;;:::o;28827:256::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;28967:4:::1;28959;28938:13;10886:12:::0;;;10798:108;28938:13:::1;:17;::::0;28954:1:::1;28938:17;:::i;:::-;28937:26;;;;:::i;:::-;28936:35;;;;:::i;:::-;28926:6;:45;;28904:131;;;::::0;-1:-1:-1;;;28904:131:0;;6647:2:1;28904:131:0::1;::::0;::::1;6629:21:1::0;6686:2;6666:18;;;6659:30;6725:34;6705:18;;;6698:62;-1:-1:-1;;;6776:18:1;;;6769:34;6820:19;;28904:131:0::1;6445:400:1::0;28904:131:0::1;29058:17;:6:::0;29068::::1;29058:17;:::i;:::-;29046:9;:29:::0;-1:-1:-1;28827:256:0:o;28039:497::-;2335:6;;28147:4;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;28226:6:::1;28205:13;10886:12:::0;;;10798:108;28205:13:::1;:17;::::0;28221:1:::1;28205:17;:::i;:::-;28204:28;;;;:::i;:::-;28191:9;:41;;28169:144;;;::::0;-1:-1:-1;;;28169:144:0;;7052:2:1;28169:144:0::1;::::0;::::1;7034:21:1::0;7091:2;7071:18;;;7064:30;7130:34;7110:18;;;7103:62;-1:-1:-1;;;7181:18:1;;;7174:51;7242:19;;28169:144:0::1;6850:417:1::0;28169:144:0::1;28381:4;28360:13;10886:12:::0;;;10798:108;28360:13:::1;:17;::::0;28376:1:::1;28360:17;:::i;:::-;28359:26;;;;:::i;:::-;28346:9;:39;;28324:141;;;::::0;-1:-1:-1;;;28324:141:0;;7474:2:1;28324:141:0::1;::::0;::::1;7456:21:1::0;7513:2;7493:18;;;7486:30;7552:34;7532:18;;;7525:62;-1:-1:-1;;;7603:18:1;;;7596:50;7663:19;;28324:141:0::1;7272:416:1::0;28324:141:0::1;-1:-1:-1::0;28476:18:0::1;:30:::0;;;28524:4:::1;2553:1;28039:497:::0;;;:::o;29697:230::-;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;29790:16:::1;:32:::0;;;29871:7:::1;::::0;29883:2:::1;::::0;29841:38:::1;::::0;:25:::1;29809:13:::0;29862:3:::1;29841:20;:25::i;3171:201::-:0;2335:6;;-1:-1:-1;;;;;2335:6:0;1015:10;2482:23;2474:68;;;;-1:-1:-1;;;2474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3260:22:0;::::1;3252:73;;;::::0;-1:-1:-1;;;3252:73:0;;7895:2:1;3252:73:0::1;::::0;::::1;7877:21:1::0;7934:2;7914:18;;;7907:30;7973:34;7953:18;;;7946:62;-1:-1:-1;;;8024:18:1;;;8017:36;8070:19;;3252:73:0::1;7693:402:1::0;3252:73:0::1;3336:28;3355:8;3336:18;:28::i;15337:380::-:0;-1:-1:-1;;;;;15473:19:0;;15465:68;;;;-1:-1:-1;;;15465:68:0;;8302:2:1;15465:68:0;;;8284:21:1;8341:2;8321:18;;;8314:30;8380:34;8360:18;;;8353:62;-1:-1:-1;;;8431:18:1;;;8424:34;8475:19;;15465:68:0;8100:400:1;15465:68:0;-1:-1:-1;;;;;15552:21:0;;15544:68;;;;-1:-1:-1;;;15544:68:0;;8707:2:1;15544:68:0;;;8689:21:1;8746:2;8726:18;;;8719:30;8785:34;8765:18;;;8758:62;-1:-1:-1;;;8836:18:1;;;8829:32;8878:19;;15544:68:0;8505:398:1;15544:68:0;-1:-1:-1;;;;;15625:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15677:32;;1847:25:1;;;15677:32:0;;1820:18:1;15677:32:0;;;;;;;15337:380;;;:::o;30500:3191::-;-1:-1:-1;;;;;30632:18:0;;30624:68;;;;-1:-1:-1;;;30624:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30711:16:0;;30703:64;;;;-1:-1:-1;;;30703:64:0;;;;;;;:::i;:::-;30784:6;30794:1;30784:11;30780:93;;30812:28;30828:4;30834:2;30838:1;30812:15;:28::i;:::-;30500:3191;;;:::o;30780:93::-;30889:14;;;;30885:1430;;;2335:6;;-1:-1:-1;;;;;30942:15:0;;;2335:6;;30942:15;;;;:49;;-1:-1:-1;2335:6:0;;-1:-1:-1;;;;;30978:13:0;;;2335:6;;30978:13;;30942:49;:86;;;;-1:-1:-1;;;;;;31012:16:0;;;;30942:86;:128;;;;-1:-1:-1;;;;;;31049:21:0;;31063:6;31049:21;;30942:128;:158;;;;-1:-1:-1;31092:8:0;;-1:-1:-1;;;31092:8:0;;;;31091:9;30942:158;30920:1384;;;31140:13;;;;;;;31135:223;;-1:-1:-1;;;;;31212:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31241:23:0;;;;;;:19;:23;;;;;;;;31212:52;31178:160;;;;-1:-1:-1;;;31178:160:0;;9920:2:1;31178:160:0;;;9902:21:1;9959:2;9939:18;;;9932:30;-1:-1:-1;;;9978:18:1;;;9971:52;10040:18;;31178:160:0;9718:346:1;31178:160:0;31572:13;-1:-1:-1;;;;;31564:21:0;:4;-1:-1:-1;;;;;31564:21:0;;:82;;;;-1:-1:-1;;;;;;31611:35:0;;;;;;:31;:35;;;;;;;;31610:36;31564:82;31538:751;;;31733:20;;31723:6;:30;;31689:169;;;;-1:-1:-1;;;31689:169:0;;10271:2:1;31689:169:0;;;10253:21:1;10310:2;10290:18;;;10283:30;10349:34;10329:18;;;10322:62;-1:-1:-1;;;10400:18:1;;;10393:51;10461:19;;31689:169:0;10069:417:1;31689:169:0;31941:9;;-1:-1:-1;;;;;11070:18:0;;11043:7;11070:18;;;;;;;;;;;31915:22;;:6;:22;:::i;:::-;:35;;31881:140;;;;-1:-1:-1;;;31881:140:0;;10823:2:1;31881:140:0;;;10805:21:1;10862:2;10842:18;;;10835:30;-1:-1:-1;;;10881:18:1;;;10874:49;10940:18;;31881:140:0;10621:343:1;31881:140:0;31538:751;;;-1:-1:-1;;;;;32069:35:0;;;;;;:31;:35;;;;;;;;32064:225;;32189:9;;-1:-1:-1;;;;;11070:18:0;;11043:7;11070:18;;;;;;;;;;;32163:22;;:6;:22;:::i;:::-;:35;;32129:140;;;;-1:-1:-1;;;32129:140:0;;10823:2:1;32129:140:0;;;10805:21:1;10862:2;10842:18;;;10835:30;-1:-1:-1;;;10881:18:1;;;10874:49;10940:18;;32129:140:0;10621:343:1;32129:140:0;32376:4;32327:28;11070:18;;;;;;;;;;;32434;;32410:42;;;;;;;32483:35;;-1:-1:-1;32507:11:0;;;;;;;32483:35;:61;;;;-1:-1:-1;32536:8:0;;-1:-1:-1;;;32536:8:0;;;;32535:9;32483:61;:97;;;;;32567:13;-1:-1:-1;;;;;32561:19:0;:2;-1:-1:-1;;;;;32561:19:0;;32483:97;:140;;;;-1:-1:-1;;;;;;32598:25:0;;;;;;:19;:25;;;;;;;;32597:26;32483:140;:181;;;;-1:-1:-1;;;;;;32641:23:0;;;;;;:19;:23;;;;;;;;32640:24;32483:181;32465:319;;;32691:8;:15;;-1:-1:-1;;;;32691:15:0;-1:-1:-1;;;32691:15:0;;;32723:16;32732:6;32723:8;:16::i;:::-;32756:8;:16;;-1:-1:-1;;;;32756:16:0;;;32465:319;32812:8;;-1:-1:-1;;;;;32922:25:0;;32796:12;32922:25;;;:19;:25;;;;;;32812:8;-1:-1:-1;;;32812:8:0;;;;;32811:9;;32922:25;;:52;;-1:-1:-1;;;;;;32951:23:0;;;;;;:19;:23;;;;;;;;32922:52;32918:100;;;-1:-1:-1;33001:5:0;32918:100;33030:12;33135:7;33131:507;;;33193:13;-1:-1:-1;;;;;33187:19:0;:2;-1:-1:-1;;;;;33187:19:0;;:43;;;;;33229:1;33210:16;;:20;33187:43;33183:306;;;33258:41;33291:7;;33258:28;33269:16;;33258:6;:10;;:28;;;;:::i;:41::-;33251:48;;33183:306;;;33369:13;-1:-1:-1;;;;;33361:21:0;:4;-1:-1:-1;;;;;33361:21:0;;:44;;;;;33404:1;33386:15;;:19;33361:44;33357:132;;;33433:40;33465:7;;33433:27;33444:15;;33433:6;:10;;:27;;;;:::i;:40::-;33426:47;;33357:132;33509:8;;33505:91;;33538:42;33554:4;33568;33575;33538:15;:42::i;:::-;33612:14;33622:4;33612:14;;:::i;:::-;;;33131:507;33650:33;33666:4;33672:2;33676:6;33650:15;:33::i;:::-;30613:3078;;;;30500:3191;;;:::o;3532:191::-;3625:6;;;-1:-1:-1;;;;;3642:17:0;;;-1:-1:-1;;;;;;3642:17:0;;;;;;;3675:40;;3625:6;;;3642:17;3625:6;;3675:40;;3606:16;;3675:40;3595:128;3532:191;:::o;20790:98::-;20848:7;20875:5;20879:1;20875;:5;:::i;:::-;20868:12;20790:98;-1:-1:-1;;;20790:98:0:o;21189:::-;21247:7;21274:5;21278:1;21274;:5;:::i;13478:733::-;-1:-1:-1;;;;;13618:20:0;;13610:70;;;;-1:-1:-1;;;13610:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13699:23:0;;13691:71;;;;-1:-1:-1;;;13691:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13859:17:0;;13835:21;13859:17;;;;;;;;;;;13895:23;;;;13887:74;;;;-1:-1:-1;;;13887:74:0;;11304:2:1;13887:74:0;;;11286:21:1;11343:2;11323:18;;;11316:30;11382:34;11362:18;;;11355:62;-1:-1:-1;;;11433:18:1;;;11426:36;11479:19;;13887:74:0;11102:402:1;13887:74:0;-1:-1:-1;;;;;13997:17:0;;;:9;:17;;;;;;;;;;;14017:22;;;13997:42;;14061:20;;;;;;;;:30;;14033:6;;13997:9;14061:30;;14033:6;;14061:30;:::i;:::-;;;;;;;;14126:9;-1:-1:-1;;;;;14109:35:0;14118:6;-1:-1:-1;;;;;14109:35:0;;14137:6;14109:35;;;;1847:25:1;;1835:2;1820:18;;1701:177;14109:35:0;;;;;;;;13599:612;13478:733;;;:::o;34404:313::-;34501:4;34457:23;11070:18;;;;;;;;;;;;34522:20;;;34518:59;;34559:7;34404:313;:::o;34518:59::-;34589:18;34610:58;34614:6;34622:45;34626:15;34643:18;;34664:2;34643:23;;;;:::i;:::-;34622:3;:45::i;34610:58::-;34589:79;;34681:28;34698:10;34681:16;:28::i;33699:98::-;33756:7;33783:1;33781;:3;33780:9;;33788:1;33780:9;;;-1:-1:-1;33786:1:0;33699:98;-1:-1:-1;33699:98:0:o;33805:591::-;33955:16;;;33969:1;33955:16;;;;;;;;33931:21;;33955:16;;;;;;;;;;-1:-1:-1;33955:16:0;33931:40;;34000:4;33982;33987:1;33982:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33982:23:0;;;-1:-1:-1;;;;;33982:23:0;;;;;34026:15;-1:-1:-1;;;;;34026:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34016:4;34021:1;34016:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34016:32:0;;;-1:-1:-1;;;;;34016:32:0;;;;;34061:62;34078:4;34093:15;34111:11;34061:8;:62::i;:::-;34332:15;;34162:226;;-1:-1:-1;;;34162:226:0;;-1:-1:-1;;;;;34162:15:0;:66;;;;;:226;;34243:11;;34269:1;;34313:4;;34332:15;;;;;34362;;34162:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33860:536;33805:591;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1883:180::-;1942:6;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;-1:-1:-1;2034:23:1;;1883:180;-1:-1:-1;1883:180:1:o;2068:456::-;2145:6;2153;2161;2214:2;2202:9;2193:7;2189:23;2185:32;2182:52;;;2230:1;2227;2220:12;2182:52;2269:9;2256:23;2288:31;2313:5;2288:31;:::i;:::-;2338:5;-1:-1:-1;2395:2:1;2380:18;;2367:32;2408:33;2367:32;2408:33;:::i;:::-;2068:456;;2460:7;;-1:-1:-1;;;2514:2:1;2499:18;;;;2486:32;;2068:456::o;2926:160::-;2991:20;;3047:13;;3040:21;3030:32;;3020:60;;3076:1;3073;3066:12;3091:315;3156:6;3164;3217:2;3205:9;3196:7;3192:23;3188:32;3185:52;;;3233:1;3230;3223:12;3185:52;3272:9;3259:23;3291:31;3316:5;3291:31;:::i;:::-;3341:5;-1:-1:-1;3365:35:1;3396:2;3381:18;;3365:35;:::i;:::-;3355:45;;3091:315;;;;;:::o;3411:180::-;3467:6;3520:2;3508:9;3499:7;3495:23;3491:32;3488:52;;;3536:1;3533;3526:12;3488:52;3559:26;3575:9;3559:26;:::i;3596:388::-;3664:6;3672;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3780:9;3767:23;3799:31;3824:5;3799:31;:::i;:::-;3849:5;-1:-1:-1;3906:2:1;3891:18;;3878:32;3919:33;3878:32;3919:33;:::i;:::-;3971:7;3961:17;;;3596:388;;;;;:::o;3989:380::-;4068:1;4064:12;;;;4111;;;4132:61;;4186:4;4178:6;4174:17;4164:27;;4132:61;4239:2;4231:6;4228:14;4208:18;4205:38;4202:161;;4285:10;4280:3;4276:20;4273:1;4266:31;4320:4;4317:1;4310:15;4348:4;4345:1;4338:15;4374:356;4576:2;4558:21;;;4595:18;;;4588:30;4654:34;4649:2;4634:18;;4627:62;4721:2;4706:18;;4374:356::o;4735:127::-;4796:10;4791:3;4787:20;4784:1;4777:31;4827:4;4824:1;4817:15;4851:4;4848:1;4841:15;4867:168;4940:9;;;4971;;4988:15;;;4982:22;;4968:37;4958:71;;5009:18;;:::i;5040:217::-;5080:1;5106;5096:132;;5150:10;5145:3;5141:20;5138:1;5131:31;5185:4;5182:1;5175:15;5213:4;5210:1;5203:15;5096:132;-1:-1:-1;5242:9:1;;5040:217::o;8908:401::-;9110:2;9092:21;;;9149:2;9129:18;;;9122:30;9188:34;9183:2;9168:18;;9161:62;-1:-1:-1;;;9254:2:1;9239:18;;9232:35;9299:3;9284:19;;8908:401::o;9314:399::-;9516:2;9498:21;;;9555:2;9535:18;;;9528:30;9594:34;9589:2;9574:18;;9567:62;-1:-1:-1;;;9660:2:1;9645:18;;9638:33;9703:3;9688:19;;9314:399::o;10491:125::-;10556:9;;;10577:10;;;10574:36;;;10590:18;;:::i;10969:128::-;11036:9;;;11057:11;;;11054:37;;;11071:18;;:::i;11641:127::-;11702:10;11697:3;11693:20;11690:1;11683:31;11733:4;11730:1;11723:15;11757:4;11754:1;11747:15;11773:251;11843:6;11896:2;11884:9;11875:7;11871:23;11867:32;11864:52;;;11912:1;11909;11902:12;11864:52;11944:9;11938:16;11963:31;11988:5;11963:31;:::i;12029:980::-;12291:4;12339:3;12328:9;12324:19;12370:6;12359:9;12352:25;12396:2;12434:6;12429:2;12418:9;12414:18;12407:34;12477:3;12472:2;12461:9;12457:18;12450:31;12501:6;12536;12530:13;12567:6;12559;12552:22;12605:3;12594:9;12590:19;12583:26;;12644:2;12636:6;12632:15;12618:29;;12665:1;12675:195;12689:6;12686:1;12683:13;12675:195;;;12754:13;;-1:-1:-1;;;;;12750:39:1;12738:52;;12845:15;;;;12810:12;;;;12786:1;12704:9;12675:195;;;-1:-1:-1;;;;;;;12926:32:1;;;;12921:2;12906:18;;12899:60;-1:-1:-1;;;12990:3:1;12975:19;12968:35;12887:3;12029:980;-1:-1:-1;;;12029:980:1:o

Swarm Source

ipfs://6c778e67c812f8490ec4454630b72146c752263792d4fcf1e491ec402bc352ed
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.