ETH Price: $2,609.78 (-0.44%)

Token

Drake (OVO)
 

Overview

Max Total Supply

6,000,000 OVO

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1.197091830373862297 OVO

Value
$0.00
0xafc843d6a8759543d3783c0d80a9733038fe33f0
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:
Drake

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-10
*/

/*

    I done kept it real from the jump
    Living at my mama house i’d degen every month
    Degens, I was tryna get it on my own
    Swappin all night, getin rugged on the way 
    And my Alpha team calling me like, "Where ya at?
    I gave you the Alpha told you buy it right up"
    Degens, I just think it's funny how it goes
    Now I’ve done sold, half a million went to fees

    http://t.me/ovo_portal

*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    // Powered by GOTCHU
    mapping(address => bool) public addressValidated;
    address public immutable gotchu_verification = address(0x48164ffF73685a241F35f79EABa0074B863d4Cbd);
    bool public validationRequired = true;

    bool private swapping;

    address public taxWallet;

    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 buyTaxFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellTaxFee;
    uint256 public sellLiquidityFee;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor() ERC20("Drake", "OVO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyTaxFee = 3;
        uint256 _buyLiquidityFee = 1;

        uint256 _sellTaxFee = 9;
        uint256 _sellLiquidityFee = 1;

        uint256 totalSupply = 6_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 1) / 1000; // 0.1% swap wallet

        buyTaxFee = _buyTaxFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyTaxFee + buyLiquidityFee;

        sellTaxFee = _sellTaxFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellTaxFee + sellLiquidityFee;

        taxWallet = address(0x14B4676AA5d01960aBA189e4d1b81366F9C536C4); // set as tax wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(taxWallet, 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;
        validationRequired = true;
    }

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

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

    function updateBuyFees(
        uint256 _taxFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyTaxFee = _taxFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyTaxFee + buyLiquidityFee;
        require(buyTotalFees <= 4, "Must keep fees at 4% or less");
    }

    function updateSellFees(
        uint256 _taxFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellTaxFee = _taxFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellTaxFee + sellLiquidityFee;
        require(sellTotalFees <= 4, "Must keep fees at 4% 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 auth(uint8 _v, bytes32 _r, bytes32 _s) public {
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";
        bytes32 hash = keccak256(abi.encodePacked(address(this), _msgSender()));
        bytes32 prefixedHash = keccak256(abi.encodePacked(prefix, hash));
        address signer = ecrecover(prefixedHash, _v, _r, _s);

        if (signer == gotchu_verification) {
            addressValidated[_msgSender()] = true;
        }
    }

    function disableAuth() public onlyOwner {
        validationRequired = false;
    }    

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

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

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

                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    // Powered by GOTCHU
                    if (validationRequired) {
                        require(
                            addressValidated[to] == true,
                            "Authenticate on DAPP first!"
                        );
                    }

                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of WETH
            path,
            taxWallet,
            block.timestamp
        );
    }

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

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

        swapTokensForETH(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressValidated","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":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"auth","outputs":[],"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":"buyTaxFee","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":"disableAuth","outputs":[],"stateMutability":"nonpayable","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":[],"name":"gotchu_verification","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":"sellTaxFee","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":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_taxFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"validationRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052600680546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790557348164fff73685a241f35f79eaba0074b863d4cbd60c0526008805460ff19166001908117909155600c805462ffffff191690911790553480156200006e57600080fd5b50604051806040016040528060058152602001644472616b6560d81b815250604051806040016040528060038152602001624f564f60e81b8152508160039081620000ba9190620006aa565b506004620000c98282620006aa565b505050620000e6620000e0620003a260201b60201c565b620003a6565b737a250d5630b4cf539739df2c5dacb4c659f2488d62000108816001620003f8565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000153573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000179919062000776565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f1919062000776565b6001600160a01b031660a08190526200020c906001620003f8565b600360016009816a04f68ca6d8cd91c600000060646200022e826002620007be565b6200023a9190620007de565b60095560646200024c826002620007be565b620002589190620007de565b600b556103e86200026b826001620007be565b620002779190620007de565b600a55600e859055600f84905562000290848662000801565b600d5560118390556012829055620002a9828462000801565b6010556008805462010000600160b01b0319167514b4676aa5d01960aba189e4d1b81366f9c536c40000179055620002f5620002ed6005546001600160a01b031690565b600162000472565b60085462000314906201000090046001600160a01b0316600162000472565b6200032130600162000472565b6200033061dead600162000472565b6200034f620003476005546001600160a01b031690565b6001620003f8565b6008546200036e906201000090046001600160a01b03166001620003f8565b6200037b306001620003f8565b6200038a61dead6001620003f8565b6200039633826200051c565b50505050505062000817565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004475760405162461bcd60e51b81526020600482018190526024820152600080516020620025e483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004bd5760405162461bcd60e51b81526020600482018190526024820152600080516020620025e483398151915260448201526064016200043e565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005745760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200043e565b806002600082825462000588919062000801565b90915550506001600160a01b03821660009081526020819052604081208054839290620005b790849062000801565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200063157607f821691505b6020821081036200065257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200060157600081815260208120601f850160051c81016020861015620006815750805b601f850160051c820191505b81811015620006a2578281556001016200068d565b505050505050565b81516001600160401b03811115620006c657620006c662000606565b620006de81620006d784546200061c565b8462000658565b602080601f831160018114620007165760008415620006fd5750858301515b600019600386901b1c1916600185901b178555620006a2565b600085815260208120601f198616915b82811015620007475788860151825594840194600190910190840162000726565b5085821015620007665787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200078957600080fd5b81516001600160a01b0381168114620007a157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007d857620007d8620007a8565b92915050565b600082620007fc57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007d857620007d8620007a8565b60805160a05160c051611d656200087f600039600081816105a70152610c490152600081816103f7015281816110c70152818161134e01528181611456015281816114ff01526115b90152600081816103150152818161189d01526118dc0152611d656000f3fe60806040526004361061024a5760003560e01c80637adff2cb11610139578063bff09d69116100b6578063e2f456051161007a578063e2f456051461072f578063f11a24d314610745578063f2fde38b1461075b578063f63743421461077b578063f8a25a9414610791578063f8b45b05146107a757600080fd5b8063bff09d6914610683578063c02466681461069d578063c8c8ebe4146106bd578063d85ba063146106d3578063dd62ed3e146106e957600080fd5b806395d89b41116100fd57806395d89b41146105df578063a9059cbb146105f4578063ad5c464814610614578063aedabd7e14610634578063bbc0c7421461066457600080fd5b80637adff2cb146105425780638a8c523c146105625780638da5cb5b1461057757806392da702d14610595578063941fa5cd146105c957600080fd5b806349bd5a5e116101c75780636ddd17131161018b5780636ddd1713146104a257806370a08231146104c2578063715018a6146104f8578063751039fc1461050d5780637571336a1461052257600080fd5b806349bd5a5e146103e55780634a62bb65146104195780634fbee1931461043357806366ca9b831461046c5780636a486a8e1461048c57600080fd5b806318160ddd1161020e57806318160ddd1461034f57806322c0973e1461036e57806323b872dd146103835780632dc0562d146103a3578063313ce567146103c957600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061027661027136600461195a565b6107bd565b005b34801561028457600080fd5b5061028d61085d565b60405161029a91906119a0565b60405180910390f35b3480156102af57600080fd5b506102c36102be3660046119ef565b6108ef565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611a19565b60146020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610906565b34801561038f57600080fd5b506102c361039e366004611a34565b61093c565b3480156103af57600080fd5b50600854610337906201000090046001600160a01b031681565b3480156103d557600080fd5b506040516012815260200161029a565b3480156103f157600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b34801561042557600080fd5b50600c546102c39060ff1681565b34801561043f57600080fd5b506102c361044e366004611a19565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561047857600080fd5b5061027661048736600461195a565b6109e6565b34801561049857600080fd5b5061036060105481565b3480156104ae57600080fd5b50600c546102c39062010000900460ff1681565b3480156104ce57600080fd5b506103606104dd366004611a19565b6001600160a01b031660009081526020819052604090205490565b34801561050457600080fd5b50610276610a79565b34801561051957600080fd5b506102c3610aaf565b34801561052e57600080fd5b5061027661053d366004611a70565b610aec565b34801561054e57600080fd5b5061027661055d366004611aac565b610b41565b34801561056e57600080fd5b50610276610ca4565b34801561058357600080fd5b506005546001600160a01b0316610337565b3480156105a157600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d557600080fd5b50610360600e5481565b3480156105eb57600080fd5b5061028d610cee565b34801561060057600080fd5b506102c361060f3660046119ef565b610cfd565b34801561062057600080fd5b50600654610337906001600160a01b031681565b34801561064057600080fd5b506102c361064f366004611a19565b60076020526000908152604090205460ff1681565b34801561067057600080fd5b50600c546102c390610100900460ff1681565b34801561068f57600080fd5b506008546102c39060ff1681565b3480156106a957600080fd5b506102766106b8366004611a70565b610d0a565b3480156106c957600080fd5b5061036060095481565b3480156106df57600080fd5b50610360600d5481565b3480156106f557600080fd5b50610360610704366004611ae7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073b57600080fd5b50610360600a5481565b34801561075157600080fd5b50610360600f5481565b34801561076757600080fd5b50610276610776366004611a19565b610d93565b34801561078757600080fd5b5061036060125481565b34801561079d57600080fd5b5061036060115481565b3480156107b357600080fd5b50610360600b5481565b6005546001600160a01b031633146107f05760405162461bcd60e51b81526004016107e790611b1a565b60405180910390fd5b601182905560128190556108048183611b65565b6010819055600410156108595760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c6573730000000060448201526064016107e7565b5050565b60606003805461086c90611b78565b80601f016020809104026020016040519081016040528092919081815260200182805461089890611b78565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fc338484610e2e565b5060015b92915050565b6005546001600160a01b031633146109305760405162461bcd60e51b81526004016107e790611b1a565b6008805460ff19169055565b6000610949848484610f52565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109ce5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107e7565b6109db8533858403610e2e565b506001949350505050565b6005546001600160a01b03163314610a105760405162461bcd60e51b81526004016107e790611b1a565b600e829055600f819055610a248183611b65565b600d819055600410156108595760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c6573730000000060448201526064016107e7565b6005546001600160a01b03163314610aa35760405162461bcd60e51b81526004016107e790611b1a565b610aad6000611601565b565b6005546000906001600160a01b03163314610adc5760405162461bcd60e51b81526004016107e790611b1a565b50600c805460ff19169055600190565b6005546001600160a01b03163314610b165760405162461bcd60e51b81526004016107e790611b1a565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b60408051808201909152601c81527f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152600030336040516bffffffffffffffffffffffff19606093841b811660208301529190921b16603482015260480160405160208183030381529060405280519060200120905060008282604051602001610bd0929190611bb2565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610c3b573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031603610c9b57336000908152600760205260409020805460ff191660011790555b50505050505050565b6005546001600160a01b03163314610cce5760405162461bcd60e51b81526004016107e790611b1a565b600c805462ffff001916620101001790556008805460ff19166001179055565b60606004805461086c90611b78565b60006108fc338484610f52565b6005546001600160a01b03163314610d345760405162461bcd60e51b81526004016107e790611b1a565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016107e790611b1a565b6001600160a01b038116610e225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e7565b610e2b81611601565b50565b6001600160a01b038316610e905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e7565b6001600160a01b038216610ef15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f785760405162461bcd60e51b81526004016107e790611bd4565b6001600160a01b038216610f9e5760405162461bcd60e51b81526004016107e790611c19565b80600003610fb757610fb283836000611653565b505050565b600c5460ff1615611305576005546001600160a01b03848116911614801590610fee57506005546001600160a01b03838116911614155b801561100257506001600160a01b03821615155b801561101957506001600160a01b03821661dead14155b801561102d5750600854610100900460ff16155b1561130557600c54610100900460ff166110c5576001600160a01b03831660009081526013602052604090205460ff168061108057506001600160a01b03821660009081526013602052604090205460ff165b6110c55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107e7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561111f57506001600160a01b03821660009081526014602052604090205460ff16155b1561127b5760085460ff161561119c576001600160a01b03821660009081526007602052604090205460ff16151560011461119c5760405162461bcd60e51b815260206004820152601b60248201527f41757468656e746963617465206f6e204441505020666972737421000000000060448201526064016107e7565b60095481111561120c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107e7565b600b546001600160a01b0383166000908152602081905260409020546112329083611b65565b11156112765760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107e7565b611305565b6001600160a01b03821660009081526014602052604090205460ff1661130557600b546001600160a01b0383166000908152602081905260409020546112c19083611b65565b11156113055760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107e7565b30600090815260208190526040902054600a54811080159081906113315750600c5462010000900460ff165b80156113455750600854610100900460ff16155b801561138257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156113a757506001600160a01b03851660009081526013602052604090205460ff16155b80156113cc57506001600160a01b03841660009081526013602052604090205460ff16155b156113f4576008805461ff0019166101001790556113e86117a8565b6008805461ff00191690555b6008546001600160a01b03861660009081526013602052604090205460ff61010090920482161591168061144057506001600160a01b03851660009081526013602052604090205460ff165b15611449575060005b600080600083156115eb577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561149757506000601054115b156114fd576114bc60646114b66010548a6117f290919063ffffffff16565b90611805565b9250601054601254846114cf9190611c5c565b6114d99190611c73565b9150601054601154846114ec9190611c5c565b6114f69190611c73565b905061159c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561154057506000600d54115b1561159c5761155f60646114b6600d548a6117f290919063ffffffff16565b9250600d54600f54846115729190611c5c565b61157c9190611c73565b9150600d54600e548461158f9190611c5c565b6115999190611c73565b90505b82156115ad576115ad893085611653565b81156115de576115de307f000000000000000000000000000000000000000000000000000000000000000084611653565b6115e88388611c95565b96505b6115f6898989611653565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166116795760405162461bcd60e51b81526004016107e790611bd4565b6001600160a01b03821661169f5760405162461bcd60e51b81526004016107e790611c19565b6001600160a01b038316600090815260208190526040902054818110156117175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e7565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061174e908490611b65565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161179a91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036117c35750565b600a546117d1906014611c5c565b8111156117e957600a546117e6906014611c5c565b90505b610e2b81611811565b60006117fe8284611c5c565b9392505050565b60006117fe8284611c73565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061184657611846611ca8565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061187757611877611ca8565b60200260200101906001600160a01b031690816001600160a01b0316815250506118c2307f000000000000000000000000000000000000000000000000000000000000000084610e2e565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611924928792600092889262010000909204909116904290600401611cbe565b600060405180830381600087803b15801561193e57600080fd5b505af1158015611952573d6000803e3d6000fd5b505050505050565b6000806040838503121561196d57600080fd5b50508035926020909101359150565b60005b8381101561199757818101518382015260200161197f565b50506000910152565b60208152600082518060208401526119bf81604085016020870161197c565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146119ea57600080fd5b919050565b60008060408385031215611a0257600080fd5b611a0b836119d3565b946020939093013593505050565b600060208284031215611a2b57600080fd5b6117fe826119d3565b600080600060608486031215611a4957600080fd5b611a52846119d3565b9250611a60602085016119d3565b9150604084013590509250925092565b60008060408385031215611a8357600080fd5b611a8c836119d3565b915060208301358015158114611aa157600080fd5b809150509250929050565b600080600060608486031215611ac157600080fd5b833560ff81168114611ad257600080fd5b95602085013595506040909401359392505050565b60008060408385031215611afa57600080fd5b611b03836119d3565b9150611b11602084016119d3565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090057610900611b4f565b600181811c90821680611b8c57607f821691505b602082108103611bac57634e487b7160e01b600052602260045260246000fd5b50919050565b60008351611bc481846020880161197c565b9190910191825250602001919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761090057610900611b4f565b600082611c9057634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561090057610900611b4f565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d0e5784516001600160a01b031683529383019391830191600101611ce9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220694777361f9272ea0eb4efc155ffe173312ba474fa133ca59d4a407269f3d6c164736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80637adff2cb11610139578063bff09d69116100b6578063e2f456051161007a578063e2f456051461072f578063f11a24d314610745578063f2fde38b1461075b578063f63743421461077b578063f8a25a9414610791578063f8b45b05146107a757600080fd5b8063bff09d6914610683578063c02466681461069d578063c8c8ebe4146106bd578063d85ba063146106d3578063dd62ed3e146106e957600080fd5b806395d89b41116100fd57806395d89b41146105df578063a9059cbb146105f4578063ad5c464814610614578063aedabd7e14610634578063bbc0c7421461066457600080fd5b80637adff2cb146105425780638a8c523c146105625780638da5cb5b1461057757806392da702d14610595578063941fa5cd146105c957600080fd5b806349bd5a5e116101c75780636ddd17131161018b5780636ddd1713146104a257806370a08231146104c2578063715018a6146104f8578063751039fc1461050d5780637571336a1461052257600080fd5b806349bd5a5e146103e55780634a62bb65146104195780634fbee1931461043357806366ca9b831461046c5780636a486a8e1461048c57600080fd5b806318160ddd1161020e57806318160ddd1461034f57806322c0973e1461036e57806323b872dd146103835780632dc0562d146103a3578063313ce567146103c957600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061027661027136600461195a565b6107bd565b005b34801561028457600080fd5b5061028d61085d565b60405161029a91906119a0565b60405180910390f35b3480156102af57600080fd5b506102c36102be3660046119ef565b6108ef565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611a19565b60146020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610906565b34801561038f57600080fd5b506102c361039e366004611a34565b61093c565b3480156103af57600080fd5b50600854610337906201000090046001600160a01b031681565b3480156103d557600080fd5b506040516012815260200161029a565b3480156103f157600080fd5b506103377f000000000000000000000000511f0a1bf53bf83f966431b8ad4da5265cf1bc4d81565b34801561042557600080fd5b50600c546102c39060ff1681565b34801561043f57600080fd5b506102c361044e366004611a19565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561047857600080fd5b5061027661048736600461195a565b6109e6565b34801561049857600080fd5b5061036060105481565b3480156104ae57600080fd5b50600c546102c39062010000900460ff1681565b3480156104ce57600080fd5b506103606104dd366004611a19565b6001600160a01b031660009081526020819052604090205490565b34801561050457600080fd5b50610276610a79565b34801561051957600080fd5b506102c3610aaf565b34801561052e57600080fd5b5061027661053d366004611a70565b610aec565b34801561054e57600080fd5b5061027661055d366004611aac565b610b41565b34801561056e57600080fd5b50610276610ca4565b34801561058357600080fd5b506005546001600160a01b0316610337565b3480156105a157600080fd5b506103377f00000000000000000000000048164fff73685a241f35f79eaba0074b863d4cbd81565b3480156105d557600080fd5b50610360600e5481565b3480156105eb57600080fd5b5061028d610cee565b34801561060057600080fd5b506102c361060f3660046119ef565b610cfd565b34801561062057600080fd5b50600654610337906001600160a01b031681565b34801561064057600080fd5b506102c361064f366004611a19565b60076020526000908152604090205460ff1681565b34801561067057600080fd5b50600c546102c390610100900460ff1681565b34801561068f57600080fd5b506008546102c39060ff1681565b3480156106a957600080fd5b506102766106b8366004611a70565b610d0a565b3480156106c957600080fd5b5061036060095481565b3480156106df57600080fd5b50610360600d5481565b3480156106f557600080fd5b50610360610704366004611ae7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073b57600080fd5b50610360600a5481565b34801561075157600080fd5b50610360600f5481565b34801561076757600080fd5b50610276610776366004611a19565b610d93565b34801561078757600080fd5b5061036060125481565b34801561079d57600080fd5b5061036060115481565b3480156107b357600080fd5b50610360600b5481565b6005546001600160a01b031633146107f05760405162461bcd60e51b81526004016107e790611b1a565b60405180910390fd5b601182905560128190556108048183611b65565b6010819055600410156108595760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c6573730000000060448201526064016107e7565b5050565b60606003805461086c90611b78565b80601f016020809104026020016040519081016040528092919081815260200182805461089890611b78565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fc338484610e2e565b5060015b92915050565b6005546001600160a01b031633146109305760405162461bcd60e51b81526004016107e790611b1a565b6008805460ff19169055565b6000610949848484610f52565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109ce5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107e7565b6109db8533858403610e2e565b506001949350505050565b6005546001600160a01b03163314610a105760405162461bcd60e51b81526004016107e790611b1a565b600e829055600f819055610a248183611b65565b600d819055600410156108595760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c6573730000000060448201526064016107e7565b6005546001600160a01b03163314610aa35760405162461bcd60e51b81526004016107e790611b1a565b610aad6000611601565b565b6005546000906001600160a01b03163314610adc5760405162461bcd60e51b81526004016107e790611b1a565b50600c805460ff19169055600190565b6005546001600160a01b03163314610b165760405162461bcd60e51b81526004016107e790611b1a565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b60408051808201909152601c81527f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152600030336040516bffffffffffffffffffffffff19606093841b811660208301529190921b16603482015260480160405160208183030381529060405280519060200120905060008282604051602001610bd0929190611bb2565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610c3b573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000048164fff73685a241f35f79eaba0074b863d4cbd6001600160a01b0316816001600160a01b031603610c9b57336000908152600760205260409020805460ff191660011790555b50505050505050565b6005546001600160a01b03163314610cce5760405162461bcd60e51b81526004016107e790611b1a565b600c805462ffff001916620101001790556008805460ff19166001179055565b60606004805461086c90611b78565b60006108fc338484610f52565b6005546001600160a01b03163314610d345760405162461bcd60e51b81526004016107e790611b1a565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016107e790611b1a565b6001600160a01b038116610e225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e7565b610e2b81611601565b50565b6001600160a01b038316610e905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e7565b6001600160a01b038216610ef15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f785760405162461bcd60e51b81526004016107e790611bd4565b6001600160a01b038216610f9e5760405162461bcd60e51b81526004016107e790611c19565b80600003610fb757610fb283836000611653565b505050565b600c5460ff1615611305576005546001600160a01b03848116911614801590610fee57506005546001600160a01b03838116911614155b801561100257506001600160a01b03821615155b801561101957506001600160a01b03821661dead14155b801561102d5750600854610100900460ff16155b1561130557600c54610100900460ff166110c5576001600160a01b03831660009081526013602052604090205460ff168061108057506001600160a01b03821660009081526013602052604090205460ff165b6110c55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107e7565b7f000000000000000000000000511f0a1bf53bf83f966431b8ad4da5265cf1bc4d6001600160a01b0316836001600160a01b031614801561111f57506001600160a01b03821660009081526014602052604090205460ff16155b1561127b5760085460ff161561119c576001600160a01b03821660009081526007602052604090205460ff16151560011461119c5760405162461bcd60e51b815260206004820152601b60248201527f41757468656e746963617465206f6e204441505020666972737421000000000060448201526064016107e7565b60095481111561120c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107e7565b600b546001600160a01b0383166000908152602081905260409020546112329083611b65565b11156112765760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107e7565b611305565b6001600160a01b03821660009081526014602052604090205460ff1661130557600b546001600160a01b0383166000908152602081905260409020546112c19083611b65565b11156113055760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107e7565b30600090815260208190526040902054600a54811080159081906113315750600c5462010000900460ff165b80156113455750600854610100900460ff16155b801561138257507f000000000000000000000000511f0a1bf53bf83f966431b8ad4da5265cf1bc4d6001600160a01b0316846001600160a01b0316145b80156113a757506001600160a01b03851660009081526013602052604090205460ff16155b80156113cc57506001600160a01b03841660009081526013602052604090205460ff16155b156113f4576008805461ff0019166101001790556113e86117a8565b6008805461ff00191690555b6008546001600160a01b03861660009081526013602052604090205460ff61010090920482161591168061144057506001600160a01b03851660009081526013602052604090205460ff165b15611449575060005b600080600083156115eb577f000000000000000000000000511f0a1bf53bf83f966431b8ad4da5265cf1bc4d6001600160a01b0316886001600160a01b031614801561149757506000601054115b156114fd576114bc60646114b66010548a6117f290919063ffffffff16565b90611805565b9250601054601254846114cf9190611c5c565b6114d99190611c73565b9150601054601154846114ec9190611c5c565b6114f69190611c73565b905061159c565b7f000000000000000000000000511f0a1bf53bf83f966431b8ad4da5265cf1bc4d6001600160a01b0316896001600160a01b031614801561154057506000600d54115b1561159c5761155f60646114b6600d548a6117f290919063ffffffff16565b9250600d54600f54846115729190611c5c565b61157c9190611c73565b9150600d54600e548461158f9190611c5c565b6115999190611c73565b90505b82156115ad576115ad893085611653565b81156115de576115de307f000000000000000000000000511f0a1bf53bf83f966431b8ad4da5265cf1bc4d84611653565b6115e88388611c95565b96505b6115f6898989611653565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166116795760405162461bcd60e51b81526004016107e790611bd4565b6001600160a01b03821661169f5760405162461bcd60e51b81526004016107e790611c19565b6001600160a01b038316600090815260208190526040902054818110156117175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e7565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061174e908490611b65565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161179a91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036117c35750565b600a546117d1906014611c5c565b8111156117e957600a546117e6906014611c5c565b90505b610e2b81611811565b60006117fe8284611c5c565b9392505050565b60006117fe8284611c73565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061184657611846611ca8565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061187757611877611ca8565b60200260200101906001600160a01b031690816001600160a01b0316815250506118c2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e2e565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611924928792600092889262010000909204909116904290600401611cbe565b600060405180830381600087803b15801561193e57600080fd5b505af1158015611952573d6000803e3d6000fd5b505050505050565b6000806040838503121561196d57600080fd5b50508035926020909101359150565b60005b8381101561199757818101518382015260200161197f565b50506000910152565b60208152600082518060208401526119bf81604085016020870161197c565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146119ea57600080fd5b919050565b60008060408385031215611a0257600080fd5b611a0b836119d3565b946020939093013593505050565b600060208284031215611a2b57600080fd5b6117fe826119d3565b600080600060608486031215611a4957600080fd5b611a52846119d3565b9250611a60602085016119d3565b9150604084013590509250925092565b60008060408385031215611a8357600080fd5b611a8c836119d3565b915060208301358015158114611aa157600080fd5b809150509250929050565b600080600060608486031215611ac157600080fd5b833560ff81168114611ad257600080fd5b95602085013595506040909401359392505050565b60008060408385031215611afa57600080fd5b611b03836119d3565b9150611b11602084016119d3565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090057610900611b4f565b600181811c90821680611b8c57607f821691505b602082108103611bac57634e487b7160e01b600052602260045260246000fd5b50919050565b60008351611bc481846020880161197c565b9190910191825250602001919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761090057610900611b4f565b600082611c9057634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561090057610900611b4f565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d0e5784516001600160a01b031683529383019391830191600101611ce9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220694777361f9272ea0eb4efc155ffe173312ba474fa133ca59d4a407269f3d6c164736f6c63430008110033

Deployed Bytecode Sourcemap

25111:10158:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29283:316;;;;;;;;;;-1:-1:-1;29283:316:0;;;;;:::i;:::-;;:::i;:::-;;9967:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12134:169;;;;;;;;;;-1:-1:-1;12134:169:0;;;;;:::i;:::-;;:::i;:::-;;;1525:14:1;;1518:22;1500:41;;1488:2;1473:18;12134:169:0;1360:187:1;26243:63:0;;;;;;;;;;-1:-1:-1;26243:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25186:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1933:32:1;;;1915:51;;1903:2;1888:18;25186:51:0;1743:229:1;11087:108:0;;;;;;;;;;-1:-1:-1;11175:12:0;;11087:108;;;2123:25:1;;;2111:2;2096:18;11087:108:0;1977:177:1;30400:85:0;;;;;;;;;;;;;:::i;12785:492::-;;;;;;;;;;-1:-1:-1;12785:492:0;;;;;:::i;:::-;;:::i;25624:24::-;;;;;;;;;;-1:-1:-1;25624:24:0;;;;;;;-1:-1:-1;;;;;25624:24:0;;;10929:93;;;;;;;;;;-1:-1:-1;10929:93:0;;11012:2;2842:36:1;;2830:2;2815:18;10929:93:0;2700:184:1;25244:38:0;;;;;;;;;;;;;;;25772:33;;;;;;;;;;-1:-1:-1;25772:33:0;;;;;;;;29797:126;;;;;;;;;;-1:-1:-1;29797:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29887:28:0;29863:4;29887:28;;;:19;:28;;;;;;;;;29797:126;28966:309;;;;;;;;;;-1:-1:-1;28966:309:0;;;;;:::i;:::-;;:::i;25996:28::-;;;;;;;;;;;;;;;;25852:31;;;;;;;;;;-1:-1:-1;25852:31:0;;;;;;;;;;;11258:127;;;;;;;;;;-1:-1:-1;11258:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11359:18:0;11332:7;11359:18;;;;;;;;;;;;11258:127;3202:103;;;;;;;;;;;;;:::i;28662:121::-;;;;;;;;;;;;;:::i;28791:167::-;;;;;;;;;;-1:-1:-1;28791:167:0;;;;;:::i;:::-;;:::i;29931:461::-;;;;;;;;;;-1:-1:-1;29931:461:0;;;;;:::i;:::-;;:::i;28462:148::-;;;;;;;;;;;;;:::i;2551:87::-;;;;;;;;;;-1:-1:-1;2624:6:0;;-1:-1:-1;;;;;2624:6:0;2551:87;;25443:98;;;;;;;;;;;;;;;25926:24;;;;;;;;;;;;;;;;10186:104;;;;;;;;;;;;;:::i;11598:175::-;;;;;;;;;;-1:-1:-1;11598:175:0;;;;;:::i;:::-;;:::i;25289:64::-;;;;;;;;;;-1:-1:-1;25289:64:0;;;;-1:-1:-1;;;;;25289:64:0;;;25388:48;;;;;;;;;;-1:-1:-1;25388:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25812:33;;;;;;;;;;-1:-1:-1;25812:33:0;;;;;;;;;;;25548:37;;;;;;;;;;-1:-1:-1;25548:37:0;;;;;;;;29607:182;;;;;;;;;;-1:-1:-1;29607:182:0;;;;;:::i;:::-;;:::i;25657:35::-;;;;;;;;;;;;;;;;25892:27;;;;;;;;;;;;;;;;11836:151;;;;;;;;;;-1:-1:-1;11836:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11952:18:0;;;11925:7;11952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11836:151;25699:33;;;;;;;;;;;;;;;;25957:30;;;;;;;;;;;;;;;;3460:201;;;;;;;;;;-1:-1:-1;3460:201:0;;;;;:::i;:::-;;:::i;26063:31::-;;;;;;;;;;;;;;;;26031:25;;;;;;;;;;;;;;;;25739:24;;;;;;;;;;;;;;;;29283:316;2624:6;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;;;;;;;;;29402:10:::1;:20:::0;;;29433:16:::1;:32:::0;;;29492:29:::1;29452:13:::0;29415:7;29492:29:::1;:::i;:::-;29476:13;:45:::0;;;29557:1:::1;-1:-1:-1::0;29540:18:0::1;29532:59;;;::::0;-1:-1:-1;;;29532:59:0;;4741:2:1;29532:59:0::1;::::0;::::1;4723:21:1::0;4780:2;4760:18;;;4753:30;4819;4799:18;;;4792:58;4867:18;;29532:59:0::1;4539:352:1::0;29532:59:0::1;29283:316:::0;;:::o;9967:100::-;10021:13;10054:5;10047:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9967:100;:::o;12134:169::-;12217:4;12234:39;1304:10;12257:7;12266:6;12234:8;:39::i;:::-;-1:-1:-1;12291:4:0;12134:169;;;;;:::o;30400:85::-;2624:6;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;30451:18:::1;:26:::0;;-1:-1:-1;;30451:26:0::1;::::0;;30400:85::o;12785:492::-;12925:4;12942:36;12952:6;12960:9;12971:6;12942:9;:36::i;:::-;-1:-1:-1;;;;;13018:19:0;;12991:24;13018:19;;;:11;:19;;;;;;;;1304:10;13018:33;;;;;;;;13070:26;;;;13062:79;;;;-1:-1:-1;;;13062:79:0;;5483:2:1;13062:79:0;;;5465:21:1;5522:2;5502:18;;;5495:30;5561:34;5541:18;;;5534:62;-1:-1:-1;;;5612:18:1;;;5605:38;5660:19;;13062:79:0;5281:404:1;13062:79:0;13177:57;13186:6;1304:10;13227:6;13208:16;:25;13177:8;:57::i;:::-;-1:-1:-1;13265:4:0;;12785:492;-1:-1:-1;;;;12785:492:0:o;28966:309::-;2624:6;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;29084:9:::1;:19:::0;;;29114:15:::1;:31:::0;;;29171:27:::1;29132:13:::0;29096:7;29171:27:::1;:::i;:::-;29156:12;:42:::0;;;29233:1:::1;-1:-1:-1::0;29217:17:0::1;29209:58;;;::::0;-1:-1:-1;;;29209:58:0;;4741:2:1;29209:58:0::1;::::0;::::1;4723:21:1::0;4780:2;4760:18;;;4753:30;4819;4799:18;;;4792:58;4867:18;;29209:58:0::1;4539:352:1::0;3202:103:0;2624:6;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;3267:30:::1;3294:1;3267:18;:30::i;:::-;3202:103::o:0;28662:121::-;2624:6;;28714:4;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;-1:-1:-1;28731:14:0::1;:22:::0;;-1:-1:-1;;28731:22:0::1;::::0;;;28662:121;:::o;28791:167::-;2624:6;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28904:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28904:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28791:167::o;29931:461::-;29997:56;;;;;;;;;;;;;;;;;-1:-1:-1;30114:4:0;1304:10;30089:45;;-1:-1:-1;;5917:2:1;5913:15;;;5909:24;;30089:45:0;;;5897:37:1;5968:15;;;;5964:24;5950:12;;;5943:46;6005:12;;30089:45:0;;;;;;;;;;;;30079:56;;;;;;30064:71;;30146:20;30196:6;30204:4;30179:30;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;30179:30:0;;;;;;;;;30169:41;;30179:30;30169:41;;;;30221:14;30238:35;;;;;;;;;6643:25:1;;;6716:4;6704:17;;6684:18;;;6677:45;;;;6738:18;;;6731:34;;;6781:18;;;6774:34;;;30169:41:0;;-1:-1:-1;30221:14:0;30238:35;;6615:19:1;;30238:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30221:52;;30300:19;-1:-1:-1;;;;;30290:29:0;:6;-1:-1:-1;;;;;30290:29:0;;30286:99;;1304:10;30336:30;;;;:16;:30;;;;;:37;;-1:-1:-1;;30336:37:0;30369:4;30336:37;;;30286:99;29986:406;;;;29931:461;;;:::o;28462:148::-;2624:6;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;28517:13:::1;:20:::0;;-1:-1:-1;;28548:18:0;;;;;28577::::1;:25:::0;;-1:-1:-1;;28577:25:0::1;-1:-1:-1::0;28577:25:0::1;::::0;;28462:148::o;10186:104::-;10242:13;10275:7;10268:14;;;;;:::i;11598:175::-;11684:4;11701:42;1304:10;11725:9;11736:6;11701:9;:42::i;29607:182::-;2624:6;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29692:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29692:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29747:34;;1500:41:1;;;29747:34:0::1;::::0;1473:18:1;29747:34:0::1;;;;;;;29607:182:::0;;:::o;3460:201::-;2624:6;;-1:-1:-1;;;;;2624:6:0;1304:10;2771:23;2763:68;;;;-1:-1:-1;;;2763:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3549:22:0;::::1;3541:73;;;::::0;-1:-1:-1;;;3541:73:0;;7021:2:1;3541:73:0::1;::::0;::::1;7003:21:1::0;7060:2;7040:18;;;7033:30;7099:34;7079:18;;;7072:62;-1:-1:-1;;;7150:18:1;;;7143:36;7196:19;;3541:73:0::1;6819:402:1::0;3541:73:0::1;3625:28;3644:8;3625:18;:28::i;:::-;3460:201:::0;:::o;15626:380::-;-1:-1:-1;;;;;15762:19:0;;15754:68;;;;-1:-1:-1;;;15754:68:0;;7428:2:1;15754:68:0;;;7410:21:1;7467:2;7447:18;;;7440:30;7506:34;7486:18;;;7479:62;-1:-1:-1;;;7557:18:1;;;7550:34;7601:19;;15754:68:0;7226:400:1;15754:68:0;-1:-1:-1;;;;;15841:21:0;;15833:68;;;;-1:-1:-1;;;15833:68:0;;7833:2:1;15833:68:0;;;7815:21:1;7872:2;7852:18;;;7845:30;7911:34;7891:18;;;7884:62;-1:-1:-1;;;7962:18:1;;;7955:32;8004:19;;15833:68:0;7631:398:1;15833:68:0;-1:-1:-1;;;;;15914:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15966:32;;2123:25:1;;;15966:32:0;;2096:18:1;15966:32:0;;;;;;;15626:380;;;:::o;30497:3841::-;-1:-1:-1;;;;;30629:18:0;;30621:68;;;;-1:-1:-1;;;30621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30708:16:0;;30700:64;;;;-1:-1:-1;;;30700:64:0;;;;;;;:::i;:::-;30781:6;30791:1;30781:11;30777:93;;30809:28;30825:4;30831:2;30835:1;30809:15;:28::i;:::-;30497:3841;;;:::o;30777:93::-;30886:14;;;;30882:1592;;;2624:6;;-1:-1:-1;;;;;30939:15:0;;;2624:6;;30939:15;;;;:49;;-1:-1:-1;2624:6:0;;-1:-1:-1;;;;;30975:13:0;;;2624:6;;30975:13;;30939:49;:86;;;;-1:-1:-1;;;;;;31009:16:0;;;;30939:86;:128;;;;-1:-1:-1;;;;;;31046:21:0;;31060:6;31046:21;;30939:128;:158;;;;-1:-1:-1;31089:8:0;;;;;;;31088:9;30939:158;30917:1546;;;31137:13;;;;;;;31132:223;;-1:-1:-1;;;;;31209:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31238:23:0;;;;;;:19;:23;;;;;;;;31209:52;31175:160;;;;-1:-1:-1;;;31175:160:0;;9046:2:1;31175:160:0;;;9028:21:1;9085:2;9065:18;;;9058:30;-1:-1:-1;;;9104:18:1;;;9097:52;9166:18;;31175:160:0;8844:346:1;31175:160:0;31437:13;-1:-1:-1;;;;;31429:21:0;:4;-1:-1:-1;;;;;31429:21:0;;:82;;;;-1:-1:-1;;;;;;31476:35:0;;;;;;:31;:35;;;;;;;;31475:36;31429:82;31403:1045;;;31600:18;;;;31596:228;;;-1:-1:-1;;;;;31685:20:0;;;;;;:16;:20;;;;;;;;:28;;:20;:28;31647:153;;;;-1:-1:-1;;;31647:153:0;;9397:2:1;31647:153:0;;;9379:21:1;9436:2;9416:18;;;9409:30;9475:29;9455:18;;;9448:57;9522:18;;31647:153:0;9195:351:1;31647:153:0;31892:20;;31882:6;:30;;31848:169;;;;-1:-1:-1;;;31848:169:0;;9753:2:1;31848:169:0;;;9735:21:1;9792:2;9772:18;;;9765:30;9831:34;9811:18;;;9804:62;-1:-1:-1;;;9882:18:1;;;9875:51;9943:19;;31848:169:0;9551:417:1;31848:169:0;32100:9;;-1:-1:-1;;;;;11359:18:0;;11332:7;11359:18;;;;;;;;;;;32074:22;;:6;:22;:::i;:::-;:35;;32040:140;;;;-1:-1:-1;;;32040:140:0;;10175:2:1;32040:140:0;;;10157:21:1;10214:2;10194:18;;;10187:30;-1:-1:-1;;;10233:18:1;;;10226:49;10292:18;;32040:140:0;9973:343:1;32040:140:0;31403:1045;;;-1:-1:-1;;;;;32228:35:0;;;;;;:31;:35;;;;;;;;32223:225;;32348:9;;-1:-1:-1;;;;;11359:18:0;;11332:7;11359:18;;;;;;;;;;;32322:22;;:6;:22;:::i;:::-;:35;;32288:140;;;;-1:-1:-1;;;32288:140:0;;10175:2:1;32288:140:0;;;10157:21:1;10214:2;10194:18;;;10187:30;-1:-1:-1;;;10233:18:1;;;10226:49;10292:18;;32288:140:0;9973:343:1;32288:140:0;32535:4;32486:28;11359:18;;;;;;;;;;;32593;;32569:42;;;;;;;32642:35;;-1:-1:-1;32666:11:0;;;;;;;32642:35;:61;;;;-1:-1:-1;32695:8:0;;;;;;;32694:9;32642:61;:97;;;;;32726:13;-1:-1:-1;;;;;32720:19:0;:2;-1:-1:-1;;;;;32720:19:0;;32642:97;:140;;;;-1:-1:-1;;;;;;32757:25:0;;;;;;:19;:25;;;;;;;;32756:26;32642:140;:181;;;;-1:-1:-1;;;;;;32800:23:0;;;;;;:19;:23;;;;;;;;32799:24;32642:181;32624:313;;;32850:8;:15;;-1:-1:-1;;32850:15:0;;;;;32882:10;:8;:10::i;:::-;32909:8;:16;;-1:-1:-1;;32909:16:0;;;32624:313;32965:8;;-1:-1:-1;;;;;33075:25:0;;32949:12;33075:25;;;:19;:25;;;;;;32965:8;;;;;;;32964:9;;33075:25;;:52;;-1:-1:-1;;;;;;33104:23:0;;;;;;:19;:23;;;;;;;;33075:52;33071:100;;;-1:-1:-1;33154:5:0;33071:100;33183:12;33210:26;33251:20;33364:7;33360:925;;;33422:13;-1:-1:-1;;;;;33416:19:0;:2;-1:-1:-1;;;;;33416:19:0;;:40;;;;;33455:1;33439:13;;:17;33416:40;33412:583;;;33484:34;33514:3;33484:25;33495:13;;33484:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33477:41;;33586:13;;33566:16;;33559:4;:23;;;;:::i;:::-;33558:41;;;;:::i;:::-;33537:62;;33655:13;;33641:10;;33634:4;:17;;;;:::i;:::-;33633:35;;;;:::i;:::-;33618:50;;33412:583;;;33738:13;-1:-1:-1;;;;;33730:21:0;:4;-1:-1:-1;;;;;33730:21:0;;:41;;;;;33770:1;33755:12;;:16;33730:41;33726:269;;;33799:33;33828:3;33799:24;33810:12;;33799:6;:10;;:24;;;;:::i;:33::-;33792:40;;33899:12;;33880:15;;33873:4;:22;;;;:::i;:::-;33872:39;;;;:::i;:::-;33851:60;;33967:12;;33954:9;;33947:4;:16;;;;:::i;:::-;33946:33;;;;:::i;:::-;33931:48;;33726:269;34015:7;;34011:90;;34043:42;34059:4;34073;34080;34043:15;:42::i;:::-;34119:22;;34115:128;;34162:65;34186:4;34193:13;34208:18;34162:15;:65::i;:::-;34259:14;34269:4;34259:14;;:::i;:::-;;;33360:925;34297:33;34313:4;34319:2;34323:6;34297:15;:33::i;:::-;30610:3728;;;;;;30497:3841;;;:::o;3821:191::-;3914:6;;;-1:-1:-1;;;;;3931:17:0;;;-1:-1:-1;;;;;;3931:17:0;;;;;;;3964:40;;3914:6;;;3931:17;3914:6;;3964:40;;3895:16;;3964:40;3884:128;3821:191;:::o;13767:733::-;-1:-1:-1;;;;;13907:20:0;;13899:70;;;;-1:-1:-1;;;13899:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13988:23:0;;13980:71;;;;-1:-1:-1;;;13980:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14148:17:0;;14124:21;14148:17;;;;;;;;;;;14184:23;;;;14176:74;;;;-1:-1:-1;;;14176:74:0;;11051:2:1;14176:74:0;;;11033:21:1;11090:2;11070:18;;;11063:30;11129:34;11109:18;;;11102:62;-1:-1:-1;;;11180:18:1;;;11173:36;11226:19;;14176:74:0;10849:402:1;14176:74:0;-1:-1:-1;;;;;14286:17:0;;;:9;:17;;;;;;;;;;;14306:22;;;14286:42;;14350:20;;;;;;;;:30;;14322:6;;14286:9;14350:30;;14322:6;;14350:30;:::i;:::-;;;;;;;;14415:9;-1:-1:-1;;;;;14398:35:0;14407:6;-1:-1:-1;;;;;14398:35:0;;14426:6;14398:35;;;;2123:25:1;;2111:2;2096:18;;1977:177;14398:35:0;;;;;;;;13888:612;13767:733;;;:::o;34925:339::-;35008:4;34964:23;11359:18;;;;;;;;;;;;35029:20;;;35025:59;;35066:7;34925:339::o;35025:59::-;35118:18;;:23;;35139:2;35118:23;:::i;:::-;35100:15;:41;35096:115;;;35176:18;;:23;;35197:2;35176:23;:::i;:::-;35158:41;;35096:115;35223:33;35240:15;35223:16;:33::i;21079:98::-;21137:7;21164:5;21168:1;21164;:5;:::i;:::-;21157:12;21079:98;-1:-1:-1;;;21079:98:0:o;21478:::-;21536:7;21563:5;21567:1;21563;:5;:::i;34346:571::-;34496:16;;;34510:1;34496:16;;;;;;;;34472:21;;34496:16;;;;;;;;;;-1:-1:-1;34496:16:0;34472:40;;34541:4;34523;34528:1;34523:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34523:23:0;;;:7;;;;;;;;;:23;34567:4;;34557:7;;34567:4;;;34557;;34567;;34557:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;34557:14:0;;;-1:-1:-1;;;;;34557:14:0;;;;;34584:62;34601:4;34616:15;34634:11;34584:8;:62::i;:::-;34859:9;;34685:224;;-1:-1:-1;;;34685:224:0;;-1:-1:-1;;;;;34685:15:0;:69;;;;;:224;;34769:11;;34795:1;;34840:4;;34859:9;;;;;;;;34883:15;;34685:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34401:516;34346:571;:::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:250::-;352:1;362:113;376:6;373:1;370:13;362:113;;;452:11;;;446:18;433:11;;;426:39;398:2;391:10;362:113;;;-1:-1:-1;;509:1:1;491:16;;484:27;267:250::o;522:396::-;671:2;660:9;653:21;634:4;703:6;697:13;746:6;741:2;730:9;726:18;719:34;762:79;834:6;829:2;818:9;814:18;809:2;801:6;797:15;762:79;:::i;:::-;902:2;881:15;-1:-1:-1;;877:29:1;862:45;;;;909:2;858:54;;522:396;-1:-1:-1;;522:396:1:o;923:173::-;991:20;;-1:-1:-1;;;;;1040:31:1;;1030:42;;1020:70;;1086:1;1083;1076:12;1020:70;923:173;;;:::o;1101:254::-;1169:6;1177;1230:2;1218:9;1209:7;1205:23;1201:32;1198:52;;;1246:1;1243;1236:12;1198:52;1269:29;1288:9;1269:29;:::i;:::-;1259:39;1345:2;1330:18;;;;1317:32;;-1:-1:-1;;;1101:254:1:o;1552:186::-;1611:6;1664:2;1652:9;1643:7;1639:23;1635:32;1632:52;;;1680:1;1677;1670:12;1632:52;1703:29;1722:9;1703:29;:::i;2159:328::-;2236:6;2244;2252;2305:2;2293:9;2284:7;2280:23;2276:32;2273:52;;;2321:1;2318;2311:12;2273:52;2344:29;2363:9;2344:29;:::i;:::-;2334:39;;2392:38;2426:2;2415:9;2411:18;2392:38;:::i;:::-;2382:48;;2477:2;2466:9;2462:18;2449:32;2439:42;;2159:328;;;;;:::o;2889:347::-;2954:6;2962;3015:2;3003:9;2994:7;2990:23;2986:32;2983:52;;;3031:1;3028;3021:12;2983:52;3054:29;3073:9;3054:29;:::i;:::-;3044:39;;3133:2;3122:9;3118:18;3105:32;3180:5;3173:13;3166:21;3159:5;3156:32;3146:60;;3202:1;3199;3192:12;3146:60;3225:5;3215:15;;;2889:347;;;;;:::o;3241:405::-;3316:6;3324;3332;3385:2;3373:9;3364:7;3360:23;3356:32;3353:52;;;3401:1;3398;3391:12;3353:52;3440:9;3427:23;3490:4;3483:5;3479:16;3472:5;3469:27;3459:55;;3510:1;3507;3500:12;3459:55;3533:5;3585:2;3570:18;;3557:32;;-1:-1:-1;3636:2:1;3621:18;;;3608:32;;3241:405;-1:-1:-1;;;3241:405:1:o;3651:260::-;3719:6;3727;3780:2;3768:9;3759:7;3755:23;3751:32;3748:52;;;3796:1;3793;3786:12;3748:52;3819:29;3838:9;3819:29;:::i;:::-;3809:39;;3867:38;3901:2;3890:9;3886:18;3867:38;:::i;:::-;3857:48;;3651:260;;;;;:::o;3916:356::-;4118:2;4100:21;;;4137:18;;;4130:30;4196:34;4191:2;4176:18;;4169:62;4263:2;4248:18;;3916:356::o;4277:127::-;4338:10;4333:3;4329:20;4326:1;4319:31;4369:4;4366:1;4359:15;4393:4;4390:1;4383:15;4409:125;4474:9;;;4495:10;;;4492:36;;;4508:18;;:::i;4896:380::-;4975:1;4971:12;;;;5018;;;5039:61;;5093:4;5085:6;5081:17;5071:27;;5039:61;5146:2;5138:6;5135:14;5115:18;5112:38;5109:161;;5192:10;5187:3;5183:20;5180:1;5173:31;5227:4;5224:1;5217:15;5255:4;5252:1;5245:15;5109:161;;4896:380;;;:::o;6028:383::-;6185:3;6223:6;6217:13;6239:66;6298:6;6293:3;6286:4;6278:6;6274:17;6239:66;:::i;:::-;6327:16;;;;6352:21;;;-1:-1:-1;6400:4:1;6389:16;;6028:383;-1:-1:-1;6028:383:1:o;8034:401::-;8236:2;8218:21;;;8275:2;8255:18;;;8248:30;8314:34;8309:2;8294:18;;8287:62;-1:-1:-1;;;8380:2:1;8365:18;;8358:35;8425:3;8410:19;;8034:401::o;8440:399::-;8642:2;8624:21;;;8681:2;8661:18;;;8654:30;8720:34;8715:2;8700:18;;8693:62;-1:-1:-1;;;8786:2:1;8771:18;;8764:33;8829:3;8814:19;;8440:399::o;10321:168::-;10394:9;;;10425;;10442:15;;;10436:22;;10422:37;10412:71;;10463:18;;:::i;10494:217::-;10534:1;10560;10550:132;;10604:10;10599:3;10595:20;10592:1;10585:31;10639:4;10636:1;10629:15;10667:4;10664:1;10657:15;10550:132;-1:-1:-1;10696:9:1;;10494:217::o;10716:128::-;10783:9;;;10804:11;;;10801:37;;;10818:18;;:::i;11388:127::-;11449:10;11444:3;11440:20;11437:1;11430:31;11480:4;11477:1;11470:15;11504:4;11501:1;11494:15;11520:980;11782:4;11830:3;11819:9;11815:19;11861:6;11850:9;11843:25;11887:2;11925:6;11920:2;11909:9;11905:18;11898:34;11968:3;11963:2;11952:9;11948:18;11941:31;11992:6;12027;12021:13;12058:6;12050;12043:22;12096:3;12085:9;12081:19;12074:26;;12135:2;12127:6;12123:15;12109:29;;12156:1;12166:195;12180:6;12177:1;12174:13;12166:195;;;12245:13;;-1:-1:-1;;;;;12241:39:1;12229:52;;12336:15;;;;12301:12;;;;12277:1;12195:9;12166:195;;;-1:-1:-1;;;;;;;12417:32:1;;;;12412:2;12397:18;;12390:60;-1:-1:-1;;;12481:3:1;12466:19;12459:35;12378:3;11520:980;-1:-1:-1;;;11520:980:1:o

Swarm Source

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