ETH Price: $2,444.36 (-1.73%)

Token

Copyly (COPY)
 

Overview

Max Total Supply

1,000,000,000 COPY

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
54,449,235.005857547603308376 COPY

Value
$0.00
0x36f5c62aa9fa91c7ca2dd899990ca4427d8eee3e
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:
Copy

Compiler Version
v0.8.20+commit.a1b79de6

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-29
*/

/**

Copyly, a tool designed to help you succeed in the meme coin market. It simplifies the process of copy trading, allowing you to mirror the actions of top meme coin wallets through a user-friendly Telegram bot, without the need for complex trend analysis.

For more information
Website: https://copyly.xyz
Platform: https://app.copyly.xyz/
Telegram: https://t.me/copylyxyz
Twitter: https://x.com/copylyxyz
Gitbook: https://copyly.gitbook.io/docs/
Telegram Bot: https://t.me/Copyly_bot

*/

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

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

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

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

        uint256 _buyMarketingFee = 15;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellMarketingFee = 30;
        uint256 _sellLiquidityFee = 0;

        uint256 _divisor = 100;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

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

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

        divisor = _divisor;

        marketingWallet = address(0xd23Ab68BEA2bC3F68dbc1C39E02DEcb317D4F20c);
        developmentWallet = address(0xAb9Edc8661895da9db5C52FDb3783cA3B69171ec);

        // 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) <= 150, "Must keep fees at 15% or less");
    }

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

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


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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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"}]

