ETH Price: $2,975.97 (+2.60%)
Gas: 1 Gwei

Token

MuskX (MuskX)
 

Overview

Max Total Supply

69,000,000 MuskX

Holders

470

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
68,619.161592817092252133 MuskX

Value
$0.00
0xd84d4e5b21d2fc6752f87d620e13b5d1bd3fb206
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:
MuskX

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

Every tweet. Every time. Every token. Always in. Always first. Always meta. MuskX. MuskX dynamically changes current name based on Elon Musk's tweets.

Telegram: https://t.me/MUSKXCOIN
Twitter: https://twitter.com/muskxcoinerc/
Website: https://everymusktweet.com
Medium: https://medium.com/@MuskX

*/

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

    string private _tokenName;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;

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

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

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

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

    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("MuskX", "MuskX") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        _tokenName = "MuskX";

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;

        uint256 _divisor = 100;

        uint256 totalSupply = 69_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;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;

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

        divisor = _divisor;

        marketingWallet = address(0xF7D81a07913bEE0Fa5D8E14b48aBf19471cc9896);
        developmentWallet = address(0x3E9639BA4B30893CfF0f748183FE7e1159AcaAF9);

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees.mul(100).div(divisor) <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees.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() &&
                from != developmentWallet &&
                to != developmentWallet &&
                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;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForMarketing = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(divisor);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing = (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(divisor);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForMarketing = (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function 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);
    }

    function name() public view virtual override returns (string memory) {
        return _tokenName;
    }

    function changeTokenName(string memory newName) public {
        require(msg.sender == marketingWallet, "Only the marketing wallet can change the token name.");
        _tokenName = newName;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"changeTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff191660011790553480156200001f575f80fd5b5060408051808201825260058082526409aeae6d6b60db1b60208084018290528451808601909552918452908301529060036200005d8382620006c1565b5060046200006c8282620006c1565b5050506200008962000083620003c860201b60201c565b620003cc565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ab8160016200041d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200011a91906200078d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000166573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200018c91906200078d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001d7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001fd91906200078d565b6001600160a01b031660a0819052620002189060016200041d565b60408051808201909152600581526409aeae6d6b60db1b6020820152600690620002439082620006c1565b5060015f818160646a3913517ebd3c0c650000008162000265826002620007d0565b620002719190620007f0565b600955606462000283826002620007d0565b6200028f9190620007f0565b600b55620186a0620002a3826014620007d0565b620002af9190620007f0565b600a55600e869055600f859055620002c8858762000810565b600d5560118490556012839055620002e1838562000810565b60105560138290556007805474f7d81a07913bee0fa5d8e14b48abf19471cc989600610100600160a81b0319909116179055600880546001600160a01b031916733e9639ba4b30893cff0f748183fe7e1159acaaf917905562000358620003506005546001600160a01b031690565b600162000495565b6200036530600162000495565b6200037461dead600162000495565b620003936200038b6005546001600160a01b031690565b60016200041d565b620003a03060016200041d565b620003af61dead60016200041d565b620003bb33826200053d565b5050505050505062000826565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b031633146200046b5760405162461bcd60e51b815260206004820181905260248201525f8051602062002a2883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004df5760405162461bcd60e51b815260206004820181905260248201525f8051602062002a28833981519152604482015260640162000462565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000462565b8060025f828254620005a8919062000810565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005d690849062000810565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200064d57607f821691505b6020821081036200066c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200061f57805f5260205f20601f840160051c81016020851015620006995750805b601f840160051c820191505b81811015620006ba575f8155600101620006a5565b5050505050565b81516001600160401b03811115620006dd57620006dd62000624565b620006f581620006ee845462000638565b8462000672565b602080601f8311600181146200072b575f8415620007135750858301515b5f19600386901b1c1916600185901b17855562000785565b5f85815260208120601f198616915b828110156200075b578886015182559484019460019091019084016200073a565b50858210156200077957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602082840312156200079e575f80fd5b81516001600160a01b0381168114620007b5575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007ea57620007ea620007bc565b92915050565b5f826200080b57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007ea57620007ea620007bc565b60805160a0516121a8620008805f395f81816103f2015281816113a0015281816115a50152818161169f0152818161174201526117fc01525f818161031b01528181611a9401528181611b4b0152611b8a01526121a85ff3fe608060405260043610610257575f3560e01c80637bce5a041161013f578063c04a5414116100b3578063dd62ed3e11610078578063dd62ed3e14610705578063e2f4560514610749578063f11a24d31461075e578063f2fde38b14610773578063f637434214610792578063f8b45b05146107a7575f80fd5b8063c04a54141461067e578063c18bc1951461069d578063c8c8ebe4146106bc578063d257b34f146106d1578063d85ba063146106f0575f80fd5b806395d89b411161010457806395d89b41146105d0578063a9059cbb146105e4578063aacebbe314610603578063b0018bfc14610622578063bbc0c74214610641578063c02466681461065f575f80fd5b80637bce5a04146105565780638a8c523c1461056b5780638da5cb5b1461057f578063921369131461059c578063924de9b7146105b1575f80fd5b806349bd5a5e116101d65780636ddd17131161019b5780636ddd17131461049857806370a08231146104b7578063715018a6146104eb578063751039fc146104ff5780637571336a1461051357806375f0a87414610532575f80fd5b806349bd5a5e146103e15780634a62bb65146104145780634fbee1931461042d57806366ca9b83146104645780636a486a8e14610483575f80fd5b806318160ddd1161021c57806318160ddd146103555780631f2dc5ef14610373578063203e727e1461038857806323b872dd146103a7578063313ce567146103c6575f80fd5b806302dbd8f81461026257806306fdde0314610283578063095ea7b3146102ad57806310d5de53146102dc5780631694505e1461030a575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061028161027c366004611c01565b6107bc565b005b34801561028e575f80fd5b50610297610876565b6040516102a49190611c21565b60405180910390f35b3480156102b8575f80fd5b506102cc6102c7366004611c81565b610906565b60405190151581526020016102a4565b3480156102e7575f80fd5b506102cc6102f6366004611cab565b60156020525f908152604090205460ff1681565b348015610315575f80fd5b5061033d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a4565b348015610360575f80fd5b506002545b6040519081526020016102a4565b34801561037e575f80fd5b5061036560135481565b348015610393575f80fd5b506102816103a2366004611cc6565b61091c565b3480156103b2575f80fd5b506102cc6103c1366004611cdd565b6109f9565b3480156103d1575f80fd5b50604051601281526020016102a4565b3480156103ec575f80fd5b5061033d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561041f575f80fd5b50600c546102cc9060ff1681565b348015610438575f80fd5b506102cc610447366004611cab565b6001600160a01b03165f9081526014602052604090205460ff1690565b34801561046f575f80fd5b5061028161047e366004611c01565b610aa1565b34801561048e575f80fd5b5061036560105481565b3480156104a3575f80fd5b50600c546102cc9062010000900460ff1681565b3480156104c2575f80fd5b506103656104d1366004611cab565b6001600160a01b03165f9081526020819052604090205490565b3480156104f6575f80fd5b50610281610afa565b34801561050a575f80fd5b506102cc610b2f565b34801561051e575f80fd5b5061028161052d366004611d2a565b610b6b565b34801561053d575f80fd5b5060075461033d9061010090046001600160a01b031681565b348015610561575f80fd5b50610365600e5481565b348015610576575f80fd5b50610281610bbf565b34801561058a575f80fd5b506005546001600160a01b031661033d565b3480156105a7575f80fd5b5061036560115481565b3480156105bc575f80fd5b506102816105cb366004611d5d565b610bfc565b3480156105db575f80fd5b50610297610c42565b3480156105ef575f80fd5b506102cc6105fe366004611c81565b610c51565b34801561060e575f80fd5b5061028161061d366004611cab565b610c5d565b34801561062d575f80fd5b5061028161063c366004611d8a565b610cee565b34801561064c575f80fd5b50600c546102cc90610100900460ff1681565b34801561066a575f80fd5b50610281610679366004611d2a565b610d76565b348015610689575f80fd5b5060085461033d906001600160a01b031681565b3480156106a8575f80fd5b506102816106b7366004611cc6565b610dfe565b3480156106c7575f80fd5b5061036560095481565b3480156106dc575f80fd5b506102cc6106eb366004611cc6565b610ecf565b3480156106fb575f80fd5b50610365600d5481565b348015610710575f80fd5b5061036561071f366004611e35565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610754575f80fd5b50610365600a5481565b348015610769575f80fd5b50610365600f5481565b34801561077e575f80fd5b5061028161078d366004611cab565b611025565b34801561079d575f80fd5b5061036560125481565b3480156107b2575f80fd5b50610365600b5481565b6005546001600160a01b031633146107ef5760405162461bcd60e51b81526004016107e690611e6c565b60405180910390fd5b601182905560128190556108038183611eb5565b6010819055601354601991610824919061081e9060646110c0565b906110d2565b11156108725760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c65737300000060448201526064016107e6565b5050565b60606006805461088590611ec8565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190611ec8565b80156108fc5780601f106108d3576101008083540402835291602001916108fc565b820191905f5260205f20905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b5f6109123384846110dd565b5060015b92915050565b6005546001600160a01b031633146109465760405162461bcd60e51b81526004016107e690611e6c565b670de0b6b3a76400006103e861095b60025490565b610966906001611efa565b6109709190611f11565b61097a9190611f11565b8110156109e15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107e6565b6109f381670de0b6b3a7640000611efa565b60095550565b5f610a05848484611200565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610a895760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107e6565b610a9685338584036110dd565b506001949350505050565b6005546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107e690611e6c565b600e829055600f819055610adf8183611eb5565b600d819055601354601991610824919061081e9060646110c0565b6005546001600160a01b03163314610b245760405162461bcd60e51b81526004016107e690611e6c565b610b2d5f611844565b565b6005545f906001600160a01b03163314610b5b5760405162461bcd60e51b81526004016107e690611e6c565b50600c805460ff19169055600190565b6005546001600160a01b03163314610b955760405162461bcd60e51b81526004016107e690611e6c565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610be95760405162461bcd60e51b81526004016107e690611e6c565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610c265760405162461bcd60e51b81526004016107e690611e6c565b600c8054911515620100000262ff000019909216919091179055565b60606004805461088590611ec8565b5f610912338484611200565b6005546001600160a01b03163314610c875760405162461bcd60e51b81526004016107e690611e6c565b6007546040516001600160a01b036101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60075461010090046001600160a01b03163314610d6a5760405162461bcd60e51b815260206004820152603460248201527f4f6e6c7920746865206d61726b6574696e672077616c6c65742063616e20636860448201527330b733b2903a3432903a37b5b2b7103730b6b29760611b60648201526084016107e6565b60066108728282611f7b565b6005546001600160a01b03163314610da05760405162461bcd60e51b81526004016107e690611e6c565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e285760405162461bcd60e51b81526004016107e690611e6c565b670de0b6b3a76400006103e8610e3d60025490565b610e48906005611efa565b610e529190611f11565b610e5c9190611f11565b811015610eb75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107e6565b610ec981670de0b6b3a7640000611efa565b600b5550565b6005545f906001600160a01b03163314610efb5760405162461bcd60e51b81526004016107e690611e6c565b620186a0610f0860025490565b610f13906001611efa565b610f1d9190611f11565b821015610f8a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107e6565b6103e8610f9660025490565b610fa1906005611efa565b610fab9190611f11565b8211156110175760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107e6565b50600a81905560015b919050565b6005546001600160a01b0316331461104f5760405162461bcd60e51b81526004016107e690611e6c565b6001600160a01b0381166110b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e6565b6110bd81611844565b50565b5f6110cb8284611efa565b9392505050565b5f6110cb8284611f11565b6001600160a01b03831661113f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e6565b6001600160a01b0382166111a05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e6565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112265760405162461bcd60e51b81526004016107e690612037565b6001600160a01b03821661124c5760405162461bcd60e51b81526004016107e69061207c565b805f036112635761125e83835f611895565b505050565b600c5460ff1615611562576005546001600160a01b0384811691161480159061129a57506005546001600160a01b03838116911614155b80156112b457506008546001600160a01b03848116911614155b80156112ce57506008546001600160a01b03838116911614155b80156112e257506001600160a01b03821615155b80156112f957506001600160a01b03821661dead14155b8015611308575060075460ff16155b1561156257600c54610100900460ff1661139e576001600160a01b0383165f9081526014602052604090205460ff168061135957506001600160a01b0382165f9081526014602052604090205460ff165b61139e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107e6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156113f757506001600160a01b0382165f9081526015602052604090205460ff16155b156114da5760095481111561146c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107e6565b600b546001600160a01b0383165f908152602081905260409020546114919083611eb5565b11156114d55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107e6565b611562565b6001600160a01b0382165f9081526015602052604090205460ff1661156257600b546001600160a01b0383165f9081526020819052604090205461151e9083611eb5565b11156115625760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107e6565b305f90815260208190526040902054600a548110801590819061158d5750600c5462010000900460ff165b801561159c575060075460ff16155b80156115d957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156115fd57506001600160a01b0385165f9081526014602052604090205460ff16155b801561162157506001600160a01b0384165f9081526014602052604090205460ff16155b15611647576007805460ff1916600117905561163c836119e8565b6007805460ff191690555b6007546001600160a01b0386165f9081526014602052604090205460ff9182161591168061168c57506001600160a01b0385165f9081526014602052604090205460ff165b1561169457505f5b5f805f831561182e577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156116df57505f601054115b15611740576116ff60135461081e6010548a6110c090919063ffffffff16565b9250601054601254846117129190611efa565b61171c9190611f11565b91506010546011548461172f9190611efa565b6117399190611f11565b90506117df565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561178257505f600d54115b156117df576117a260135461081e600d548a6110c090919063ffffffff16565b9250600d54600f54846117b59190611efa565b6117bf9190611f11565b9150600d54600e54846117d29190611efa565b6117dc9190611f11565b90505b82156117f0576117f0893085611895565b811561182157611821307f000000000000000000000000000000000000000000000000000000000000000084611895565b61182b83886120bf565b96505b611839898989611895565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166118bb5760405162461bcd60e51b81526004016107e690612037565b6001600160a01b0382166118e15760405162461bcd60e51b81526004016107e69061207c565b6001600160a01b0383165f90815260208190526040902054818110156119585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e6565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061198e908490611eb5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119da91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611a03575050565b5f611a2083611a1b84600a546028611a1b9190611efa565b611a2b565b905061125e81611a3f565b5f818311611a3957826110cb565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a7257611a726120d2565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b1291906120e6565b81600181518110611b2557611b256120d2565b60200260200101906001600160a01b031690816001600160a01b031681525050611b70307f0000000000000000000000000000000000000000000000000000000000000000846110dd565b60075460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611bd09287925f928892610100909204909116904290600401612101565b5f604051808303815f87803b158015611be7575f80fd5b505af1158015611bf9573d5f803e3d5ffd5b505050505050565b5f8060408385031215611c12575f80fd5b50508035926020909101359150565b5f602080835283518060208501525f5b81811015611c4d57858101830151858201604001528201611c31565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146110bd575f80fd5b5f8060408385031215611c92575f80fd5b8235611c9d81611c6d565b946020939093013593505050565b5f60208284031215611cbb575f80fd5b81356110cb81611c6d565b5f60208284031215611cd6575f80fd5b5035919050565b5f805f60608486031215611cef575f80fd5b8335611cfa81611c6d565b92506020840135611d0a81611c6d565b929592945050506040919091013590565b80358015158114611020575f80fd5b5f8060408385031215611d3b575f80fd5b8235611d4681611c6d565b9150611d5460208401611d1b565b90509250929050565b5f60208284031215611d6d575f80fd5b6110cb82611d1b565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215611d9a575f80fd5b813567ffffffffffffffff80821115611db1575f80fd5b818401915084601f830112611dc4575f80fd5b813581811115611dd657611dd6611d76565b604051601f8201601f19908116603f01168101908382118183101715611dfe57611dfe611d76565b81604052828152876020848701011115611e16575f80fd5b826020860160208301375f928101602001929092525095945050505050565b5f8060408385031215611e46575f80fd5b8235611e5181611c6d565b91506020830135611e6181611c6d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561091657610916611ea1565b600181811c90821680611edc57607f821691505b602082108103611a3957634e487b7160e01b5f52602260045260245ffd5b808202811582820484141761091657610916611ea1565b5f82611f2b57634e487b7160e01b5f52601260045260245ffd5b500490565b601f82111561125e57805f5260205f20601f840160051c81016020851015611f555750805b601f840160051c820191505b81811015611f74575f8155600101611f61565b5050505050565b815167ffffffffffffffff811115611f9557611f95611d76565b611fa981611fa38454611ec8565b84611f30565b602080601f831160018114611fdc575f8415611fc55750858301515b5f19600386901b1c1916600185901b178555611bf9565b5f85815260208120601f198616915b8281101561200a57888601518255948401946001909101908401611feb565b508582101561202757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561091657610916611ea1565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156120f6575f80fd5b81516110cb81611c6d565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156121515784516001600160a01b03168352938301939183019160010161212c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d90196a0f0f03de0103199021948fa8db9f1e0ca14ac238c9515a82975c0bbd564736f6c634300081700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610257575f3560e01c80637bce5a041161013f578063c04a5414116100b3578063dd62ed3e11610078578063dd62ed3e14610705578063e2f4560514610749578063f11a24d31461075e578063f2fde38b14610773578063f637434214610792578063f8b45b05146107a7575f80fd5b8063c04a54141461067e578063c18bc1951461069d578063c8c8ebe4146106bc578063d257b34f146106d1578063d85ba063146106f0575f80fd5b806395d89b411161010457806395d89b41146105d0578063a9059cbb146105e4578063aacebbe314610603578063b0018bfc14610622578063bbc0c74214610641578063c02466681461065f575f80fd5b80637bce5a04146105565780638a8c523c1461056b5780638da5cb5b1461057f578063921369131461059c578063924de9b7146105b1575f80fd5b806349bd5a5e116101d65780636ddd17131161019b5780636ddd17131461049857806370a08231146104b7578063715018a6146104eb578063751039fc146104ff5780637571336a1461051357806375f0a87414610532575f80fd5b806349bd5a5e146103e15780634a62bb65146104145780634fbee1931461042d57806366ca9b83146104645780636a486a8e14610483575f80fd5b806318160ddd1161021c57806318160ddd146103555780631f2dc5ef14610373578063203e727e1461038857806323b872dd146103a7578063313ce567146103c6575f80fd5b806302dbd8f81461026257806306fdde0314610283578063095ea7b3146102ad57806310d5de53146102dc5780631694505e1461030a575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061028161027c366004611c01565b6107bc565b005b34801561028e575f80fd5b50610297610876565b6040516102a49190611c21565b60405180910390f35b3480156102b8575f80fd5b506102cc6102c7366004611c81565b610906565b60405190151581526020016102a4565b3480156102e7575f80fd5b506102cc6102f6366004611cab565b60156020525f908152604090205460ff1681565b348015610315575f80fd5b5061033d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a4565b348015610360575f80fd5b506002545b6040519081526020016102a4565b34801561037e575f80fd5b5061036560135481565b348015610393575f80fd5b506102816103a2366004611cc6565b61091c565b3480156103b2575f80fd5b506102cc6103c1366004611cdd565b6109f9565b3480156103d1575f80fd5b50604051601281526020016102a4565b3480156103ec575f80fd5b5061033d7f0000000000000000000000000a641d29544c837ea6913988ffadc4b3926b12b681565b34801561041f575f80fd5b50600c546102cc9060ff1681565b348015610438575f80fd5b506102cc610447366004611cab565b6001600160a01b03165f9081526014602052604090205460ff1690565b34801561046f575f80fd5b5061028161047e366004611c01565b610aa1565b34801561048e575f80fd5b5061036560105481565b3480156104a3575f80fd5b50600c546102cc9062010000900460ff1681565b3480156104c2575f80fd5b506103656104d1366004611cab565b6001600160a01b03165f9081526020819052604090205490565b3480156104f6575f80fd5b50610281610afa565b34801561050a575f80fd5b506102cc610b2f565b34801561051e575f80fd5b5061028161052d366004611d2a565b610b6b565b34801561053d575f80fd5b5060075461033d9061010090046001600160a01b031681565b348015610561575f80fd5b50610365600e5481565b348015610576575f80fd5b50610281610bbf565b34801561058a575f80fd5b506005546001600160a01b031661033d565b3480156105a7575f80fd5b5061036560115481565b3480156105bc575f80fd5b506102816105cb366004611d5d565b610bfc565b3480156105db575f80fd5b50610297610c42565b3480156105ef575f80fd5b506102cc6105fe366004611c81565b610c51565b34801561060e575f80fd5b5061028161061d366004611cab565b610c5d565b34801561062d575f80fd5b5061028161063c366004611d8a565b610cee565b34801561064c575f80fd5b50600c546102cc90610100900460ff1681565b34801561066a575f80fd5b50610281610679366004611d2a565b610d76565b348015610689575f80fd5b5060085461033d906001600160a01b031681565b3480156106a8575f80fd5b506102816106b7366004611cc6565b610dfe565b3480156106c7575f80fd5b5061036560095481565b3480156106dc575f80fd5b506102cc6106eb366004611cc6565b610ecf565b3480156106fb575f80fd5b50610365600d5481565b348015610710575f80fd5b5061036561071f366004611e35565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610754575f80fd5b50610365600a5481565b348015610769575f80fd5b50610365600f5481565b34801561077e575f80fd5b5061028161078d366004611cab565b611025565b34801561079d575f80fd5b5061036560125481565b3480156107b2575f80fd5b50610365600b5481565b6005546001600160a01b031633146107ef5760405162461bcd60e51b81526004016107e690611e6c565b60405180910390fd5b601182905560128190556108038183611eb5565b6010819055601354601991610824919061081e9060646110c0565b906110d2565b11156108725760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c65737300000060448201526064016107e6565b5050565b60606006805461088590611ec8565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190611ec8565b80156108fc5780601f106108d3576101008083540402835291602001916108fc565b820191905f5260205f20905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b5f6109123384846110dd565b5060015b92915050565b6005546001600160a01b031633146109465760405162461bcd60e51b81526004016107e690611e6c565b670de0b6b3a76400006103e861095b60025490565b610966906001611efa565b6109709190611f11565b61097a9190611f11565b8110156109e15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107e6565b6109f381670de0b6b3a7640000611efa565b60095550565b5f610a05848484611200565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610a895760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107e6565b610a9685338584036110dd565b506001949350505050565b6005546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107e690611e6c565b600e829055600f819055610adf8183611eb5565b600d819055601354601991610824919061081e9060646110c0565b6005546001600160a01b03163314610b245760405162461bcd60e51b81526004016107e690611e6c565b610b2d5f611844565b565b6005545f906001600160a01b03163314610b5b5760405162461bcd60e51b81526004016107e690611e6c565b50600c805460ff19169055600190565b6005546001600160a01b03163314610b955760405162461bcd60e51b81526004016107e690611e6c565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610be95760405162461bcd60e51b81526004016107e690611e6c565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610c265760405162461bcd60e51b81526004016107e690611e6c565b600c8054911515620100000262ff000019909216919091179055565b60606004805461088590611ec8565b5f610912338484611200565b6005546001600160a01b03163314610c875760405162461bcd60e51b81526004016107e690611e6c565b6007546040516001600160a01b036101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60075461010090046001600160a01b03163314610d6a5760405162461bcd60e51b815260206004820152603460248201527f4f6e6c7920746865206d61726b6574696e672077616c6c65742063616e20636860448201527330b733b2903a3432903a37b5b2b7103730b6b29760611b60648201526084016107e6565b60066108728282611f7b565b6005546001600160a01b03163314610da05760405162461bcd60e51b81526004016107e690611e6c565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e285760405162461bcd60e51b81526004016107e690611e6c565b670de0b6b3a76400006103e8610e3d60025490565b610e48906005611efa565b610e529190611f11565b610e5c9190611f11565b811015610eb75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107e6565b610ec981670de0b6b3a7640000611efa565b600b5550565b6005545f906001600160a01b03163314610efb5760405162461bcd60e51b81526004016107e690611e6c565b620186a0610f0860025490565b610f13906001611efa565b610f1d9190611f11565b821015610f8a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107e6565b6103e8610f9660025490565b610fa1906005611efa565b610fab9190611f11565b8211156110175760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107e6565b50600a81905560015b919050565b6005546001600160a01b0316331461104f5760405162461bcd60e51b81526004016107e690611e6c565b6001600160a01b0381166110b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e6565b6110bd81611844565b50565b5f6110cb8284611efa565b9392505050565b5f6110cb8284611f11565b6001600160a01b03831661113f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e6565b6001600160a01b0382166111a05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e6565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112265760405162461bcd60e51b81526004016107e690612037565b6001600160a01b03821661124c5760405162461bcd60e51b81526004016107e69061207c565b805f036112635761125e83835f611895565b505050565b600c5460ff1615611562576005546001600160a01b0384811691161480159061129a57506005546001600160a01b03838116911614155b80156112b457506008546001600160a01b03848116911614155b80156112ce57506008546001600160a01b03838116911614155b80156112e257506001600160a01b03821615155b80156112f957506001600160a01b03821661dead14155b8015611308575060075460ff16155b1561156257600c54610100900460ff1661139e576001600160a01b0383165f9081526014602052604090205460ff168061135957506001600160a01b0382165f9081526014602052604090205460ff165b61139e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107e6565b7f0000000000000000000000000a641d29544c837ea6913988ffadc4b3926b12b66001600160a01b0316836001600160a01b03161480156113f757506001600160a01b0382165f9081526015602052604090205460ff16155b156114da5760095481111561146c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107e6565b600b546001600160a01b0383165f908152602081905260409020546114919083611eb5565b11156114d55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107e6565b611562565b6001600160a01b0382165f9081526015602052604090205460ff1661156257600b546001600160a01b0383165f9081526020819052604090205461151e9083611eb5565b11156115625760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107e6565b305f90815260208190526040902054600a548110801590819061158d5750600c5462010000900460ff165b801561159c575060075460ff16155b80156115d957507f0000000000000000000000000a641d29544c837ea6913988ffadc4b3926b12b66001600160a01b0316846001600160a01b0316145b80156115fd57506001600160a01b0385165f9081526014602052604090205460ff16155b801561162157506001600160a01b0384165f9081526014602052604090205460ff16155b15611647576007805460ff1916600117905561163c836119e8565b6007805460ff191690555b6007546001600160a01b0386165f9081526014602052604090205460ff9182161591168061168c57506001600160a01b0385165f9081526014602052604090205460ff165b1561169457505f5b5f805f831561182e577f0000000000000000000000000a641d29544c837ea6913988ffadc4b3926b12b66001600160a01b0316886001600160a01b03161480156116df57505f601054115b15611740576116ff60135461081e6010548a6110c090919063ffffffff16565b9250601054601254846117129190611efa565b61171c9190611f11565b91506010546011548461172f9190611efa565b6117399190611f11565b90506117df565b7f0000000000000000000000000a641d29544c837ea6913988ffadc4b3926b12b66001600160a01b0316896001600160a01b031614801561178257505f600d54115b156117df576117a260135461081e600d548a6110c090919063ffffffff16565b9250600d54600f54846117b59190611efa565b6117bf9190611f11565b9150600d54600e54846117d29190611efa565b6117dc9190611f11565b90505b82156117f0576117f0893085611895565b811561182157611821307f0000000000000000000000000a641d29544c837ea6913988ffadc4b3926b12b684611895565b61182b83886120bf565b96505b611839898989611895565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166118bb5760405162461bcd60e51b81526004016107e690612037565b6001600160a01b0382166118e15760405162461bcd60e51b81526004016107e69061207c565b6001600160a01b0383165f90815260208190526040902054818110156119585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e6565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061198e908490611eb5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119da91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611a03575050565b5f611a2083611a1b84600a546028611a1b9190611efa565b611a2b565b905061125e81611a3f565b5f818311611a3957826110cb565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a7257611a726120d2565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b1291906120e6565b81600181518110611b2557611b256120d2565b60200260200101906001600160a01b031690816001600160a01b031681525050611b70307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110dd565b60075460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611bd09287925f928892610100909204909116904290600401612101565b5f604051808303815f87803b158015611be7575f80fd5b505af1158015611bf9573d5f803e3d5ffd5b505050505050565b5f8060408385031215611c12575f80fd5b50508035926020909101359150565b5f602080835283518060208501525f5b81811015611c4d57858101830151858201604001528201611c31565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146110bd575f80fd5b5f8060408385031215611c92575f80fd5b8235611c9d81611c6d565b946020939093013593505050565b5f60208284031215611cbb575f80fd5b81356110cb81611c6d565b5f60208284031215611cd6575f80fd5b5035919050565b5f805f60608486031215611cef575f80fd5b8335611cfa81611c6d565b92506020840135611d0a81611c6d565b929592945050506040919091013590565b80358015158114611020575f80fd5b5f8060408385031215611d3b575f80fd5b8235611d4681611c6d565b9150611d5460208401611d1b565b90509250929050565b5f60208284031215611d6d575f80fd5b6110cb82611d1b565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215611d9a575f80fd5b813567ffffffffffffffff80821115611db1575f80fd5b818401915084601f830112611dc4575f80fd5b813581811115611dd657611dd6611d76565b604051601f8201601f19908116603f01168101908382118183101715611dfe57611dfe611d76565b81604052828152876020848701011115611e16575f80fd5b826020860160208301375f928101602001929092525095945050505050565b5f8060408385031215611e46575f80fd5b8235611e5181611c6d565b91506020830135611e6181611c6d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561091657610916611ea1565b600181811c90821680611edc57607f821691505b602082108103611a3957634e487b7160e01b5f52602260045260245ffd5b808202811582820484141761091657610916611ea1565b5f82611f2b57634e487b7160e01b5f52601260045260245ffd5b500490565b601f82111561125e57805f5260205f20601f840160051c81016020851015611f555750805b601f840160051c820191505b81811015611f74575f8155600101611f61565b5050505050565b815167ffffffffffffffff811115611f9557611f95611d76565b611fa981611fa38454611ec8565b84611f30565b602080601f831160018114611fdc575f8415611fc55750858301515b5f19600386901b1c1916600185901b178555611bf9565b5f85815260208120601f198616915b8281101561200a57888601518255948401946001909101908401611feb565b508582101561202757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561091657610916611ea1565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156120f6575f80fd5b81516110cb81611c6d565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156121515784516001600160a01b03168352938301939183019160010161212c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d90196a0f0f03de0103199021948fa8db9f1e0ca14ac238c9515a82975c0bbd564736f6c63430008170033

Deployed Bytecode Sourcemap

25047:11673:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30618:364;;;;;;;;;;-1:-1:-1;30618:364:0;;;;;:::i;:::-;;:::i;:::-;;36403:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12017:169;;;;;;;;;;-1:-1:-1;12017:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;12017:169:0;1276:187:1;25998:63:0;;;;;;;;;;-1:-1:-1;25998:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25156:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1910:32:1;;;1892:51;;1880:2;1865:18;25156:51:0;1720:229:1;10970:108:0;;;;;;;;;;-1:-1:-1;11058:12:0;;10970:108;;;2100:25:1;;;2088:2;2073:18;10970:108:0;1954:177:1;25827:22:0;;;;;;;;;;;;;;;;29335:275;;;;;;;;;;-1:-1:-1;29335:275:0;;;;;:::i;:::-;;:::i;12668:492::-;;;;;;;;;;-1:-1:-1;12668:492:0;;;;;:::i;:::-;;:::i;10812:93::-;;;;;;;;;;-1:-1:-1;10812:93:0;;10895:2;2924:36:1;;2912:2;2897:18;10812:93:0;2782:184:1;25214:38:0;;;;;;;;;;;;;;;25484:33;;;;;;;;;;-1:-1:-1;25484:33:0;;;;;;;;31421:126;;;;;;;;;;-1:-1:-1;31421:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31511:28:0;31487:4;31511:28;;;:19;:28;;;;;;;;;31421:126;30253:357;;;;;;;;;;-1:-1:-1;30253:357:0;;;;;:::i;:::-;;:::i;25714:28::-;;;;;;;;;;;;;;;;25564:31;;;;;;;;;;-1:-1:-1;25564:31:0;;;;;;;;;;;11141:127;;;;;;;;;;-1:-1:-1;11141:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11242:18:0;11215:7;11242:18;;;;;;;;;;;;11141:127;3085:103;;;;;;;;;;;;;:::i;28639:121::-;;;;;;;;;;;;;:::i;29882:167::-;;;;;;;;;;-1:-1:-1;29882:167:0;;;;;:::i;:::-;;:::i;25291:30::-;;;;;;;;;;-1:-1:-1;25291:30:0;;;;;;;-1:-1:-1;;;;;25291:30:0;;;25638;;;;;;;;;;;;;;;;28475:112;;;;;;;;;;;;;:::i;2434:87::-;;;;;;;;;;-1:-1:-1;2507:6:0;;-1:-1:-1;;;;;2507:6:0;2434:87;;25749:31;;;;;;;;;;;;;;;;30145:100;;;;;;;;;;-1:-1:-1;30145:100:0;;;;;:::i;:::-;;:::i;10069:104::-;;;;;;;;;;;;;:::i;11481:175::-;;;;;;;;;;-1:-1:-1;11481:175:0;;;;;:::i;:::-;;:::i;31180:231::-;;;;;;;;;;-1:-1:-1;31180:231:0;;;;;:::i;:::-;;:::i;36516:199::-;;;;;;;;;;-1:-1:-1;36516:199:0;;;;;:::i;:::-;;:::i;25524:33::-;;;;;;;;;;-1:-1:-1;25524:33:0;;;;;;;;;;;30990:182;;;;;;;;;;-1:-1:-1;30990:182:0;;;;;:::i;:::-;;:::i;25328:32::-;;;;;;;;;;-1:-1:-1;25328:32:0;;;;-1:-1:-1;;;;;25328:32:0;;;29618:256;;;;;;;;;;-1:-1:-1;29618:256:0;;;;;:::i;:::-;;:::i;25369:35::-;;;;;;;;;;;;;;;;28830:497;;;;;;;;;;-1:-1:-1;28830:497:0;;;;;:::i;:::-;;:::i;25604:27::-;;;;;;;;;;;;;;;;11719:151;;;;;;;;;;-1:-1:-1;11719:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11835:18:0;;;11808:7;11835:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11719:151;25411:33;;;;;;;;;;;;;;;;25675:30;;;;;;;;;;;;;;;;3343:201;;;;;;;;;;-1:-1:-1;3343:201:0;;;;;:::i;:::-;;:::i;25787:31::-;;;;;;;;;;;;;;;;25451:24;;;;;;;;;;;;;;;;30618:364;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;;;;;;;;;30743:16:::1;:32:::0;;;30786:16:::1;:32:::0;;;30845:35:::1;30805:13:::0;30762;30845:35:::1;:::i;:::-;30829:13;:51:::0;;;30926:7:::1;::::0;30938:2:::1;::::0;30899:35:::1;::::0;30926:7;30899:22:::1;::::0;30917:3:::1;30899:17;:22::i;:::-;:26:::0;::::1;:35::i;:::-;:41;;30891:83;;;::::0;-1:-1:-1;;;30891:83:0;;6126:2:1;30891:83:0::1;::::0;::::1;6108:21:1::0;6165:2;6145:18;;;6138:30;6204:31;6184:18;;;6177:59;6253:18;;30891:83:0::1;5924:353:1::0;30891:83:0::1;30618:364:::0;;:::o;36403:105::-;36457:13;36490:10;36483:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36403:105;:::o;12017:169::-;12100:4;12117:39;1187:10;12140:7;12149:6;12117:8;:39::i;:::-;-1:-1:-1;12174:4:0;12017:169;;;;;:::o;29335:275::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;29472:4:::1;29464;29443:13;11058:12:::0;;;10970:108;29443:13:::1;:17;::::0;29459:1:::1;29443:17;:::i;:::-;29442:26;;;;:::i;:::-;29441:35;;;;:::i;:::-;29431:6;:45;;29409:142;;;::::0;-1:-1:-1;;;29409:142:0;;7264:2:1;29409:142:0::1;::::0;::::1;7246:21:1::0;7303:2;7283:18;;;7276:30;7342:34;7322:18;;;7315:62;-1:-1:-1;;;7393:18:1;;;7386:45;7448:19;;29409:142:0::1;7062:411:1::0;29409:142:0::1;29585:17;:6:::0;29595::::1;29585:17;:::i;:::-;29562:20;:40:::0;-1:-1:-1;29335:275:0:o;12668:492::-;12808:4;12825:36;12835:6;12843:9;12854:6;12825:9;:36::i;:::-;-1:-1:-1;;;;;12901:19:0;;12874:24;12901:19;;;:11;:19;;;;;;;;1187:10;12901:33;;;;;;;;12953:26;;;;12945:79;;;;-1:-1:-1;;;12945:79:0;;7680:2:1;12945:79:0;;;7662:21:1;7719:2;7699:18;;;7692:30;7758:34;7738:18;;;7731:62;-1:-1:-1;;;7809:18:1;;;7802:38;7857:19;;12945:79:0;7478:404:1;12945:79:0;13060:57;13069:6;1187:10;13110:6;13091:16;:25;13060:8;:57::i;:::-;-1:-1:-1;13148:4:0;;12668:492;-1:-1:-1;;;;12668:492:0:o;30253:357::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;30377:15:::1;:31:::0;;;30419:15:::1;:31:::0;;;30476:33:::1;30437:13:::0;30395;30476:33:::1;:::i;:::-;30461:12;:48:::0;;;30554:7:::1;::::0;30566:2:::1;::::0;30528:34:::1;::::0;30554:7;30528:21:::1;::::0;30545:3:::1;30528:16;:21::i;3085:103::-:0;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;3150:30:::1;3177:1;3150:18;:30::i;:::-;3085:103::o:0;28639:121::-;2507:6;;28691:4;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;-1:-1:-1;28708:14:0::1;:22:::0;;-1:-1:-1;;28708:22:0::1;::::0;;;28639:121;:::o;29882:167::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29995:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29995:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29882:167::o;28475:112::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;28530:13:::1;:20:::0;;-1:-1:-1;;28561:18:0;;;;;28475:112::o;30145:100::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;30216:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30216:21:0;;::::1;::::0;;;::::1;::::0;;30145:100::o;10069:104::-;10125:13;10158:7;10151:14;;;;;:::i;11481:175::-;11567:4;11584:42;1187:10;11608:9;11619:6;11584:9;:42::i;31180:231::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;31340:15:::1;::::0;31297:59:::1;::::0;-1:-1:-1;;;;;31340:15:0::1;::::0;;::::1;::::0;::::1;::::0;31297:59;::::1;::::0;::::1;::::0;;;::::1;31367:15;:36:::0;;-1:-1:-1;;;;;31367:36:0;;::::1;;;-1:-1:-1::0;;;;;;31367:36:0;;::::1;::::0;;;::::1;::::0;;31180:231::o;36516:199::-;36604:15;;;;;-1:-1:-1;;;;;36604:15:0;36590:10;:29;36582:94;;;;-1:-1:-1;;;36582:94:0;;8089:2:1;36582:94:0;;;8071:21:1;8128:2;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;-1:-1:-1;;;8218:18:1;;;8211:50;8278:19;;36582:94:0;7887:416:1;36582:94:0;36687:10;:20;36700:7;36687:10;:20;:::i;30990:182::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31075:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;31075:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31130:34;;1416:41:1;;;31130:34:0::1;::::0;1389:18:1;31130:34:0::1;;;;;;;30990:182:::0;;:::o;29618:256::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;29758:4:::1;29750;29729:13;11058:12:::0;;;10970:108;29729:13:::1;:17;::::0;29745:1:::1;29729:17;:::i;:::-;29728:26;;;;:::i;:::-;29727:35;;;;:::i;:::-;29717:6;:45;;29695:131;;;::::0;-1:-1:-1;;;29695:131:0;;10680:2:1;29695:131:0::1;::::0;::::1;10662:21:1::0;10719:2;10699:18;;;10692:30;10758:34;10738:18;;;10731:62;-1:-1:-1;;;10809:18:1;;;10802:34;10853:19;;29695:131:0::1;10478:400:1::0;29695:131:0::1;29849:17;:6:::0;29859::::1;29849:17;:::i;:::-;29837:9;:29:::0;-1:-1:-1;29618:256:0:o;28830:497::-;2507:6;;28938:4;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;29017:6:::1;28996:13;11058:12:::0;;;10970:108;28996:13:::1;:17;::::0;29012:1:::1;28996:17;:::i;:::-;28995:28;;;;:::i;:::-;28982:9;:41;;28960:144;;;::::0;-1:-1:-1;;;28960:144:0;;11085:2:1;28960:144:0::1;::::0;::::1;11067:21:1::0;11124:2;11104:18;;;11097:30;11163:34;11143:18;;;11136:62;-1:-1:-1;;;11214:18:1;;;11207:51;11275:19;;28960:144:0::1;10883:417:1::0;28960:144:0::1;29172:4;29151:13;11058:12:::0;;;10970:108;29151:13:::1;:17;::::0;29167:1:::1;29151:17;:::i;:::-;29150:26;;;;:::i;:::-;29137:9;:39;;29115:141;;;::::0;-1:-1:-1;;;29115:141:0;;11507:2:1;29115:141:0::1;::::0;::::1;11489:21:1::0;11546:2;11526:18;;;11519:30;11585:34;11565:18;;;11558:62;-1:-1:-1;;;11636:18:1;;;11629:50;11696:19;;29115:141:0::1;11305:416:1::0;29115:141:0::1;-1:-1:-1::0;29267:18:0::1;:30:::0;;;29315:4:::1;2725:1;28830:497:::0;;;:::o;3343:201::-;2507:6;;-1:-1:-1;;;;;2507:6:0;1187:10;2654:23;2646:68;;;;-1:-1:-1;;;2646:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3432:22:0;::::1;3424:73;;;::::0;-1:-1:-1;;;3424:73:0;;11928:2:1;3424:73:0::1;::::0;::::1;11910:21:1::0;11967:2;11947:18;;;11940:30;12006:34;11986:18;;;11979:62;-1:-1:-1;;;12057:18:1;;;12050:36;12103:19;;3424:73:0::1;11726:402:1::0;3424:73:0::1;3508:28;3527:8;3508:18;:28::i;:::-;3343:201:::0;:::o;20962:98::-;21020:7;21047:5;21051:1;21047;:5;:::i;:::-;21040:12;20962:98;-1:-1:-1;;;20962:98:0:o;21361:::-;21419:7;21446:5;21450:1;21446;:5;:::i;15509:380::-;-1:-1:-1;;;;;15645:19:0;;15637:68;;;;-1:-1:-1;;;15637:68:0;;12335:2:1;15637:68:0;;;12317:21:1;12374:2;12354:18;;;12347:30;12413:34;12393:18;;;12386:62;-1:-1:-1;;;12464:18:1;;;12457:34;12508:19;;15637:68:0;12133:400:1;15637:68:0;-1:-1:-1;;;;;15724:21:0;;15716:68;;;;-1:-1:-1;;;15716:68:0;;12740:2:1;15716:68:0;;;12722:21:1;12779:2;12759:18;;;12752:30;12818:34;12798:18;;;12791:62;-1:-1:-1;;;12869:18:1;;;12862:32;12911:19;;15716:68:0;12538:398:1;15716:68:0;-1:-1:-1;;;;;15797:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15849:32;;2100:25:1;;;15849:32:0;;2073:18:1;15849:32:0;;;;;;;15509:380;;;:::o;31555:3814::-;-1:-1:-1;;;;;31687:18:0;;31679:68;;;;-1:-1:-1;;;31679:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31766:16:0;;31758:64;;;;-1:-1:-1;;;31758:64:0;;;;;;;:::i;:::-;31839:6;31849:1;31839:11;31835:93;;31867:28;31883:4;31889:2;31893:1;31867:15;:28::i;:::-;31555:3814;;;:::o;31835:93::-;31944:14;;;;31940:1520;;;2507:6;;-1:-1:-1;;;;;31997:15:0;;;2507:6;;31997:15;;;;:49;;-1:-1:-1;2507:6:0;;-1:-1:-1;;;;;32033:13:0;;;2507:6;;32033:13;;31997:49;:95;;;;-1:-1:-1;32075:17:0;;-1:-1:-1;;;;;32067:25:0;;;32075:17;;32067:25;;31997:95;:139;;;;-1:-1:-1;32119:17:0;;-1:-1:-1;;;;;32113:23:0;;;32119:17;;32113:23;;31997:139;:176;;;;-1:-1:-1;;;;;;32157:16:0;;;;31997:176;:218;;;;-1:-1:-1;;;;;;32194:21:0;;32208:6;32194:21;;31997:218;:248;;;;-1:-1:-1;32237:8:0;;;;32236:9;31997:248;31975:1474;;;32285:13;;;;;;;32280:223;;-1:-1:-1;;;;;32357:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32386:23:0;;;;;;:19;:23;;;;;;;;32357:52;32323:160;;;;-1:-1:-1;;;32323:160:0;;13953:2:1;32323:160:0;;;13935:21:1;13992:2;13972:18;;;13965:30;-1:-1:-1;;;14011:18:1;;;14004:52;14073:18;;32323:160:0;13751:346:1;32323:160:0;32717:13;-1:-1:-1;;;;;32709:21:0;:4;-1:-1:-1;;;;;32709:21:0;;:82;;;;-1:-1:-1;;;;;;32756:35:0;;;;;;:31;:35;;;;;;;;32755:36;32709:82;32683:751;;;32878:20;;32868:6;:30;;32834:169;;;;-1:-1:-1;;;32834:169:0;;14304:2:1;32834:169:0;;;14286:21:1;14343:2;14323:18;;;14316:30;14382:34;14362:18;;;14355:62;-1:-1:-1;;;14433:18:1;;;14426:51;14494:19;;32834:169:0;14102:417:1;32834:169:0;33086:9;;-1:-1:-1;;;;;11242:18:0;;11215:7;11242:18;;;;;;;;;;;33060:22;;:6;:22;:::i;:::-;:35;;33026:140;;;;-1:-1:-1;;;33026:140:0;;14726:2:1;33026:140:0;;;14708:21:1;14765:2;14745:18;;;14738:30;-1:-1:-1;;;14784:18:1;;;14777:49;14843:18;;33026:140:0;14524:343:1;33026:140:0;32683:751;;;-1:-1:-1;;;;;33214:35:0;;;;;;:31;:35;;;;;;;;33209:225;;33334:9;;-1:-1:-1;;;;;11242:18:0;;11215:7;11242:18;;;;;;;;;;;33308:22;;:6;:22;:::i;:::-;:35;;33274:140;;;;-1:-1:-1;;;33274:140:0;;14726:2:1;33274:140:0;;;14708:21:1;14765:2;14745:18;;;14738:30;-1:-1:-1;;;14784:18:1;;;14777:49;14843:18;;33274:140:0;14524:343:1;33274:140:0;33521:4;33472:28;11242:18;;;;;;;;;;;33579;;33555:42;;;;;;;33628:35;;-1:-1:-1;33652:11:0;;;;;;;33628:35;:61;;;;-1:-1:-1;33681:8:0;;;;33680:9;33628:61;:97;;;;;33712:13;-1:-1:-1;;;;;33706:19:0;:2;-1:-1:-1;;;;;33706:19:0;;33628:97;:140;;;;-1:-1:-1;;;;;;33743:25:0;;;;;;:19;:25;;;;;;;;33742:26;33628:140;:181;;;;-1:-1:-1;;;;;;33786:23:0;;;;;;:19;:23;;;;;;;;33785:24;33628:181;33610:319;;;33836:8;:15;;-1:-1:-1;;33836:15:0;33847:4;33836:15;;;33868:16;33877:6;33868:8;:16::i;:::-;33901:8;:16;;-1:-1:-1;;33901:16:0;;;33610:319;33957:8;;-1:-1:-1;;;;;34067:25:0;;33941:12;34067:25;;;:19;:25;;;;;;33957:8;;;;33956:9;;34067:25;;:52;;-1:-1:-1;;;;;;34096:23:0;;;;;;:19;:23;;;;;;;;34067:52;34063:100;;;-1:-1:-1;34146:5:0;34063:100;34175:12;34202:26;34243;34362:7;34358:958;;;34420:13;-1:-1:-1;;;;;34414:19:0;:2;-1:-1:-1;;;;;34414:19:0;;:40;;;;;34453:1;34437:13;;:17;34414:40;34410:615;;;34482:38;34512:7;;34482:25;34493:13;;34482:6;:10;;:25;;;;:::i;:38::-;34475:45;;34588:13;;34568:16;;34561:4;:23;;;;:::i;:::-;34560:41;;;;:::i;:::-;34539:62;;34669:13;;34649:16;;34642:4;:23;;;;:::i;:::-;34641:41;;;;:::i;:::-;34620:62;;34410:615;;;34752:13;-1:-1:-1;;;;;34744:21:0;:4;-1:-1:-1;;;;;34744:21:0;;:41;;;;;34784:1;34769:12;;:16;34744:41;34740:285;;;34813:37;34842:7;;34813:24;34824:12;;34813:6;:10;;:24;;;;:::i;:37::-;34806:44;;34917:12;;34898:15;;34891:4;:22;;;;:::i;:::-;34890:39;;;;:::i;:::-;34869:60;;34997:12;;34978:15;;34971:4;:22;;;;:::i;:::-;34970:39;;;;:::i;:::-;34949:60;;34740:285;35045:8;;35041:91;;35074:42;35090:4;35104;35111;35074:15;:42::i;:::-;35150:22;;35146:128;;35193:65;35217:4;35224:13;35239:18;35193:15;:65::i;:::-;35290:14;35300:4;35290:14;;:::i;:::-;;;34358:958;35328:33;35344:4;35350:2;35354:6;35328:15;:33::i;:::-;31668:3701;;;;;;31555:3814;;;:::o;3704:191::-;3797:6;;;-1:-1:-1;;;;;3814:17:0;;;-1:-1:-1;;;;;;3814:17:0;;;;;;;3847:40;;3797:6;;;3814:17;3797:6;;3847:40;;3778:16;;3847:40;3767:128;3704:191;:::o;13650:733::-;-1:-1:-1;;;;;13790:20:0;;13782:70;;;;-1:-1:-1;;;13782:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13871:23:0;;13863:71;;;;-1:-1:-1;;;13863:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14031:17:0;;14007:21;14031:17;;;;;;;;;;;14067:23;;;;14059:74;;;;-1:-1:-1;;;14059:74:0;;15207:2:1;14059:74:0;;;15189:21:1;15246:2;15226:18;;;15219:30;15285:34;15265:18;;;15258:62;-1:-1:-1;;;15336:18:1;;;15329:36;15382:19;;14059:74:0;15005:402:1;14059:74:0;-1:-1:-1;;;;;14169:17:0;;;:9;:17;;;;;;;;;;;14189:22;;;14169:42;;14233:20;;;;;;;;:30;;14205:6;;14169:9;14233:30;;14205:6;;14233:30;:::i;:::-;;;;;;;;14298:9;-1:-1:-1;;;;;14281:35:0;14290:6;-1:-1:-1;;;;;14281:35:0;;14309:6;14281:35;;;;2100:25:1;;2088:2;2073:18;;1954:177;14281:35:0;;;;;;;;13771:612;13650:733;;;:::o;36082:313::-;36179:4;36135:23;11242:18;;;;;;;;;;;;36200:20;;;36196:59;;36237:7;36082:313;:::o;36196:59::-;36267:18;36288:58;36292:6;36300:45;36304:15;36321:18;;36342:2;36321:23;;;;:::i;:::-;36300:3;:45::i;36288:58::-;36267:79;;36359:28;36376:10;36359:16;:28::i;35377:98::-;35434:7;35461:1;35459;:3;35458:9;;35466:1;35458:9;;;-1:-1:-1;35464:1:0;35377:98;-1:-1:-1;35377:98:0:o;35483:591::-;35633:16;;;35647:1;35633:16;;;;;;;;35609:21;;35633:16;;;;;;;;;;-1:-1:-1;35633:16:0;35609:40;;35678:4;35660;35665:1;35660:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35660:23:0;;;-1:-1:-1;;;;;35660:23:0;;;;;35704:15;-1:-1:-1;;;;;35704:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35694:4;35699:1;35694:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;35694:32:0;;;-1:-1:-1;;;;;35694:32:0;;;;;35739:62;35756:4;35771:15;35789:11;35739:8;:62::i;:::-;36010:15;;35840:226;;-1:-1:-1;;;35840:226:0;;-1:-1:-1;;;;;35840:15:0;:66;;;;;:226;;35921:11;;35947:1;;35991:4;;36010:15;;;;;;;;36040;;35840:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35538:536;35483:591;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2136:180::-;2195:6;2248:2;2236:9;2227:7;2223:23;2219:32;2216:52;;;2264:1;2261;2254:12;2216:52;-1:-1:-1;2287:23:1;;2136:180;-1:-1:-1;2136:180:1:o;2321:456::-;2398:6;2406;2414;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2522:9;2509:23;2541:31;2566:5;2541:31;:::i;:::-;2591:5;-1:-1:-1;2648:2:1;2633:18;;2620:32;2661:33;2620:32;2661:33;:::i;:::-;2321:456;;2713:7;;-1:-1:-1;;;2767:2:1;2752:18;;;;2739:32;;2321:456::o;3179:160::-;3244:20;;3300:13;;3293:21;3283:32;;3273:60;;3329:1;3326;3319:12;3344:315;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:180::-;3720:6;3773:2;3761:9;3752:7;3748:23;3744:32;3741:52;;;3789:1;3786;3779:12;3741:52;3812:26;3828:9;3812:26;:::i;3849:127::-;3910:10;3905:3;3901:20;3898:1;3891:31;3941:4;3938:1;3931:15;3965:4;3962:1;3955:15;3981:922;4050:6;4103:2;4091:9;4082:7;4078:23;4074:32;4071:52;;;4119:1;4116;4109:12;4071:52;4159:9;4146:23;4188:18;4229:2;4221:6;4218:14;4215:34;;;4245:1;4242;4235:12;4215:34;4283:6;4272:9;4268:22;4258:32;;4328:7;4321:4;4317:2;4313:13;4309:27;4299:55;;4350:1;4347;4340:12;4299:55;4386:2;4373:16;4408:2;4404;4401:10;4398:36;;;4414:18;;:::i;:::-;4489:2;4483:9;4457:2;4543:13;;-1:-1:-1;;4539:22:1;;;4563:2;4535:31;4531:40;4519:53;;;4587:18;;;4607:22;;;4584:46;4581:72;;;4633:18;;:::i;:::-;4673:10;4669:2;4662:22;4708:2;4700:6;4693:18;4748:7;4743:2;4738;4734;4730:11;4726:20;4723:33;4720:53;;;4769:1;4766;4759:12;4720:53;4825:2;4820;4816;4812:11;4807:2;4799:6;4795:15;4782:46;4870:1;4848:15;;;4865:2;4844:24;4837:35;;;;-1:-1:-1;4852:6:1;3981:922;-1:-1:-1;;;;;3981:922:1:o;4908:388::-;4976:6;4984;5037:2;5025:9;5016:7;5012:23;5008:32;5005:52;;;5053:1;5050;5043:12;5005:52;5092:9;5079:23;5111:31;5136:5;5111:31;:::i;:::-;5161:5;-1:-1:-1;5218:2:1;5203:18;;5190:32;5231:33;5190:32;5231:33;:::i;:::-;5283:7;5273:17;;;4908:388;;;;;:::o;5301:356::-;5503:2;5485:21;;;5522:18;;;5515:30;5581:34;5576:2;5561:18;;5554:62;5648:2;5633:18;;5301:356::o;5662:127::-;5723:10;5718:3;5714:20;5711:1;5704:31;5754:4;5751:1;5744:15;5778:4;5775:1;5768:15;5794:125;5859:9;;;5880:10;;;5877:36;;;5893:18;;:::i;6282:380::-;6361:1;6357:12;;;;6404;;;6425:61;;6479:4;6471:6;6467:17;6457:27;;6425:61;6532:2;6524:6;6521:14;6501:18;6498:38;6495:161;;6578:10;6573:3;6569:20;6566:1;6559:31;6613:4;6610:1;6603:15;6641:4;6638:1;6631:15;6667:168;6740:9;;;6771;;6788:15;;;6782:22;;6768:37;6758:71;;6809:18;;:::i;6840:217::-;6880:1;6906;6896:132;;6950:10;6945:3;6941:20;6938:1;6931:31;6985:4;6982:1;6975:15;7013:4;7010:1;7003:15;6896:132;-1:-1:-1;7042:9:1;;6840:217::o;8434:518::-;8536:2;8531:3;8528:11;8525:421;;;8572:5;8569:1;8562:16;8616:4;8613:1;8603:18;8686:2;8674:10;8670:19;8667:1;8663:27;8657:4;8653:38;8722:4;8710:10;8707:20;8704:47;;;-1:-1:-1;8745:4:1;8704:47;8800:2;8795:3;8791:12;8788:1;8784:20;8778:4;8774:31;8764:41;;8855:81;8873:2;8866:5;8863:13;8855:81;;;8932:1;8918:16;;8899:1;8888:13;8855:81;;;8859:3;;8434:518;;;:::o;9128:1345::-;9254:3;9248:10;9281:18;9273:6;9270:30;9267:56;;;9303:18;;:::i;:::-;9332:97;9422:6;9382:38;9414:4;9408:11;9382:38;:::i;:::-;9376:4;9332:97;:::i;:::-;9484:4;;9541:2;9530:14;;9558:1;9553:663;;;;10260:1;10277:6;10274:89;;;-1:-1:-1;10329:19:1;;;10323:26;10274:89;-1:-1:-1;;9085:1:1;9081:11;;;9077:24;9073:29;9063:40;9109:1;9105:11;;;9060:57;10376:81;;9523:944;;9553:663;8381:1;8374:14;;;8418:4;8405:18;;-1:-1:-1;;9589:20:1;;;9707:236;9721:7;9718:1;9715:14;9707:236;;;9810:19;;;9804:26;9789:42;;9902:27;;;;9870:1;9858:14;;;;9737:19;;9707:236;;;9711:3;9971:6;9962:7;9959:19;9956:201;;;10032:19;;;10026:26;-1:-1:-1;;10115:1:1;10111:14;;;10127:3;10107:24;10103:37;10099:42;10084:58;10069:74;;9956:201;-1:-1:-1;;;;;10203:1:1;10187:14;;;10183:22;10170:36;;-1:-1:-1;9128:1345:1:o;12941:401::-;13143:2;13125:21;;;13182:2;13162:18;;;13155:30;13221:34;13216:2;13201:18;;13194:62;-1:-1:-1;;;13287:2:1;13272:18;;13265:35;13332:3;13317:19;;12941:401::o;13347:399::-;13549:2;13531:21;;;13588:2;13568:18;;;13561:30;13627:34;13622:2;13607:18;;13600:62;-1:-1:-1;;;13693:2:1;13678:18;;13671:33;13736:3;13721:19;;13347:399::o;14872:128::-;14939:9;;;14960:11;;;14957:37;;;14974:18;;:::i;15412:127::-;15473:10;15468:3;15464:20;15461:1;15454:31;15504:4;15501:1;15494:15;15528:4;15525:1;15518:15;15544:251;15614:6;15667:2;15655:9;15646:7;15642:23;15638:32;15635:52;;;15683:1;15680;15673:12;15635:52;15715:9;15709:16;15734:31;15759:5;15734:31;:::i;15800:980::-;16062:4;16110:3;16099:9;16095:19;16141:6;16130:9;16123:25;16167:2;16205:6;16200:2;16189:9;16185:18;16178:34;16248:3;16243:2;16232:9;16228:18;16221:31;16272:6;16307;16301:13;16338:6;16330;16323:22;16376:3;16365:9;16361:19;16354:26;;16415:2;16407:6;16403:15;16389:29;;16436:1;16446:195;16460:6;16457:1;16454:13;16446:195;;;16525:13;;-1:-1:-1;;;;;16521:39:1;16509:52;;16616:15;;;;16581:12;;;;16557:1;16475:9;16446:195;;;-1:-1:-1;;;;;;;16697:32:1;;;;16692:2;16677:18;;16670:60;-1:-1:-1;;;16761:3:1;16746:19;16739:35;16658:3;15800:980;-1:-1:-1;;;15800:980:1:o

Swarm Source

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