60c0604052600b805462ffffff191660011790553480156200001f575f80fd5b5060405180604001604052806006815260200165436f70796c7960d01b81525060405180604001604052806004815260200163434f505960e01b81525081600390816200006d9190620006a1565b5060046200007c8282620006a1565b5050506200009962000093620003a660201b60201c565b620003aa565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000bb816001620003fb565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000104573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012a919062000769565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000176573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019c919062000769565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020d919062000769565b6001600160a01b031660a081905262000228906001620003fb565b600f5f601e8160646b033b2e3c9fd0803ce8000000816200024b826002620007ac565b620002579190620007cc565b600855606462000269826002620007ac565b620002759190620007cc565b600a55620186a062000289826032620007ac565b620002959190620007cc565b600955600d869055600e859055620002ae8587620007ec565b600c5560108490556011839055620002c78385620007ec565b600f556012829055600680546001600160a01b031990811673d23ab68bea2bc3f68dbc1c39e02decb317d4f20c179091556007805490911673ab9edc8661895da9db5c52fdb3783ca3b69171ec179055620003366200032e6005546001600160a01b031690565b600162000473565b6200034330600162000473565b6200035261dead600162000473565b62000371620003696005546001600160a01b031690565b6001620003fb565b6200037e306001620003fb565b6200038d61dead6001620003fb565b6200039933826200051b565b5050505050505062000802565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004495760405162461bcd60e51b815260206004820181905260248201525f805160206200273183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004bd5760405162461bcd60e51b815260206004820181905260248201525f8051602062002731833981519152604482015260640162000440565b6001600160a01b0382165f81815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005735760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000440565b8060025f828254620005869190620007ec565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005b4908490620007ec565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200062b57607f821691505b6020821081036200064a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005fd575f81815260208120601f850160051c81016020861015620006785750805b601f850160051c820191505b81811015620006995782815560010162000684565b505050505050565b81516001600160401b03811115620006bd57620006bd62000602565b620006d581620006ce845462000616565b8462000650565b602080601f8311600181146200070b575f8415620006f35750858301515b5f19600386901b1c1916600185901b17855562000699565b5f85815260208120601f198616915b828110156200073b578886015182559484019460019091019084016200071a565b50858210156200075957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200077a575f80fd5b81516001600160a01b038116811462000791575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007c657620007c662000798565b92915050565b5f82620007e757634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007c657620007c662000798565b60805160a051611ed56200085c5f395f81816103dc01528181611284015281816114900152818161159a0152818161163d01526116f701525f81816103050152818161198f01528181611a460152611a850152611ed55ff3fe608060405260043610610241575f3560e01c806375f0a87411610134578063c04a5414116100b3578063dd62ed3e11610078578063dd62ed3e146106ac578063e2f45605146106f0578063f11a24d314610705578063f2fde38b1461071a578063f637434214610739578063f8b45b051461074e575f80fd5b8063c04a541414610625578063c18bc19514610644578063c8c8ebe414610663578063d257b34f14610678578063d85ba06314610697575f80fd5b8063924de9b7116100f9578063924de9b71461059657806395d89b41146105b5578063a9059cbb146105c9578063bbc0c742146105e8578063c024666814610606575f80fd5b806375f0a8741461051c5780637bce5a041461053b5780638a8c523c146105505780638da5cb5b146105645780639213691314610581575f80fd5b806349bd5a5e116101c05780636ddd1713116101855780636ddd17131461048257806370a08231146104a1578063715018a6146104d5578063751039fc146104e95780637571336a146104fd575f80fd5b806349bd5a5e146103cb5780634a62bb65146103fe5780634fbee1931461041757806366ca9b831461044e5780636a486a8e1461046d575f80fd5b806318160ddd1161020657806318160ddd1461033f5780631f2dc5ef1461035d578063203e727e1461037257806323b872dd14610391578063313ce567146103b0575f80fd5b806302dbd8f81461024c57806306fdde031461026d578063095ea7b31461029757806310d5de53146102c65780631694505e146102f4575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b5061026b610266366004611af7565b610763565b005b348015610278575f80fd5b5061028161081e565b60405161028e9190611b17565b60405180910390f35b3480156102a2575f80fd5b506102b66102b1366004611b76565b6108ae565b604051901515815260200161028e565b3480156102d1575f80fd5b506102b66102e0366004611ba0565b60146020525f908152604090205460ff1681565b3480156102ff575f80fd5b506103277f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561034a575f80fd5b506002545b60405190815260200161028e565b348015610368575f80fd5b5061034f60125481565b34801561037d575f80fd5b5061026b61038c366004611bbb565b6108c4565b34801561039c575f80fd5b506102b66103ab366004611bd2565b6109a1565b3480156103bb575f80fd5b506040516012815260200161028e565b3480156103d6575f80fd5b506103277f000000000000000000000000000000000000000000000000000000000000000081565b348015610409575f80fd5b50600b546102b69060ff1681565b348015610422575f80fd5b506102b6610431366004611ba0565b6001600160a01b03165f9081526013602052604090205460ff1690565b348015610459575f80fd5b5061026b610468366004611af7565b610a49565b348015610478575f80fd5b5061034f600f5481565b34801561048d575f80fd5b50600b546102b69062010000900460ff1681565b3480156104ac575f80fd5b5061034f6104bb366004611ba0565b6001600160a01b03165f9081526020819052604090205490565b3480156104e0575f80fd5b5061026b610af0565b3480156104f4575f80fd5b506102b6610b25565b348015610508575f80fd5b5061026b610517366004611c1f565b610b61565b348015610527575f80fd5b50600654610327906001600160a01b031681565b348015610546575f80fd5b5061034f600d5481565b34801561055b575f80fd5b5061026b610bb5565b34801561056f575f80fd5b506005546001600160a01b0316610327565b34801561058c575f80fd5b5061034f60105481565b3480156105a1575f80fd5b5061026b6105b0366004611c52565b610bf2565b3480156105c0575f80fd5b50610281610c38565b3480156105d4575f80fd5b506102b66105e3366004611b76565b610c47565b3480156105f3575f80fd5b50600b546102b690610100900460ff1681565b348015610611575f80fd5b5061026b610620366004611c1f565b610c53565b348015610630575f80fd5b50600754610327906001600160a01b031681565b34801561064f575f80fd5b5061026b61065e366004611bbb565b610cdb565b34801561066e575f80fd5b5061034f60085481565b348015610683575f80fd5b506102b6610692366004611bbb565b610dac565b3480156106a2575f80fd5b5061034f600c5481565b3480156106b7575f80fd5b5061034f6106c6366004611c6b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106fb575f80fd5b5061034f60095481565b348015610710575f80fd5b5061034f600e5481565b348015610725575f80fd5b5061026b610734366004611ba0565b610f02565b348015610744575f80fd5b5061034f60115481565b348015610759575f80fd5b5061034f600a5481565b6005546001600160a01b031633146107965760405162461bcd60e51b815260040161078d90611ca2565b60405180910390fd5b601082905560118190556107aa8183611ceb565b600f81905560125461012c916107cc91906107c6906064610f9d565b90610faf565b111561081a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c657373000000604482015260640161078d565b5050565b60606003805461082d90611cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461085990611cfe565b80156108a45780601f1061087b576101008083540402835291602001916108a4565b820191905f5260205f20905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b5f6108ba338484610fba565b5060015b92915050565b6005546001600160a01b031633146108ee5760405162461bcd60e51b815260040161078d90611ca2565b670de0b6b3a76400006103e861090360025490565b61090e906001611d30565b6109189190611d47565b6109229190611d47565b8110156109895760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161078d565b61099b81670de0b6b3a7640000611d30565b60085550565b5f6109ad8484846110dd565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610a315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161078d565b610a3e8533858403610fba565b506001949350505050565b6005546001600160a01b03163314610a735760405162461bcd60e51b815260040161078d90611ca2565b600d829055600e819055610a878183611ceb565b600c819055601254609691610aa291906107c6906064610f9d565b111561081a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c657373000000604482015260640161078d565b6005546001600160a01b03163314610b1a5760405162461bcd60e51b815260040161078d90611ca2565b610b235f61173f565b565b6005545f906001600160a01b03163314610b515760405162461bcd60e51b815260040161078d90611ca2565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b8b5760405162461bcd60e51b815260040161078d90611ca2565b6001600160a01b03919091165f908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bdf5760405162461bcd60e51b815260040161078d90611ca2565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610c1c5760405162461bcd60e51b815260040161078d90611ca2565b600b8054911515620100000262ff000019909216919091179055565b60606004805461082d90611cfe565b5f6108ba3384846110dd565b6005546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161078d90611ca2565b6001600160a01b0382165f81815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d055760405162461bcd60e51b815260040161078d90611ca2565b670de0b6b3a76400006103e8610d1a60025490565b610d25906005611d30565b610d2f9190611d47565b610d399190611d47565b811015610d945760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161078d565b610da681670de0b6b3a7640000611d30565b600a5550565b6005545f906001600160a01b03163314610dd85760405162461bcd60e51b815260040161078d90611ca2565b620186a0610de560025490565b610df0906001611d30565b610dfa9190611d47565b821015610e675760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161078d565b6103e8610e7360025490565b610e7e906005611d30565b610e889190611d47565b821115610ef45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161078d565b50600981905560015b919050565b6005546001600160a01b03163314610f2c5760405162461bcd60e51b815260040161078d90611ca2565b6001600160a01b038116610f915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b610f9a8161173f565b50565b5f610fa88284611d30565b9392505050565b5f610fa88284611d47565b6001600160a01b03831661101c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078d565b6001600160a01b03821661107d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111035760405162461bcd60e51b815260040161078d90611d66565b6001600160a01b0382166111295760405162461bcd60e51b815260040161078d90611dab565b805f036111405761113b83835f611790565b505050565b600b5460ff1615611446576005546001600160a01b0384811691161480159061117757506005546001600160a01b03838116911614155b801561119157506007546001600160a01b03848116911614155b80156111ab57506007546001600160a01b03838116911614155b80156111bf57506001600160a01b03821615155b80156111d657506001600160a01b03821661dead14155b80156111ec5750600554600160a01b900460ff16155b1561144657600b54610100900460ff16611282576001600160a01b0383165f9081526013602052604090205460ff168061123d57506001600160a01b0382165f9081526013602052604090205460ff165b6112825760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156112db57506001600160a01b0382165f9081526014602052604090205460ff16155b156113be576008548111156113505760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161078d565b600a546001600160a01b0383165f908152602081905260409020546113759083611ceb565b11156113b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b611446565b6001600160a01b0382165f9081526014602052604090205460ff1661144657600a546001600160a01b0383165f908152602081905260409020546114029083611ceb565b11156114465760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b305f90815260208190526040902054600954811080159081906114715750600b5462010000900460ff165b80156114875750600554600160a01b900460ff16155b80156114c457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156114e857506001600160a01b0385165f9081526013602052604090205460ff16155b801561150c57506001600160a01b0384165f9081526013602052604090205460ff16155b1561153b576005805460ff60a01b1916600160a01b17905561152d836118e3565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526013602052604090205460ff600160a01b90920482161591168061158757506001600160a01b0385165f9081526013602052604090205460ff165b1561158f57505f5b5f805f8315611729577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156115da57505f600f54115b1561163b576115fa6012546107c6600f548a610f9d90919063ffffffff16565b9250600f546011548461160d9190611d30565b6116179190611d47565b9150600f546010548461162a9190611d30565b6116349190611d47565b90506116da565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561167d57505f600c54115b156116da5761169d6012546107c6600c548a610f9d90919063ffffffff16565b9250600c54600e54846116b09190611d30565b6116ba9190611d47565b9150600c54600d54846116cd9190611d30565b6116d79190611d47565b90505b82156116eb576116eb893085611790565b811561171c5761171c307f000000000000000000000000000000000000000000000000000000000000000084611790565b6117268388611dee565b96505b611734898989611790565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166117b65760405162461bcd60e51b815260040161078d90611d66565b6001600160a01b0382166117dc5760405162461bcd60e51b815260040161078d90611dab565b6001600160a01b0383165f90815260208190526040902054818110156118535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078d565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611889908490611ceb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118d591815260200190565b60405180910390a350505050565b305f90815260208190526040812054908190036118fe575050565b5f61191b836119168460095460286119169190611d30565b611926565b905061113b8161193a565b5f8183116119345782610fa8565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061196d5761196d611e01565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0d9190611e15565b81600181518110611a2057611a20611e01565b60200260200101906001600160a01b031690816001600160a01b031681525050611a6b307f000000000000000000000000000000000000000000000000000000000000000084610fba565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611ac69287925f92889291909116904290600401611e30565b5f604051808303815f87803b158015611add575f80fd5b505af1158015611aef573d5f803e3d5ffd5b505050505050565b5f8060408385031215611b08575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b81811015611b4257858101830151858201604001528201611b26565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f9a575f80fd5b5f8060408385031215611b87575f80fd5b8235611b9281611b62565b946020939093013593505050565b5f60208284031215611bb0575f80fd5b8135610fa881611b62565b5f60208284031215611bcb575f80fd5b5035919050565b5f805f60608486031215611be4575f80fd5b8335611bef81611b62565b92506020840135611bff81611b62565b929592945050506040919091013590565b80358015158114610efd575f80fd5b5f8060408385031215611c30575f80fd5b8235611c3b81611b62565b9150611c4960208401611c10565b90509250929050565b5f60208284031215611c62575f80fd5b610fa882611c10565b5f8060408385031215611c7c575f80fd5b8235611c8781611b62565b91506020830135611c9781611b62565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108be576108be611cd7565b600181811c90821680611d1257607f821691505b60208210810361193457634e487b7160e01b5f52602260045260245ffd5b80820281158282048414176108be576108be611cd7565b5f82611d6157634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108be576108be611cd7565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611e25575f80fd5b8151610fa881611b62565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611e7e5784516001600160a01b031683529383019391830191600101611e59565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b44c303a6ad393eadedbefc0b459273e1747d727d481c97fe90144f24612977564736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610241575f3560e01c806375f0a87411610134578063c04a5414116100b3578063dd62ed3e11610078578063dd62ed3e146106ac578063e2f45605146106f0578063f11a24d314610705578063f2fde38b1461071a578063f637434214610739578063f8b45b051461074e575f80fd5b8063c04a541414610625578063c18bc19514610644578063c8c8ebe414610663578063d257b34f14610678578063d85ba06314610697575f80fd5b8063924de9b7116100f9578063924de9b71461059657806395d89b41146105b5578063a9059cbb146105c9578063bbc0c742146105e8578063c024666814610606575f80fd5b806375f0a8741461051c5780637bce5a041461053b5780638a8c523c146105505780638da5cb5b146105645780639213691314610581575f80fd5b806349bd5a5e116101c05780636ddd1713116101855780636ddd17131461048257806370a08231146104a1578063715018a6146104d5578063751039fc146104e95780637571336a146104fd575f80fd5b806349bd5a5e146103cb5780634a62bb65146103fe5780634fbee1931461041757806366ca9b831461044e5780636a486a8e1461046d575f80fd5b806318160ddd1161020657806318160ddd1461033f5780631f2dc5ef1461035d578063203e727e1461037257806323b872dd14610391578063313ce567146103b0575f80fd5b806302dbd8f81461024c57806306fdde031461026d578063095ea7b31461029757806310d5de53146102c65780631694505e146102f4575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b5061026b610266366004611af7565b610763565b005b348015610278575f80fd5b5061028161081e565b60405161028e9190611b17565b60405180910390f35b3480156102a2575f80fd5b506102b66102b1366004611b76565b6108ae565b604051901515815260200161028e565b3480156102d1575f80fd5b506102b66102e0366004611ba0565b60146020525f908152604090205460ff1681565b3480156102ff575f80fd5b506103277f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561034a575f80fd5b506002545b60405190815260200161028e565b348015610368575f80fd5b5061034f60125481565b34801561037d575f80fd5b5061026b61038c366004611bbb565b6108c4565b34801561039c575f80fd5b506102b66103ab366004611bd2565b6109a1565b3480156103bb575f80fd5b506040516012815260200161028e565b3480156103d6575f80fd5b506103277f0000000000000000000000002cffe95e8dca187f51497ecb754e7d21737e00b281565b348015610409575f80fd5b50600b546102b69060ff1681565b348015610422575f80fd5b506102b6610431366004611ba0565b6001600160a01b03165f9081526013602052604090205460ff1690565b348015610459575f80fd5b5061026b610468366004611af7565b610a49565b348015610478575f80fd5b5061034f600f5481565b34801561048d575f80fd5b50600b546102b69062010000900460ff1681565b3480156104ac575f80fd5b5061034f6104bb366004611ba0565b6001600160a01b03165f9081526020819052604090205490565b3480156104e0575f80fd5b5061026b610af0565b3480156104f4575f80fd5b506102b6610b25565b348015610508575f80fd5b5061026b610517366004611c1f565b610b61565b348015610527575f80fd5b50600654610327906001600160a01b031681565b348015610546575f80fd5b5061034f600d5481565b34801561055b575f80fd5b5061026b610bb5565b34801561056f575f80fd5b506005546001600160a01b0316610327565b34801561058c575f80fd5b5061034f60105481565b3480156105a1575f80fd5b5061026b6105b0366004611c52565b610bf2565b3480156105c0575f80fd5b50610281610c38565b3480156105d4575f80fd5b506102b66105e3366004611b76565b610c47565b3480156105f3575f80fd5b50600b546102b690610100900460ff1681565b348015610611575f80fd5b5061026b610620366004611c1f565b610c53565b348015610630575f80fd5b50600754610327906001600160a01b031681565b34801561064f575f80fd5b5061026b61065e366004611bbb565b610cdb565b34801561066e575f80fd5b5061034f60085481565b348015610683575f80fd5b506102b6610692366004611bbb565b610dac565b3480156106a2575f80fd5b5061034f600c5481565b3480156106b7575f80fd5b5061034f6106c6366004611c6b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106fb575f80fd5b5061034f60095481565b348015610710575f80fd5b5061034f600e5481565b348015610725575f80fd5b5061026b610734366004611ba0565b610f02565b348015610744575f80fd5b5061034f60115481565b348015610759575f80fd5b5061034f600a5481565b6005546001600160a01b031633146107965760405162461bcd60e51b815260040161078d90611ca2565b60405180910390fd5b601082905560118190556107aa8183611ceb565b600f81905560125461012c916107cc91906107c6906064610f9d565b90610faf565b111561081a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c657373000000604482015260640161078d565b5050565b60606003805461082d90611cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461085990611cfe565b80156108a45780601f1061087b576101008083540402835291602001916108a4565b820191905f5260205f20905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b5f6108ba338484610fba565b5060015b92915050565b6005546001600160a01b031633146108ee5760405162461bcd60e51b815260040161078d90611ca2565b670de0b6b3a76400006103e861090360025490565b61090e906001611d30565b6109189190611d47565b6109229190611d47565b8110156109895760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161078d565b61099b81670de0b6b3a7640000611d30565b60085550565b5f6109ad8484846110dd565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610a315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161078d565b610a3e8533858403610fba565b506001949350505050565b6005546001600160a01b03163314610a735760405162461bcd60e51b815260040161078d90611ca2565b600d829055600e819055610a878183611ceb565b600c819055601254609691610aa291906107c6906064610f9d565b111561081a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c657373000000604482015260640161078d565b6005546001600160a01b03163314610b1a5760405162461bcd60e51b815260040161078d90611ca2565b610b235f61173f565b565b6005545f906001600160a01b03163314610b515760405162461bcd60e51b815260040161078d90611ca2565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b8b5760405162461bcd60e51b815260040161078d90611ca2565b6001600160a01b03919091165f908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bdf5760405162461bcd60e51b815260040161078d90611ca2565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610c1c5760405162461bcd60e51b815260040161078d90611ca2565b600b8054911515620100000262ff000019909216919091179055565b60606004805461082d90611cfe565b5f6108ba3384846110dd565b6005546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161078d90611ca2565b6001600160a01b0382165f81815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d055760405162461bcd60e51b815260040161078d90611ca2565b670de0b6b3a76400006103e8610d1a60025490565b610d25906005611d30565b610d2f9190611d47565b610d399190611d47565b811015610d945760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161078d565b610da681670de0b6b3a7640000611d30565b600a5550565b6005545f906001600160a01b03163314610dd85760405162461bcd60e51b815260040161078d90611ca2565b620186a0610de560025490565b610df0906001611d30565b610dfa9190611d47565b821015610e675760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161078d565b6103e8610e7360025490565b610e7e906005611d30565b610e889190611d47565b821115610ef45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161078d565b50600981905560015b919050565b6005546001600160a01b03163314610f2c5760405162461bcd60e51b815260040161078d90611ca2565b6001600160a01b038116610f915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b610f9a8161173f565b50565b5f610fa88284611d30565b9392505050565b5f610fa88284611d47565b6001600160a01b03831661101c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078d565b6001600160a01b03821661107d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111035760405162461bcd60e51b815260040161078d90611d66565b6001600160a01b0382166111295760405162461bcd60e51b815260040161078d90611dab565b805f036111405761113b83835f611790565b505050565b600b5460ff1615611446576005546001600160a01b0384811691161480159061117757506005546001600160a01b03838116911614155b801561119157506007546001600160a01b03848116911614155b80156111ab57506007546001600160a01b03838116911614155b80156111bf57506001600160a01b03821615155b80156111d657506001600160a01b03821661dead14155b80156111ec5750600554600160a01b900460ff16155b1561144657600b54610100900460ff16611282576001600160a01b0383165f9081526013602052604090205460ff168061123d57506001600160a01b0382165f9081526013602052604090205460ff165b6112825760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078d565b7f0000000000000000000000002cffe95e8dca187f51497ecb754e7d21737e00b26001600160a01b0316836001600160a01b03161480156112db57506001600160a01b0382165f9081526014602052604090205460ff16155b156113be576008548111156113505760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161078d565b600a546001600160a01b0383165f908152602081905260409020546113759083611ceb565b11156113b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b611446565b6001600160a01b0382165f9081526014602052604090205460ff1661144657600a546001600160a01b0383165f908152602081905260409020546114029083611ceb565b11156114465760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b305f90815260208190526040902054600954811080159081906114715750600b5462010000900460ff165b80156114875750600554600160a01b900460ff16155b80156114c457507f0000000000000000000000002cffe95e8dca187f51497ecb754e7d21737e00b26001600160a01b0316846001600160a01b0316145b80156114e857506001600160a01b0385165f9081526013602052604090205460ff16155b801561150c57506001600160a01b0384165f9081526013602052604090205460ff16155b1561153b576005805460ff60a01b1916600160a01b17905561152d836118e3565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526013602052604090205460ff600160a01b90920482161591168061158757506001600160a01b0385165f9081526013602052604090205460ff165b1561158f57505f5b5f805f8315611729577f0000000000000000000000002cffe95e8dca187f51497ecb754e7d21737e00b26001600160a01b0316886001600160a01b03161480156115da57505f600f54115b1561163b576115fa6012546107c6600f548a610f9d90919063ffffffff16565b9250600f546011548461160d9190611d30565b6116179190611d47565b9150600f546010548461162a9190611d30565b6116349190611d47565b90506116da565b7f0000000000000000000000002cffe95e8dca187f51497ecb754e7d21737e00b26001600160a01b0316896001600160a01b031614801561167d57505f600c54115b156116da5761169d6012546107c6600c548a610f9d90919063ffffffff16565b9250600c54600e54846116b09190611d30565b6116ba9190611d47565b9150600c54600d54846116cd9190611d30565b6116d79190611d47565b90505b82156116eb576116eb893085611790565b811561171c5761171c307f0000000000000000000000002cffe95e8dca187f51497ecb754e7d21737e00b284611790565b6117268388611dee565b96505b611734898989611790565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166117b65760405162461bcd60e51b815260040161078d90611d66565b6001600160a01b0382166117dc5760405162461bcd60e51b815260040161078d90611dab565b6001600160a01b0383165f90815260208190526040902054818110156118535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078d565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611889908490611ceb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118d591815260200190565b60405180910390a350505050565b305f90815260208190526040812054908190036118fe575050565b5f61191b836119168460095460286119169190611d30565b611926565b905061113b8161193a565b5f8183116119345782610fa8565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061196d5761196d611e01565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0d9190611e15565b81600181518110611a2057611a20611e01565b60200260200101906001600160a01b031690816001600160a01b031681525050611a6b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fba565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611ac69287925f92889291909116904290600401611e30565b5f604051808303815f87803b158015611add575f80fd5b505af1158015611aef573d5f803e3d5ffd5b505050505050565b5f8060408385031215611b08575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b81811015611b4257858101830151858201604001528201611b26565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f9a575f80fd5b5f8060408385031215611b87575f80fd5b8235611b9281611b62565b946020939093013593505050565b5f60208284031215611bb0575f80fd5b8135610fa881611b62565b5f60208284031215611bcb575f80fd5b5035919050565b5f805f60608486031215611be4575f80fd5b8335611bef81611b62565b92506020840135611bff81611b62565b929592945050506040919091013590565b80358015158114610efd575f80fd5b5f8060408385031215611c30575f80fd5b8235611c3b81611b62565b9150611c4960208401611c10565b90509250929050565b5f60208284031215611c62575f80fd5b610fa882611c10565b5f8060408385031215611c7c575f80fd5b8235611c8781611b62565b91506020830135611c9781611b62565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108be576108be611cd7565b600181811c90821680611d1257607f821691505b60208210810361193457634e487b7160e01b5f52602260045260245ffd5b80820281158282048414176108be576108be611cd7565b5f82611d6157634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108be576108be611cd7565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611e25575f80fd5b8151610fa881611b62565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611e7e5784516001600160a01b031683529383019391830191600101611e59565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b44c303a6ad393eadedbefc0b459273e1747d727d481c97fe90144f24612977564736f6c63430008140033

Deployed Bytecode Sourcemap

25236:11053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30745:365;;;;;;;;;;-1:-1:-1;30745:365:0;;;;;:::i;:::-;;:::i;:::-;;10039:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12206:169;;;;;;;;;;-1:-1:-1;12206:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;12206:169:0;1276:187:1;26152:63:0;;;;;;;;;;-1:-1:-1;26152:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25310:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1910:32:1;;;1892:51;;1880:2;1865:18;25310:51:0;1720:229:1;11159:108:0;;;;;;;;;;-1:-1:-1;11247:12:0;;11159:108;;;2100:25:1;;;2088:2;2073:18;11159:108:0;1954:177:1;25981:22:0;;;;;;;;;;;;;;;;29461:275;;;;;;;;;;-1:-1:-1;29461:275:0;;;;;:::i;:::-;;:::i;12857:492::-;;;;;;;;;;-1:-1:-1;12857:492:0;;;;;:::i;:::-;;:::i;11001:93::-;;;;;;;;;;-1:-1:-1;11001:93:0;;11084:2;2924:36:1;;2912:2;2897:18;11001:93:0;2782:184:1;25368:38:0;;;;;;;;;;;;;;;25638:33;;;;;;;;;;-1:-1:-1;25638:33:0;;;;;;;;31310:126;;;;;;;;;;-1:-1:-1;31310:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31400:28:0;31376:4;31400:28;;;:19;:28;;;;;;;;;31310:126;30379:358;;;;;;;;;;-1:-1:-1;30379:358:0;;;;;:::i;:::-;;:::i;25868:28::-;;;;;;;;;;;;;;;;25718:31;;;;;;;;;;-1:-1:-1;25718:31:0;;;;;;;;;;;11330:127;;;;;;;;;;-1:-1:-1;11330:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11431:18:0;11404:7;11431:18;;;;;;;;;;;;11330:127;3274:103;;;;;;;;;;;;;:::i;28765:121::-;;;;;;;;;;;;;:::i;30008:167::-;;;;;;;;;;-1:-1:-1;30008:167:0;;;;;:::i;:::-;;:::i;25445:30::-;;;;;;;;;;-1:-1:-1;25445:30:0;;;;-1:-1:-1;;;;;25445:30:0;;;25792;;;;;;;;;;;;;;;;28601:112;;;;;;;;;;;;;:::i;2623:87::-;;;;;;;;;;-1:-1:-1;2696:6:0;;-1:-1:-1;;;;;2696:6:0;2623:87;;25903:31;;;;;;;;;;;;;;;;30271:100;;;;;;;;;;-1:-1:-1;30271:100:0;;;;;:::i;:::-;;:::i;10258:104::-;;;;;;;;;;;;;:::i;11670:175::-;;;;;;;;;;-1:-1:-1;11670:175:0;;;;;:::i;:::-;;:::i;25678:33::-;;;;;;;;;;-1:-1:-1;25678:33:0;;;;;;;;;;;31118:182;;;;;;;;;;-1:-1:-1;31118:182:0;;;;;:::i;:::-;;:::i;25482:32::-;;;;;;;;;;-1:-1:-1;25482:32:0;;;;-1:-1:-1;;;;;25482:32:0;;;29744:256;;;;;;;;;;-1:-1:-1;29744:256:0;;;;;:::i;:::-;;:::i;25523:35::-;;;;;;;;;;;;;;;;28956:497;;;;;;;;;;-1:-1:-1;28956:497:0;;;;;:::i;:::-;;:::i;25758:27::-;;;;;;;;;;;;;;;;11908:151;;;;;;;;;;-1:-1:-1;11908:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;12024:18:0;;;11997:7;12024:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11908:151;25565:33;;;;;;;;;;;;;;;;25829:30;;;;;;;;;;;;;;;;3532:201;;;;;;;;;;-1:-1:-1;3532:201:0;;;;;:::i;:::-;;:::i;25941:31::-;;;;;;;;;;;;;;;;25605:24;;;;;;;;;;;;;;;;30745:365;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;;;;;;;;;30870:16:::1;:32:::0;;;30913:16:::1;:32:::0;;;30972:35:::1;30932:13:::0;30889;30972:35:::1;:::i;:::-;30956:13;:51:::0;;;31053:7:::1;::::0;31065:3:::1;::::0;31026:35:::1;::::0;31053:7;31026:22:::1;::::0;31044:3:::1;31026:17;:22::i;:::-;:26:::0;::::1;:35::i;:::-;:42;;31018:84;;;::::0;-1:-1:-1;;;31018:84:0;;5067:2:1;31018:84:0::1;::::0;::::1;5049:21:1::0;5106:2;5086:18;;;5079:30;5145:31;5125:18;;;5118:59;5194:18;;31018:84:0::1;4865:353:1::0;31018:84:0::1;30745:365:::0;;:::o;10039:100::-;10093:13;10126:5;10119:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:100;:::o;12206:169::-;12289:4;12306:39;1376:10;12329:7;12338:6;12306:8;:39::i;:::-;-1:-1:-1;12363:4:0;12206:169;;;;;:::o;29461:275::-;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;29598:4:::1;29590;29569:13;11247:12:::0;;;11159:108;29569:13:::1;:17;::::0;29585:1:::1;29569:17;:::i;:::-;29568:26;;;;:::i;:::-;29567:35;;;;:::i;:::-;29557:6;:45;;29535:142;;;::::0;-1:-1:-1;;;29535:142:0;;6205:2:1;29535:142:0::1;::::0;::::1;6187:21:1::0;6244:2;6224:18;;;6217:30;6283:34;6263:18;;;6256:62;-1:-1:-1;;;6334:18:1;;;6327:45;6389:19;;29535:142:0::1;6003:411:1::0;29535:142:0::1;29711:17;:6:::0;29721::::1;29711:17;:::i;:::-;29688:20;:40:::0;-1:-1:-1;29461:275:0:o;12857:492::-;12997:4;13014:36;13024:6;13032:9;13043:6;13014:9;:36::i;:::-;-1:-1:-1;;;;;13090:19:0;;13063:24;13090:19;;;:11;:19;;;;;;;;1376:10;13090:33;;;;;;;;13142:26;;;;13134:79;;;;-1:-1:-1;;;13134:79:0;;6621:2:1;13134:79:0;;;6603:21:1;6660:2;6640:18;;;6633:30;6699:34;6679:18;;;6672:62;-1:-1:-1;;;6750:18:1;;;6743:38;6798:19;;13134:79:0;6419:404:1;13134:79:0;13249:57;13258:6;1376:10;13299:6;13280:16;:25;13249:8;:57::i;:::-;-1:-1:-1;13337:4:0;;12857:492;-1:-1:-1;;;;12857:492:0:o;30379:358::-;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;30503:15:::1;:31:::0;;;30545:15:::1;:31:::0;;;30602:33:::1;30563:13:::0;30521;30602:33:::1;:::i;:::-;30587:12;:48:::0;;;30680:7:::1;::::0;30692:3:::1;::::0;30654:34:::1;::::0;30680:7;30654:21:::1;::::0;30671:3:::1;30654:16;:21::i;:34::-;:41;;30646:83;;;::::0;-1:-1:-1;;;30646:83:0;;7030:2:1;30646:83:0::1;::::0;::::1;7012:21:1::0;7069:2;7049:18;;;7042:30;7108:31;7088:18;;;7081:59;7157:18;;30646:83:0::1;6828:353:1::0;3274:103:0;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;3339:30:::1;3366:1;3339:18;:30::i;:::-;3274:103::o:0;28765:121::-;2696:6;;28817:4;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;-1:-1:-1;28834:14:0::1;:22:::0;;-1:-1:-1;;28834:22:0::1;::::0;;;28765:121;:::o;30008:167::-;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30121:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;30121:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30008:167::o;28601:112::-;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;28656:13:::1;:20:::0;;-1:-1:-1;;28687:18:0;;;;;28601:112::o;30271:100::-;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;30342:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30342:21:0;;::::1;::::0;;;::::1;::::0;;30271:100::o;10258:104::-;10314:13;10347:7;10340:14;;;;;:::i;11670:175::-;11756:4;11773:42;1376:10;11797:9;11808:6;11773:9;:42::i;31118:182::-;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31203:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;31203:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31258:34;;1416:41:1;;;31258:34:0::1;::::0;1389:18:1;31258:34:0::1;;;;;;;31118:182:::0;;:::o;29744:256::-;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;29884:4:::1;29876;29855:13;11247:12:::0;;;11159:108;29855:13:::1;:17;::::0;29871:1:::1;29855:17;:::i;:::-;29854:26;;;;:::i;:::-;29853:35;;;;:::i;:::-;29843:6;:45;;29821:131;;;::::0;-1:-1:-1;;;29821:131:0;;7388:2:1;29821:131:0::1;::::0;::::1;7370:21:1::0;7427:2;7407:18;;;7400:30;7466:34;7446:18;;;7439:62;-1:-1:-1;;;7517:18:1;;;7510:34;7561:19;;29821:131:0::1;7186:400:1::0;29821:131:0::1;29975:17;:6:::0;29985::::1;29975:17;:::i;:::-;29963:9;:29:::0;-1:-1:-1;29744:256:0:o;28956:497::-;2696:6;;29064:4;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;29143:6:::1;29122:13;11247:12:::0;;;11159:108;29122:13:::1;:17;::::0;29138:1:::1;29122:17;:::i;:::-;29121:28;;;;:::i;:::-;29108:9;:41;;29086:144;;;::::0;-1:-1:-1;;;29086:144:0;;7793:2:1;29086:144:0::1;::::0;::::1;7775:21:1::0;7832:2;7812:18;;;7805:30;7871:34;7851:18;;;7844:62;-1:-1:-1;;;7922:18:1;;;7915:51;7983:19;;29086:144:0::1;7591:417:1::0;29086:144:0::1;29298:4;29277:13;11247:12:::0;;;11159:108;29277:13:::1;:17;::::0;29293:1:::1;29277:17;:::i;:::-;29276:26;;;;:::i;:::-;29263:9;:39;;29241:141;;;::::0;-1:-1:-1;;;29241:141:0;;8215:2:1;29241:141:0::1;::::0;::::1;8197:21:1::0;8254:2;8234:18;;;8227:30;8293:34;8273:18;;;8266:62;-1:-1:-1;;;8344:18:1;;;8337:50;8404:19;;29241:141:0::1;8013:416:1::0;29241:141:0::1;-1:-1:-1::0;29393:18:0::1;:30:::0;;;29441:4:::1;2914:1;28956:497:::0;;;:::o;3532:201::-;2696:6;;-1:-1:-1;;;;;2696:6:0;1376:10;2843:23;2835:68;;;;-1:-1:-1;;;2835:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3621:22:0;::::1;3613:73;;;::::0;-1:-1:-1;;;3613:73:0;;8636:2:1;3613:73:0::1;::::0;::::1;8618:21:1::0;8675:2;8655:18;;;8648:30;8714:34;8694:18;;;8687:62;-1:-1:-1;;;8765:18:1;;;8758:36;8811:19;;3613:73:0::1;8434:402:1::0;3613:73:0::1;3697:28;3716:8;3697:18;:28::i;:::-;3532:201:::0;:::o;21151:98::-;21209:7;21236:5;21240:1;21236;:5;:::i;:::-;21229:12;21151:98;-1:-1:-1;;;21151:98:0:o;21550:::-;21608:7;21635:5;21639:1;21635;:5;:::i;15698:380::-;-1:-1:-1;;;;;15834:19:0;;15826:68;;;;-1:-1:-1;;;15826:68:0;;9043:2:1;15826:68:0;;;9025:21:1;9082:2;9062:18;;;9055:30;9121:34;9101:18;;;9094:62;-1:-1:-1;;;9172:18:1;;;9165:34;9216:19;;15826:68:0;8841:400:1;15826:68:0;-1:-1:-1;;;;;15913:21:0;;15905:68;;;;-1:-1:-1;;;15905:68:0;;9448:2:1;15905:68:0;;;9430:21:1;9487:2;9467:18;;;9460:30;9526:34;9506:18;;;9499:62;-1:-1:-1;;;9577:18:1;;;9570:32;9619:19;;15905:68:0;9246:398:1;15905:68:0;-1:-1:-1;;;;;15986:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16038:32;;2100:25:1;;;16038:32:0;;2073:18:1;16038:32:0;;;;;;;15698:380;;;:::o;31444:3814::-;-1:-1:-1;;;;;31576:18:0;;31568:68;;;;-1:-1:-1;;;31568:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31655:16:0;;31647:64;;;;-1:-1:-1;;;31647:64:0;;;;;;;:::i;:::-;31728:6;31738:1;31728:11;31724:93;;31756:28;31772:4;31778:2;31782:1;31756:15;:28::i;:::-;31444:3814;;;:::o;31724:93::-;31833:14;;;;31829:1520;;;2696:6;;-1:-1:-1;;;;;31886:15:0;;;2696:6;;31886:15;;;;:49;;-1:-1:-1;2696:6:0;;-1:-1:-1;;;;;31922:13:0;;;2696:6;;31922:13;;31886:49;:95;;;;-1:-1:-1;31964:17:0;;-1:-1:-1;;;;;31956:25:0;;;31964:17;;31956:25;;31886:95;:139;;;;-1:-1:-1;32008:17:0;;-1:-1:-1;;;;;32002:23:0;;;32008:17;;32002:23;;31886:139;:176;;;;-1:-1:-1;;;;;;32046:16:0;;;;31886:176;:218;;;;-1:-1:-1;;;;;;32083:21:0;;32097:6;32083:21;;31886:218;:248;;;;-1:-1:-1;32126:8:0;;-1:-1:-1;;;32126:8:0;;;;32125:9;31886:248;31864:1474;;;32174:13;;;;;;;32169:223;;-1:-1:-1;;;;;32246:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32275:23:0;;;;;;:19;:23;;;;;;;;32246:52;32212:160;;;;-1:-1:-1;;;32212:160:0;;10661:2:1;32212:160:0;;;10643:21:1;10700:2;10680:18;;;10673:30;-1:-1:-1;;;10719:18:1;;;10712:52;10781:18;;32212:160:0;10459:346:1;32212:160:0;32606:13;-1:-1:-1;;;;;32598:21:0;:4;-1:-1:-1;;;;;32598:21:0;;:82;;;;-1:-1:-1;;;;;;32645:35:0;;;;;;:31;:35;;;;;;;;32644:36;32598:82;32572:751;;;32767:20;;32757:6;:30;;32723:169;;;;-1:-1:-1;;;32723:169:0;;11012:2:1;32723:169:0;;;10994:21:1;11051:2;11031:18;;;11024:30;11090:34;11070:18;;;11063:62;-1:-1:-1;;;11141:18:1;;;11134:51;11202:19;;32723:169:0;10810:417:1;32723:169:0;32975:9;;-1:-1:-1;;;;;11431:18:0;;11404:7;11431:18;;;;;;;;;;;32949:22;;:6;:22;:::i;:::-;:35;;32915:140;;;;-1:-1:-1;;;32915:140:0;;11434:2:1;32915:140:0;;;11416:21:1;11473:2;11453:18;;;11446:30;-1:-1:-1;;;11492:18:1;;;11485:49;11551:18;;32915:140:0;11232:343:1;32915:140:0;32572:751;;;-1:-1:-1;;;;;33103:35:0;;;;;;:31;:35;;;;;;;;33098:225;;33223:9;;-1:-1:-1;;;;;11431:18:0;;11404:7;11431:18;;;;;;;;;;;33197:22;;:6;:22;:::i;:::-;:35;;33163:140;;;;-1:-1:-1;;;33163:140:0;;11434:2:1;33163:140:0;;;11416:21:1;11473:2;11453:18;;;11446:30;-1:-1:-1;;;11492:18:1;;;11485:49;11551:18;;33163:140:0;11232:343:1;33163:140:0;33410:4;33361:28;11431:18;;;;;;;;;;;33468;;33444:42;;;;;;;33517:35;;-1:-1:-1;33541:11:0;;;;;;;33517:35;:61;;;;-1:-1:-1;33570:8:0;;-1:-1:-1;;;33570:8:0;;;;33569:9;33517:61;:97;;;;;33601:13;-1:-1:-1;;;;;33595:19:0;:2;-1:-1:-1;;;;;33595:19:0;;33517:97;:140;;;;-1:-1:-1;;;;;;33632:25:0;;;;;;:19;:25;;;;;;;;33631:26;33517:140;:181;;;;-1:-1:-1;;;;;;33675:23:0;;;;;;:19;:23;;;;;;;;33674:24;33517:181;33499:319;;;33725:8;:15;;-1:-1:-1;;;;33725:15:0;-1:-1:-1;;;33725:15:0;;;33757:16;33766:6;33757:8;:16::i;:::-;33790:8;:16;;-1:-1:-1;;;;33790:16:0;;;33499:319;33846:8;;-1:-1:-1;;;;;33956:25:0;;33830:12;33956:25;;;:19;:25;;;;;;33846:8;-1:-1:-1;;;33846:8:0;;;;;33845:9;;33956:25;;:52;;-1:-1:-1;;;;;;33985:23:0;;;;;;:19;:23;;;;;;;;33956:52;33952:100;;;-1:-1:-1;34035:5:0;33952:100;34064:12;34091:26;34132;34251:7;34247:958;;;34309:13;-1:-1:-1;;;;;34303:19:0;:2;-1:-1:-1;;;;;34303:19:0;;:40;;;;;34342:1;34326:13;;:17;34303:40;34299:615;;;34371:38;34401:7;;34371:25;34382:13;;34371:6;:10;;:25;;;;:::i;:38::-;34364:45;;34477:13;;34457:16;;34450:4;:23;;;;:::i;:::-;34449:41;;;;:::i;:::-;34428:62;;34558:13;;34538:16;;34531:4;:23;;;;:::i;:::-;34530:41;;;;:::i;:::-;34509:62;;34299:615;;;34641:13;-1:-1:-1;;;;;34633:21:0;:4;-1:-1:-1;;;;;34633:21:0;;:41;;;;;34673:1;34658:12;;:16;34633:41;34629:285;;;34702:37;34731:7;;34702:24;34713:12;;34702:6;:10;;:24;;;;:::i;:37::-;34695:44;;34806:12;;34787:15;;34780:4;:22;;;;:::i;:::-;34779:39;;;;:::i;:::-;34758:60;;34886:12;;34867:15;;34860:4;:22;;;;:::i;:::-;34859:39;;;;:::i;:::-;34838:60;;34629:285;34934:8;;34930:91;;34963:42;34979:4;34993;35000;34963:15;:42::i;:::-;35039:22;;35035:128;;35082:65;35106:4;35113:13;35128:18;35082:15;:65::i;:::-;35179:14;35189:4;35179:14;;:::i;:::-;;;34247:958;35217:33;35233:4;35239:2;35243:6;35217:15;:33::i;:::-;31557:3701;;;;;;31444:3814;;;:::o;3893:191::-;3986:6;;;-1:-1:-1;;;;;4003:17:0;;;-1:-1:-1;;;;;;4003:17:0;;;;;;;4036:40;;3986:6;;;4003:17;3986:6;;4036:40;;3967:16;;4036:40;3956:128;3893:191;:::o;13839:733::-;-1:-1:-1;;;;;13979:20:0;;13971:70;;;;-1:-1:-1;;;13971:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14060:23:0;;14052:71;;;;-1:-1:-1;;;14052:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14220:17:0;;14196:21;14220:17;;;;;;;;;;;14256:23;;;;14248:74;;;;-1:-1:-1;;;14248:74:0;;11915:2:1;14248:74:0;;;11897:21:1;11954:2;11934:18;;;11927:30;11993:34;11973:18;;;11966:62;-1:-1:-1;;;12044:18:1;;;12037:36;12090:19;;14248:74:0;11713:402:1;14248:74:0;-1:-1:-1;;;;;14358:17:0;;;:9;:17;;;;;;;;;;;14378:22;;;14358:42;;14422:20;;;;;;;;:30;;14394:6;;14358:9;14422:30;;14394:6;;14422:30;:::i;:::-;;;;;;;;14487:9;-1:-1:-1;;;;;14470:35:0;14479:6;-1:-1:-1;;;;;14470:35:0;;14498:6;14470:35;;;;2100:25:1;;2088:2;2073:18;;1954:177;14470:35:0;;;;;;;;13960:612;13839:733;;;:::o;35971:313::-;36068:4;36024:23;11431:18;;;;;;;;;;;;36089:20;;;36085:59;;36126:7;35971:313;:::o;36085:59::-;36156:18;36177:58;36181:6;36189:45;36193:15;36210:18;;36231:2;36210:23;;;;:::i;:::-;36189:3;:45::i;36177:58::-;36156:79;;36248:28;36265:10;36248:16;:28::i;35266:98::-;35323:7;35350:1;35348;:3;35347:9;;35355:1;35347:9;;;-1:-1:-1;35353:1:0;35266:98;-1:-1:-1;35266:98:0:o;35372:591::-;35522:16;;;35536:1;35522:16;;;;;;;;35498:21;;35522:16;;;;;;;;;;-1:-1:-1;35522:16:0;35498:40;;35567:4;35549;35554:1;35549:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35549:23:0;;;-1:-1:-1;;;;;35549:23:0;;;;;35593:15;-1:-1:-1;;;;;35593:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35583:4;35588:1;35583:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;35583:32:0;;;-1:-1:-1;;;;;35583:32:0;;;;;35628:62;35645:4;35660:15;35678:11;35628:8;:62::i;:::-;35899:15;;35729:226;;-1:-1:-1;;;35729:226:0;;-1:-1:-1;;;;;35729:15:0;:66;;;;;:226;;35810:11;;35836:1;;35880:4;;35899:15;;;;;35929;;35729:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35427:536;35372:591;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2136:180::-;2195:6;2248:2;2236:9;2227:7;2223:23;2219:32;2216:52;;;2264:1;2261;2254:12;2216:52;-1:-1:-1;2287:23:1;;2136:180;-1:-1:-1;2136:180:1:o;2321:456::-;2398:6;2406;2414;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2522:9;2509:23;2541:31;2566:5;2541:31;:::i;:::-;2591:5;-1:-1:-1;2648:2:1;2633:18;;2620:32;2661:33;2620:32;2661:33;:::i;:::-;2321:456;;2713:7;;-1:-1:-1;;;2767:2:1;2752:18;;;;2739:32;;2321:456::o;3179:160::-;3244:20;;3300:13;;3293:21;3283:32;;3273:60;;3329:1;3326;3319:12;3344:315;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:180::-;3720:6;3773:2;3761:9;3752:7;3748:23;3744:32;3741:52;;;3789:1;3786;3779:12;3741:52;3812:26;3828:9;3812:26;:::i;3849:388::-;3917:6;3925;3978:2;3966:9;3957:7;3953:23;3949:32;3946:52;;;3994:1;3991;3984:12;3946:52;4033:9;4020:23;4052:31;4077:5;4052:31;:::i;:::-;4102:5;-1:-1:-1;4159:2:1;4144:18;;4131:32;4172:33;4131:32;4172:33;:::i;:::-;4224:7;4214:17;;;3849:388;;;;;:::o;4242:356::-;4444:2;4426:21;;;4463:18;;;4456:30;4522:34;4517:2;4502:18;;4495:62;4589:2;4574:18;;4242:356::o;4603:127::-;4664:10;4659:3;4655:20;4652:1;4645:31;4695:4;4692:1;4685:15;4719:4;4716:1;4709:15;4735:125;4800:9;;;4821:10;;;4818:36;;;4834:18;;:::i;5223:380::-;5302:1;5298:12;;;;5345;;;5366:61;;5420:4;5412:6;5408:17;5398:27;;5366:61;5473:2;5465:6;5462:14;5442:18;5439:38;5436:161;;5519:10;5514:3;5510:20;5507:1;5500:31;5554:4;5551:1;5544:15;5582:4;5579:1;5572:15;5608:168;5681:9;;;5712;;5729:15;;;5723:22;;5709:37;5699:71;;5750:18;;:::i;5781:217::-;5821:1;5847;5837:132;;5891:10;5886:3;5882:20;5879:1;5872:31;5926:4;5923:1;5916:15;5954:4;5951:1;5944:15;5837:132;-1:-1:-1;5983:9:1;;5781:217::o;9649:401::-;9851:2;9833:21;;;9890:2;9870:18;;;9863:30;9929:34;9924:2;9909:18;;9902:62;-1:-1:-1;;;9995:2:1;9980:18;;9973:35;10040:3;10025:19;;9649:401::o;10055:399::-;10257:2;10239:21;;;10296:2;10276:18;;;10269:30;10335:34;10330:2;10315:18;;10308:62;-1:-1:-1;;;10401:2:1;10386:18;;10379:33;10444:3;10429:19;;10055:399::o;11580:128::-;11647:9;;;11668:11;;;11665:37;;;11682:18;;:::i;12252:127::-;12313:10;12308:3;12304:20;12301:1;12294:31;12344:4;12341:1;12334:15;12368:4;12365:1;12358:15;12384:251;12454:6;12507:2;12495:9;12486:7;12482:23;12478:32;12475:52;;;12523:1;12520;12513:12;12475:52;12555:9;12549:16;12574:31;12599:5;12574:31;:::i;12640:980::-;12902:4;12950:3;12939:9;12935:19;12981:6;12970:9;12963:25;13007:2;13045:6;13040:2;13029:9;13025:18;13018:34;13088:3;13083:2;13072:9;13068:18;13061:31;13112:6;13147;13141:13;13178:6;13170;13163:22;13216:3;13205:9;13201:19;13194:26;;13255:2;13247:6;13243:15;13229:29;;13276:1;13286:195;13300:6;13297:1;13294:13;13286:195;;;13365:13;;-1:-1:-1;;;;;13361:39:1;13349:52;;13456:15;;;;13421:12;;;;13397:1;13315:9;13286:195;;;-1:-1:-1;;;;;;;13537:32:1;;;;13532:2;13517:18;;13510:60;-1:-1:-1;;;13601:3:1;13586:19;13579:35;13498:3;12640:980;-1:-1:-1;;;12640:980:1:o

Swarm Source

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