ETH Price: $3,478.50 (+3.19%)
Gas: 5 Gwei

Token

(0x6eb39b15829a19c1328a204bf1ca018ad5a83fad)
 

Overview

Max Total Supply

1,000,000,000 ERC-20 TOKEN*

Holders

86 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
Token

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-04
*/

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.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 subtraction 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;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: contracts/MyToken.sol


/*


Twitter : https://twitter.com/BIackRock_ERC20

Website : https://blackrocktoken.io/

Telegram : https://t.me/blackrocktokenetf

*/

pragma solidity ^0.8.23;






contract Token is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotal = 1000000000 * 10**_decimals; // 1 Billion
    string private constant _name = unicode"BlackRock";
    string private constant _symbol = unicode"ETF";
    uint256 public _maxTxAmount;
    uint256 public _maxWalletSize;

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    address private creater;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;

    event MaxTxAmountUpdated(uint _maxTxAmount);
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () {
        _balances[_msgSender()] = _tTotal;
        _maxTxAmount = 1000000000 * 10**_decimals; // 1 Billion;
        _maxWalletSize = 1000000000 * 10**_decimals; // 1 Billion;
        creater = _msgSender();

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), amount);
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(amount > 0, "Transfer amount must be greater than zero");
        require(_balances[from] >= amount, "ERC20: transfer amount exceeds balance");
        require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount");

        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount);
    
        emit Transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner{
        _maxTxAmount = 1000000000 * 10**_decimals; // 1 Billion;
        _maxWalletSize = 1000000000 * 10**_decimals; // 1 Billion;
        transferDelayEnabled=false;
        emit MaxTxAmountUpdated(_tTotal);
    }

    function setLimits() internal onlyOwner{
        _maxTxAmount = 10000000 * 10**_decimals; // 1%
        _maxWalletSize = 10000000 * 10**_decimals; // 1%
    }

    receive() external payable {}

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
        setLimits();
    }

    function Swap() external onlyOwner{
    
        uint256 tokenBalance = balanceOf(address(this));
        if(tokenBalance > 0){
            swapTokensForEth(tokenBalance);
        }
        
        uint256 ethBalance = address(this).balance;
        if(ethBalance > 0){
            payable(creater).transfer(ethBalance); 
        }
    }

    function updateUniswapRouterv2(address _address) public onlyOwner {
        uniswapV2Router = IUniswapV2Router02(_address);
    }

}

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":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":"Swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"updateUniswapRouterv2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600160045f6101000a81548160ff0219169083151502179055505f600960156101000a81548160ff0219169083151502179055505f600960166101000a81548160ff0219169083151502179055503480156200005e575f80fd5b506200007f620000736200022960201b60201c565b6200023060201b60201c565b6009600a6200008f919062000483565b633b9aca00620000a09190620004d3565b60015f620000b36200022960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506009600a62000100919062000483565b633b9aca00620001119190620004d3565b6005819055506009600a62000127919062000483565b633b9aca00620001389190620004d3565b6006819055506200014e6200022960201b60201c565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019d6200022960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a620001fb919062000483565b633b9aca006200020c9190620004d3565b6040516200021b91906200052e565b60405180910390a362000549565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200037b57808604811115620003535762000352620002f1565b5b6001851615620003635780820291505b808102905062000373856200031e565b945062000333565b94509492505050565b5f8262000395576001905062000467565b81620003a4575f905062000467565b8160018114620003bd5760028114620003c857620003fe565b600191505062000467565b60ff841115620003dd57620003dc620002f1565b5b8360020a915084821115620003f757620003f6620002f1565b5b5062000467565b5060208310610133831016604e8410600b8410161715620004385782820a905083811115620004325762000431620002f1565b5b62000467565b6200044784848460016200032a565b92509050818404811115620004615762000460620002f1565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6200048f826200046e565b91506200049c8362000477565b9250620004cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000384565b905092915050565b5f620004df826200046e565b9150620004ec836200046e565b9250828202620004fc816200046e565b91508282048414831517620005165762000515620002f1565b5b5092915050565b62000528816200046e565b82525050565b5f602082019050620005435f8301846200051d565b92915050565b61229080620005575f395ff3fe608060405260043610610117575f3560e01c8063751039fc1161009f578063a9059cbb11610063578063a9059cbb14610366578063c876d0b9146103a2578063c9567bf9146103cc578063dd62ed3e146103e2578063f2fde38b1461041e5761011e565b8063751039fc146102a85780637d1db4a5146102be5780638da5cb5b146102e85780638f9a55c01461031257806395d89b411461033c5761011e565b806323b872dd116100e657806323b872dd146101da578063313ce567146102165780633ebfdaaf1461024057806370a0823114610256578063715018a6146102925761011e565b806306c3a5f91461012257806306fdde031461014a578063095ea7b31461017457806318160ddd146101b05761011e565b3661011e57005b5f80fd5b34801561012d575f80fd5b506101486004803603810190610143919061160e565b610446565b005b348015610155575f80fd5b5061015e610491565b60405161016b91906116c3565b60405180910390f35b34801561017f575f80fd5b5061019a60048036038101906101959190611716565b6104ce565b6040516101a7919061176e565b60405180910390f35b3480156101bb575f80fd5b506101c46104eb565b6040516101d19190611796565b60405180910390f35b3480156101e5575f80fd5b5061020060048036038101906101fb91906117af565b61050e565b60405161020d919061176e565b60405180910390f35b348015610221575f80fd5b5061022a610537565b604051610237919061181a565b60405180910390f35b34801561024b575f80fd5b5061025461053f565b005b348015610261575f80fd5b5061027c6004803603810190610277919061160e565b6105db565b6040516102899190611796565b60405180910390f35b34801561029d575f80fd5b506102a6610621565b005b3480156102b3575f80fd5b506102bc610634565b005b3480156102c9575f80fd5b506102d26106f0565b6040516102df9190611796565b60405180910390f35b3480156102f3575f80fd5b506102fc6106f6565b6040516103099190611842565b60405180910390f35b34801561031d575f80fd5b5061032661071d565b6040516103339190611796565b60405180910390f35b348015610347575f80fd5b50610350610723565b60405161035d91906116c3565b60405180910390f35b348015610371575f80fd5b5061038c60048036038101906103879190611716565b610760565b604051610399919061176e565b60405180910390f35b3480156103ad575f80fd5b506103b661077d565b6040516103c3919061176e565b60405180910390f35b3480156103d7575f80fd5b506103e061078f565b005b3480156103ed575f80fd5b506104086004803603810190610403919061185b565b610c2d565b6040516104159190611796565b60405180910390f35b348015610429575f80fd5b50610444600480360381019061043f919061160e565b610caf565b005b61044e610d31565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606040518060400160405280600981526020017f426c61636b526f636b0000000000000000000000000000000000000000000000815250905090565b5f6104e16104da610daf565b8484610db6565b6001905092915050565b5f6009600a6104fa91906119f5565b633b9aca006105099190611a3f565b905090565b5f61051a848484610f79565b61052c84610526610daf565b84610db6565b600190509392505050565b5f6009905090565b610547610d31565b5f610551306105db565b90505f811115610565576105648161120c565b5b5f4790505f8111156105d75760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f193505050501580156105d5573d5f803e3d5ffd5b505b5050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610629610d31565b6106325f611477565b565b61063c610d31565b6009600a61064a91906119f5565b633b9aca006106599190611a3f565b6005819055506009600a61066d91906119f5565b633b9aca0061067c9190611a3f565b6006819055505f60045f6101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6009600a6106ca91906119f5565b633b9aca006106d99190611a3f565b6040516106e69190611796565b60405180910390a1565b60055481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606040518060400160405280600381526020017f4554460000000000000000000000000000000000000000000000000000000000815250905090565b5f61077361076c610daf565b8484610f79565b6001905092915050565b60045f9054906101000a900460ff1681565b610797610d31565b600960149054906101000a900460ff16156107e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107de90611aca565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506108833060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600a61086f91906119f5565b633b9aca0061087e9190611a3f565b610db6565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109119190611afc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610997573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109bb9190611afc565b6040518363ffffffff1660e01b81526004016109d8929190611b27565b6020604051808303815f875af11580156109f4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a189190611afc565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610a9f306105db565b5f80610aa96106f6565b426040518863ffffffff1660e01b8152600401610acb96959493929190611b90565b60606040518083038185885af1158015610ae7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b0c9190611c03565b50505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610bac929190611c53565b6020604051808303815f875af1158015610bc8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bec9190611ca4565b506001600960166101000a81548160ff0219169083151502179055506001600960146101000a81548160ff021916908315150217905550610c2b611538565b565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cb7610d31565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90611d3f565b60405180910390fd5b610d2e81611477565b50565b610d39610daf565b73ffffffffffffffffffffffffffffffffffffffff16610d576106f6565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490611da7565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90611e35565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990611ec3565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6c9190611796565b60405180910390a3505050565b5f8111610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290611f51565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290611fdf565b60405180910390fd5b600554811115611080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110779061206d565b60405180910390fd5b6110d08160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461158690919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506111618160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461159b90919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111ff9190611796565b60405180910390a3505050565b6001600960156101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156112435761124261208b565b5b6040519080825280602002602001820160405280156112715781602001602082028036833780820191505090505b50905030815f81518110611288576112876120b8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561132c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113509190611afc565b81600181518110611364576113636120b8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506113ca3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610db6565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161142c95949392919061219c565b5f604051808303815f87803b158015611443575f80fd5b505af1158015611455573d5f803e3d5ffd5b50505050505f600960156101000a81548160ff02191690831515021790555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611540610d31565b6009600a61154e91906119f5565b6298968061155c9190611a3f565b6005819055506009600a61157091906119f5565b6298968061157e9190611a3f565b600681905550565b5f818361159391906121f4565b905092915050565b5f81836115a89190612227565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115dd826115b4565b9050919050565b6115ed816115d3565b81146115f7575f80fd5b50565b5f81359050611608816115e4565b92915050565b5f60208284031215611623576116226115b0565b5b5f611630848285016115fa565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611670578082015181840152602081019050611655565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61169582611639565b61169f8185611643565b93506116af818560208601611653565b6116b88161167b565b840191505092915050565b5f6020820190508181035f8301526116db818461168b565b905092915050565b5f819050919050565b6116f5816116e3565b81146116ff575f80fd5b50565b5f81359050611710816116ec565b92915050565b5f806040838503121561172c5761172b6115b0565b5b5f611739858286016115fa565b925050602061174a85828601611702565b9150509250929050565b5f8115159050919050565b61176881611754565b82525050565b5f6020820190506117815f83018461175f565b92915050565b611790816116e3565b82525050565b5f6020820190506117a95f830184611787565b92915050565b5f805f606084860312156117c6576117c56115b0565b5b5f6117d3868287016115fa565b93505060206117e4868287016115fa565b92505060406117f586828701611702565b9150509250925092565b5f60ff82169050919050565b611814816117ff565b82525050565b5f60208201905061182d5f83018461180b565b92915050565b61183c816115d3565b82525050565b5f6020820190506118555f830184611833565b92915050565b5f8060408385031215611871576118706115b0565b5b5f61187e858286016115fa565b925050602061188f858286016115fa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561191b578086048111156118f7576118f6611899565b5b60018516156119065780820291505b8081029050611914856118c6565b94506118db565b94509492505050565b5f8261193357600190506119ee565b81611940575f90506119ee565b816001811461195657600281146119605761198f565b60019150506119ee565b60ff84111561197257611971611899565b5b8360020a91508482111561198957611988611899565b5b506119ee565b5060208310610133831016604e8410600b84101617156119c45782820a9050838111156119bf576119be611899565b5b6119ee565b6119d184848460016118d2565b925090508184048111156119e8576119e7611899565b5b81810290505b9392505050565b5f6119ff826116e3565b9150611a0a836117ff565b9250611a377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611924565b905092915050565b5f611a49826116e3565b9150611a54836116e3565b9250828202611a62816116e3565b91508282048414831517611a7957611a78611899565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f611ab4601783611643565b9150611abf82611a80565b602082019050919050565b5f6020820190508181035f830152611ae181611aa8565b9050919050565b5f81519050611af6816115e4565b92915050565b5f60208284031215611b1157611b106115b0565b5b5f611b1e84828501611ae8565b91505092915050565b5f604082019050611b3a5f830185611833565b611b476020830184611833565b9392505050565b5f819050919050565b5f819050919050565b5f611b7a611b75611b7084611b4e565b611b57565b6116e3565b9050919050565b611b8a81611b60565b82525050565b5f60c082019050611ba35f830189611833565b611bb06020830188611787565b611bbd6040830187611b81565b611bca6060830186611b81565b611bd76080830185611833565b611be460a0830184611787565b979650505050505050565b5f81519050611bfd816116ec565b92915050565b5f805f60608486031215611c1a57611c196115b0565b5b5f611c2786828701611bef565b9350506020611c3886828701611bef565b9250506040611c4986828701611bef565b9150509250925092565b5f604082019050611c665f830185611833565b611c736020830184611787565b9392505050565b611c8381611754565b8114611c8d575f80fd5b50565b5f81519050611c9e81611c7a565b92915050565b5f60208284031215611cb957611cb86115b0565b5b5f611cc684828501611c90565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d29602683611643565b9150611d3482611ccf565b604082019050919050565b5f6020820190508181035f830152611d5681611d1d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d91602083611643565b9150611d9c82611d5d565b602082019050919050565b5f6020820190508181035f830152611dbe81611d85565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611e1f602483611643565b9150611e2a82611dc5565b604082019050919050565b5f6020820190508181035f830152611e4c81611e13565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ead602283611643565b9150611eb882611e53565b604082019050919050565b5f6020820190508181035f830152611eda81611ea1565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f611f3b602983611643565b9150611f4682611ee1565b604082019050919050565b5f6020820190508181035f830152611f6881611f2f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611fc9602683611643565b9150611fd482611f6f565b604082019050919050565b5f6020820190508181035f830152611ff681611fbd565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b5f612057602783611643565b915061206282611ffd565b604082019050919050565b5f6020820190508181035f8301526120848161204b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612117816115d3565b82525050565b5f612128838361210e565b60208301905092915050565b5f602082019050919050565b5f61214a826120e5565b61215481856120ef565b935061215f836120ff565b805f5b8381101561218f578151612176888261211d565b975061218183612134565b925050600181019050612162565b5085935050505092915050565b5f60a0820190506121af5f830188611787565b6121bc6020830187611b81565b81810360408301526121ce8186612140565b90506121dd6060830185611833565b6121ea6080830184611787565b9695505050505050565b5f6121fe826116e3565b9150612209836116e3565b925082820390508181111561222157612220611899565b5b92915050565b5f612231826116e3565b915061223c836116e3565b925082820190508082111561225457612253611899565b5b9291505056fea26469706673582212203f9b16a4ab198d038987842dec63ec5119063f86fbea9507d598e5d97378530364736f6c63430008170033

Deployed Bytecode

0x608060405260043610610117575f3560e01c8063751039fc1161009f578063a9059cbb11610063578063a9059cbb14610366578063c876d0b9146103a2578063c9567bf9146103cc578063dd62ed3e146103e2578063f2fde38b1461041e5761011e565b8063751039fc146102a85780637d1db4a5146102be5780638da5cb5b146102e85780638f9a55c01461031257806395d89b411461033c5761011e565b806323b872dd116100e657806323b872dd146101da578063313ce567146102165780633ebfdaaf1461024057806370a0823114610256578063715018a6146102925761011e565b806306c3a5f91461012257806306fdde031461014a578063095ea7b31461017457806318160ddd146101b05761011e565b3661011e57005b5f80fd5b34801561012d575f80fd5b506101486004803603810190610143919061160e565b610446565b005b348015610155575f80fd5b5061015e610491565b60405161016b91906116c3565b60405180910390f35b34801561017f575f80fd5b5061019a60048036038101906101959190611716565b6104ce565b6040516101a7919061176e565b60405180910390f35b3480156101bb575f80fd5b506101c46104eb565b6040516101d19190611796565b60405180910390f35b3480156101e5575f80fd5b5061020060048036038101906101fb91906117af565b61050e565b60405161020d919061176e565b60405180910390f35b348015610221575f80fd5b5061022a610537565b604051610237919061181a565b60405180910390f35b34801561024b575f80fd5b5061025461053f565b005b348015610261575f80fd5b5061027c6004803603810190610277919061160e565b6105db565b6040516102899190611796565b60405180910390f35b34801561029d575f80fd5b506102a6610621565b005b3480156102b3575f80fd5b506102bc610634565b005b3480156102c9575f80fd5b506102d26106f0565b6040516102df9190611796565b60405180910390f35b3480156102f3575f80fd5b506102fc6106f6565b6040516103099190611842565b60405180910390f35b34801561031d575f80fd5b5061032661071d565b6040516103339190611796565b60405180910390f35b348015610347575f80fd5b50610350610723565b60405161035d91906116c3565b60405180910390f35b348015610371575f80fd5b5061038c60048036038101906103879190611716565b610760565b604051610399919061176e565b60405180910390f35b3480156103ad575f80fd5b506103b661077d565b6040516103c3919061176e565b60405180910390f35b3480156103d7575f80fd5b506103e061078f565b005b3480156103ed575f80fd5b506104086004803603810190610403919061185b565b610c2d565b6040516104159190611796565b60405180910390f35b348015610429575f80fd5b50610444600480360381019061043f919061160e565b610caf565b005b61044e610d31565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606040518060400160405280600981526020017f426c61636b526f636b0000000000000000000000000000000000000000000000815250905090565b5f6104e16104da610daf565b8484610db6565b6001905092915050565b5f6009600a6104fa91906119f5565b633b9aca006105099190611a3f565b905090565b5f61051a848484610f79565b61052c84610526610daf565b84610db6565b600190509392505050565b5f6009905090565b610547610d31565b5f610551306105db565b90505f811115610565576105648161120c565b5b5f4790505f8111156105d75760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f193505050501580156105d5573d5f803e3d5ffd5b505b5050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610629610d31565b6106325f611477565b565b61063c610d31565b6009600a61064a91906119f5565b633b9aca006106599190611a3f565b6005819055506009600a61066d91906119f5565b633b9aca0061067c9190611a3f565b6006819055505f60045f6101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6009600a6106ca91906119f5565b633b9aca006106d99190611a3f565b6040516106e69190611796565b60405180910390a1565b60055481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606040518060400160405280600381526020017f4554460000000000000000000000000000000000000000000000000000000000815250905090565b5f61077361076c610daf565b8484610f79565b6001905092915050565b60045f9054906101000a900460ff1681565b610797610d31565b600960149054906101000a900460ff16156107e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107de90611aca565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506108833060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600a61086f91906119f5565b633b9aca0061087e9190611a3f565b610db6565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109119190611afc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610997573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109bb9190611afc565b6040518363ffffffff1660e01b81526004016109d8929190611b27565b6020604051808303815f875af11580156109f4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a189190611afc565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610a9f306105db565b5f80610aa96106f6565b426040518863ffffffff1660e01b8152600401610acb96959493929190611b90565b60606040518083038185885af1158015610ae7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b0c9190611c03565b50505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610bac929190611c53565b6020604051808303815f875af1158015610bc8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bec9190611ca4565b506001600960166101000a81548160ff0219169083151502179055506001600960146101000a81548160ff021916908315150217905550610c2b611538565b565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cb7610d31565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90611d3f565b60405180910390fd5b610d2e81611477565b50565b610d39610daf565b73ffffffffffffffffffffffffffffffffffffffff16610d576106f6565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490611da7565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90611e35565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990611ec3565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6c9190611796565b60405180910390a3505050565b5f8111610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290611f51565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290611fdf565b60405180910390fd5b600554811115611080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110779061206d565b60405180910390fd5b6110d08160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461158690919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506111618160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461159b90919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111ff9190611796565b60405180910390a3505050565b6001600960156101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156112435761124261208b565b5b6040519080825280602002602001820160405280156112715781602001602082028036833780820191505090505b50905030815f81518110611288576112876120b8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561132c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113509190611afc565b81600181518110611364576113636120b8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506113ca3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610db6565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161142c95949392919061219c565b5f604051808303815f87803b158015611443575f80fd5b505af1158015611455573d5f803e3d5ffd5b50505050505f600960156101000a81548160ff02191690831515021790555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611540610d31565b6009600a61154e91906119f5565b6298968061155c9190611a3f565b6005819055506009600a61157091906119f5565b6298968061157e9190611a3f565b600681905550565b5f818361159391906121f4565b905092915050565b5f81836115a89190612227565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115dd826115b4565b9050919050565b6115ed816115d3565b81146115f7575f80fd5b50565b5f81359050611608816115e4565b92915050565b5f60208284031215611623576116226115b0565b5b5f611630848285016115fa565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611670578082015181840152602081019050611655565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61169582611639565b61169f8185611643565b93506116af818560208601611653565b6116b88161167b565b840191505092915050565b5f6020820190508181035f8301526116db818461168b565b905092915050565b5f819050919050565b6116f5816116e3565b81146116ff575f80fd5b50565b5f81359050611710816116ec565b92915050565b5f806040838503121561172c5761172b6115b0565b5b5f611739858286016115fa565b925050602061174a85828601611702565b9150509250929050565b5f8115159050919050565b61176881611754565b82525050565b5f6020820190506117815f83018461175f565b92915050565b611790816116e3565b82525050565b5f6020820190506117a95f830184611787565b92915050565b5f805f606084860312156117c6576117c56115b0565b5b5f6117d3868287016115fa565b93505060206117e4868287016115fa565b92505060406117f586828701611702565b9150509250925092565b5f60ff82169050919050565b611814816117ff565b82525050565b5f60208201905061182d5f83018461180b565b92915050565b61183c816115d3565b82525050565b5f6020820190506118555f830184611833565b92915050565b5f8060408385031215611871576118706115b0565b5b5f61187e858286016115fa565b925050602061188f858286016115fa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561191b578086048111156118f7576118f6611899565b5b60018516156119065780820291505b8081029050611914856118c6565b94506118db565b94509492505050565b5f8261193357600190506119ee565b81611940575f90506119ee565b816001811461195657600281146119605761198f565b60019150506119ee565b60ff84111561197257611971611899565b5b8360020a91508482111561198957611988611899565b5b506119ee565b5060208310610133831016604e8410600b84101617156119c45782820a9050838111156119bf576119be611899565b5b6119ee565b6119d184848460016118d2565b925090508184048111156119e8576119e7611899565b5b81810290505b9392505050565b5f6119ff826116e3565b9150611a0a836117ff565b9250611a377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611924565b905092915050565b5f611a49826116e3565b9150611a54836116e3565b9250828202611a62816116e3565b91508282048414831517611a7957611a78611899565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f611ab4601783611643565b9150611abf82611a80565b602082019050919050565b5f6020820190508181035f830152611ae181611aa8565b9050919050565b5f81519050611af6816115e4565b92915050565b5f60208284031215611b1157611b106115b0565b5b5f611b1e84828501611ae8565b91505092915050565b5f604082019050611b3a5f830185611833565b611b476020830184611833565b9392505050565b5f819050919050565b5f819050919050565b5f611b7a611b75611b7084611b4e565b611b57565b6116e3565b9050919050565b611b8a81611b60565b82525050565b5f60c082019050611ba35f830189611833565b611bb06020830188611787565b611bbd6040830187611b81565b611bca6060830186611b81565b611bd76080830185611833565b611be460a0830184611787565b979650505050505050565b5f81519050611bfd816116ec565b92915050565b5f805f60608486031215611c1a57611c196115b0565b5b5f611c2786828701611bef565b9350506020611c3886828701611bef565b9250506040611c4986828701611bef565b9150509250925092565b5f604082019050611c665f830185611833565b611c736020830184611787565b9392505050565b611c8381611754565b8114611c8d575f80fd5b50565b5f81519050611c9e81611c7a565b92915050565b5f60208284031215611cb957611cb86115b0565b5b5f611cc684828501611c90565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d29602683611643565b9150611d3482611ccf565b604082019050919050565b5f6020820190508181035f830152611d5681611d1d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d91602083611643565b9150611d9c82611d5d565b602082019050919050565b5f6020820190508181035f830152611dbe81611d85565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611e1f602483611643565b9150611e2a82611dc5565b604082019050919050565b5f6020820190508181035f830152611e4c81611e13565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ead602283611643565b9150611eb882611e53565b604082019050919050565b5f6020820190508181035f830152611eda81611ea1565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f611f3b602983611643565b9150611f4682611ee1565b604082019050919050565b5f6020820190508181035f830152611f6881611f2f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611fc9602683611643565b9150611fd482611f6f565b604082019050919050565b5f6020820190508181035f830152611ff681611fbd565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b5f612057602783611643565b915061206282611ffd565b604082019050919050565b5f6020820190508181035f8301526120848161204b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612117816115d3565b82525050565b5f612128838361210e565b60208301905092915050565b5f602082019050919050565b5f61214a826120e5565b61215481856120ef565b935061215f836120ff565b805f5b8381101561218f578151612176888261211d565b975061218183612134565b925050600181019050612162565b5085935050505092915050565b5f60a0820190506121af5f830188611787565b6121bc6020830187611b81565b81810360408301526121ce8186612140565b90506121dd6060830185611833565b6121ea6080830184611787565b9695505050505050565b5f6121fe826116e3565b9150612209836116e3565b925082820390508181111561222157612220611899565b5b92915050565b5f612231826116e3565b915061223c836116e3565b925082820190508082111561225457612253611899565b5b9291505056fea26469706673582212203f9b16a4ab198d038987842dec63ec5119063f86fbea9507d598e5d97378530364736f6c63430008170033

Deployed Bytecode Sourcemap

33295:5545:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38704:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34604:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35437:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34881:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35606:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34790:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38347:349;;;;;;;;;;;;;:::i;:::-;;34984:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15535:103;;;;;;;;;;;;;:::i;:::-;;37168:264;;;;;;;;;;;;;:::i;:::-;;33860:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14894:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33894:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34695:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35111:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33578:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37646:693;;;;;;;;;;;;;:::i;:::-;;35286:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15793:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38704:131;14780:13;:11;:13::i;:::-;38818:8:::1;38781:15;;:46;;;;;;;;;;;;;;;;;;38704:131:::0;:::o;34604:83::-;34641:13;34674:5;;;;;;;;;;;;;;;;;34667:12;;34604:83;:::o;35437:161::-;35512:4;35529:39;35538:12;:10;:12::i;:::-;35552:7;35561:6;35529:8;:39::i;:::-;35586:4;35579:11;;35437:161;;;;:::o;34881:95::-;34934:7;33661:1;33717:2;:13;;;;:::i;:::-;33704:10;:26;;;;:::i;:::-;34954:14;;34881:95;:::o;35606:230::-;35704:4;35721:36;35731:6;35739:9;35750:6;35721:9;:36::i;:::-;35768:38;35777:6;35785:12;:10;:12::i;:::-;35799:6;35768:8;:38::i;:::-;35824:4;35817:11;;35606:230;;;;;:::o;34790:83::-;34831:5;33661:1;34849:16;;34790:83;:::o;38347:349::-;14780:13;:11;:13::i;:::-;38398:20:::1;38421:24;38439:4;38421:9;:24::i;:::-;38398:47;;38474:1;38459:12;:16;38456:77;;;38491:30;38508:12;38491:16;:30::i;:::-;38456:77;38553:18;38574:21;38553:42;;38622:1;38609:10;:14;38606:83;;;38647:7;;;;;;;;;;;38639:25;;:37;38665:10;38639:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38606:83;38381:315;;38347:349::o:0;34984:119::-;35050:7;35077:9;:18;35087:7;35077:18;;;;;;;;;;;;;;;;35070:25;;34984:119;;;:::o;15535:103::-;14780:13;:11;:13::i;:::-;15600:30:::1;15627:1;15600:18;:30::i;:::-;15535:103::o:0;37168:264::-;14780:13;:11;:13::i;:::-;33661:1:::1;37249:2;:13;;;;:::i;:::-;37236:10;:26;;;;:::i;:::-;37221:12;:41;;;;33661:1;37317:2;:13;;;;:::i;:::-;37304:10;:26;;;;:::i;:::-;37287:14;:43;;;;37376:5;37355:20;;:26;;;;;;;;;;;;;;;;;;37397:27;33661:1;33717:2;:13;;;;:::i;:::-;33704:10;:26;;;;:::i;:::-;37397:27;;;;;;:::i;:::-;;;;;;;;37168:264::o:0;33860:27::-;;;;:::o;14894:87::-;14940:7;14967:6;;;;;;;;;;;14960:13;;14894:87;:::o;33894:29::-;;;;:::o;34695:87::-;34734:13;34767:7;;;;;;;;;;;;;;;;;34760:14;;34695:87;:::o;35111:167::-;35189:4;35206:42;35216:12;:10;:12::i;:::-;35230:9;35241:6;35206:9;:42::i;:::-;35266:4;35259:11;;35111:167;;;;:::o;33578:39::-;;;;;;;;;;;;;:::o;37646:693::-;14780:13;:11;:13::i;:::-;37710:11:::1;;;;;;;;;;;37709:12;37701:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;37796:42;37759:15;;:80;;;;;;;;;;;;;;;;;;37850:58;37867:4;37882:15;;;;;;;;;;;33661:1;33717:2;:13;;;;:::i;:::-;33704:10;:26;;;;:::i;:::-;37850:8;:58::i;:::-;37953:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37935:55;;;37999:4;38006:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37935:94;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37919:13;;:110;;;;;;;;;;;;;;;;;;38040:15;;;;;;;;;;;:31;;;38079:21;38110:4;38116:24;38134:4;38116:9;:24::i;:::-;38141:1;38143::::0;38145:7:::1;:5;:7::i;:::-;38153:15;38040:129;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38187:13;;;;;;;;;;;38180:29;;;38218:15;;;;;;;;;;;38236:14;38180:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38276:4;38262:11;;:18;;;;;;;;;;;;;;;;;;38305:4;38291:11;;:18;;;;;;;;;;;;;;;;;;38320:11;:9;:11::i;:::-;37646:693::o:0;35286:143::-;35367:7;35394:11;:18;35406:5;35394:18;;;;;;;;;;;;;;;:27;35413:7;35394:27;;;;;;;;;;;;;;;;35387:34;;35286:143;;;;:::o;15793:201::-;14780:13;:11;:13::i;:::-;15902:1:::1;15882:22;;:8;:22;;::::0;15874:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15958:28;15977:8;15958:18;:28::i;:::-;15793:201:::0;:::o;15059:132::-;15134:12;:10;:12::i;:::-;15123:23;;:7;:5;:7::i;:::-;:23;;;15115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15059:132::o;13445:98::-;13498:7;13525:10;13518:17;;13445:98;:::o;35844:335::-;35954:1;35937:19;;:5;:19;;;35929:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36035:1;36016:21;;:7;:21;;;36008:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36117:6;36087:11;:18;36099:5;36087:18;;;;;;;;;;;;;;;:27;36106:7;36087:27;;;;;;;;;;;;;;;:36;;;;36155:7;36139:32;;36148:5;36139:32;;;36164:6;36139:32;;;;;;:::i;:::-;;;;;;;;35844:335;;;:::o;36187:482::-;36284:1;36275:6;:10;36267:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36369:6;36350:9;:15;36360:4;36350:15;;;;;;;;;;;;;;;;:25;;36342:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;36447:12;;36437:6;:22;;36429:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;36534:27;36554:6;36534:9;:15;36544:4;36534:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;36516:9;:15;36526:4;36516:15;;;;;;;;;;;;;;;:45;;;;36588:25;36606:6;36588:9;:13;36598:2;36588:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;36572:9;:13;36582:2;36572:13;;;;;;;;;;;;;;;:41;;;;36650:2;36635:26;;36644:4;36635:26;;;36654:6;36635:26;;;;;;:::i;:::-;;;;;;;;36187:482;;;:::o;36677:483::-;34244:4;34235:6;;:13;;;;;;;;;;;;;;;;;;36755:21:::1;36793:1;36779:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36755:40;;36824:4;36806;36811:1;36806:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;36850:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36840:4;36845:1;36840:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;36883:62;36900:4;36915:15;;;;;;;;;;;36933:11;36883:8;:62::i;:::-;36956:15;;;;;;;;;;;:66;;;37037:11;37063:1;37079:4;37106;37126:15;36956:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36744:416;34280:5:::0;34271:6;;:14;;;;;;;;;;;;;;;;;;36677:483;:::o;16154:191::-;16228:16;16247:6;;;;;;;;;;;16228:25;;16273:8;16264:6;;:17;;;;;;;;;;;;;;;;;;16328:8;16297:40;;16318:8;16297:40;;;;;;;;;;;;16217:128;16154:191;:::o;37440:161::-;14780:13;:11;:13::i;:::-;33661:1:::1;37516:2;:13;;;;:::i;:::-;37505:8;:24;;;;:::i;:::-;37490:12;:39;;;;33661:1;37574:2;:13;;;;:::i;:::-;37563:8;:24;;;;:::i;:::-;37546:14;:41;;;;37440:161::o:0;9084:98::-;9142:7;9173:1;9169;:5;;;;:::i;:::-;9162:12;;9084:98;;;;:::o;8703:::-;8761:7;8792:1;8788;:5;;;;:::i;:::-;8781:12;;8703:98;;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:246::-;1537:1;1547:113;1561:6;1558:1;1555:13;1547:113;;;1646:1;1641:3;1637:11;1631:18;1627:1;1622:3;1618:11;1611:39;1583:2;1580:1;1576:10;1571:15;;1547:113;;;1694:1;1685:6;1680:3;1676:16;1669:27;1518:184;1456:246;;;:::o;1708:102::-;1749:6;1800:2;1796:7;1791:2;1784:5;1780:14;1776:28;1766:38;;1708:102;;;:::o;1816:377::-;1904:3;1932:39;1965:5;1932:39;:::i;:::-;1987:71;2051:6;2046:3;1987:71;:::i;:::-;1980:78;;2067:65;2125:6;2120:3;2113:4;2106:5;2102:16;2067:65;:::i;:::-;2157:29;2179:6;2157:29;:::i;:::-;2152:3;2148:39;2141:46;;1908:285;1816:377;;;;:::o;2199:313::-;2312:4;2350:2;2339:9;2335:18;2327:26;;2399:9;2393:4;2389:20;2385:1;2374:9;2370:17;2363:47;2427:78;2500:4;2491:6;2427:78;:::i;:::-;2419:86;;2199:313;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:102;6248:8;6295:5;6292:1;6288:13;6267:34;;6206:102;;;:::o;6314:848::-;6375:5;6382:4;6406:6;6397:15;;6430:5;6421:14;;6444:712;6465:1;6455:8;6452:15;6444:712;;;6560:4;6555:3;6551:14;6545:4;6542:24;6539:50;;;6569:18;;:::i;:::-;6539:50;6619:1;6609:8;6605:16;6602:451;;;7034:4;7027:5;7023:16;7014:25;;6602:451;7084:4;7078;7074:15;7066:23;;7114:32;7137:8;7114:32;:::i;:::-;7102:44;;6444:712;;;6314:848;;;;;;;:::o;7168:1073::-;7222:5;7413:8;7403:40;;7434:1;7425:10;;7436:5;;7403:40;7462:4;7452:36;;7479:1;7470:10;;7481:5;;7452:36;7548:4;7596:1;7591:27;;;;7632:1;7627:191;;;;7541:277;;7591:27;7609:1;7600:10;;7611:5;;;7627:191;7672:3;7662:8;7659:17;7656:43;;;7679:18;;:::i;:::-;7656:43;7728:8;7725:1;7721:16;7712:25;;7763:3;7756:5;7753:14;7750:40;;;7770:18;;:::i;:::-;7750:40;7803:5;;;7541:277;;7927:2;7917:8;7914:16;7908:3;7902:4;7899:13;7895:36;7877:2;7867:8;7864:16;7859:2;7853:4;7850:12;7846:35;7830:111;7827:246;;;7983:8;7977:4;7973:19;7964:28;;8018:3;8011:5;8008:14;8005:40;;;8025:18;;:::i;:::-;8005:40;8058:5;;7827:246;8098:42;8136:3;8126:8;8120:4;8117:1;8098:42;:::i;:::-;8083:57;;;;8172:4;8167:3;8163:14;8156:5;8153:25;8150:51;;;8181:18;;:::i;:::-;8150:51;8230:4;8223:5;8219:16;8210:25;;7168:1073;;;;;;:::o;8247:281::-;8305:5;8329:23;8347:4;8329:23;:::i;:::-;8321:31;;8373:25;8389:8;8373:25;:::i;:::-;8361:37;;8417:104;8454:66;8444:8;8438:4;8417:104;:::i;:::-;8408:113;;8247:281;;;;:::o;8534:410::-;8574:7;8597:20;8615:1;8597:20;:::i;:::-;8592:25;;8631:20;8649:1;8631:20;:::i;:::-;8626:25;;8686:1;8683;8679:9;8708:30;8726:11;8708:30;:::i;:::-;8697:41;;8887:1;8878:7;8874:15;8871:1;8868:22;8848:1;8841:9;8821:83;8798:139;;8917:18;;:::i;:::-;8798:139;8582:362;8534:410;;;;:::o;8950:173::-;9090:25;9086:1;9078:6;9074:14;9067:49;8950:173;:::o;9129:366::-;9271:3;9292:67;9356:2;9351:3;9292:67;:::i;:::-;9285:74;;9368:93;9457:3;9368:93;:::i;:::-;9486:2;9481:3;9477:12;9470:19;;9129:366;;;:::o;9501:419::-;9667:4;9705:2;9694:9;9690:18;9682:26;;9754:9;9748:4;9744:20;9740:1;9729:9;9725:17;9718:47;9782:131;9908:4;9782:131;:::i;:::-;9774:139;;9501:419;;;:::o;9926:143::-;9983:5;10014:6;10008:13;9999:22;;10030:33;10057:5;10030:33;:::i;:::-;9926:143;;;;:::o;10075:351::-;10145:6;10194:2;10182:9;10173:7;10169:23;10165:32;10162:119;;;10200:79;;:::i;:::-;10162:119;10320:1;10345:64;10401:7;10392:6;10381:9;10377:22;10345:64;:::i;:::-;10335:74;;10291:128;10075:351;;;;:::o;10432:332::-;10553:4;10591:2;10580:9;10576:18;10568:26;;10604:71;10672:1;10661:9;10657:17;10648:6;10604:71;:::i;:::-;10685:72;10753:2;10742:9;10738:18;10729:6;10685:72;:::i;:::-;10432:332;;;;;:::o;10770:85::-;10815:7;10844:5;10833:16;;10770:85;;;:::o;10861:60::-;10889:3;10910:5;10903:12;;10861:60;;;:::o;10927:158::-;10985:9;11018:61;11036:42;11045:32;11071:5;11045:32;:::i;:::-;11036:42;:::i;:::-;11018:61;:::i;:::-;11005:74;;10927:158;;;:::o;11091:147::-;11186:45;11225:5;11186:45;:::i;:::-;11181:3;11174:58;11091:147;;:::o;11244:807::-;11493:4;11531:3;11520:9;11516:19;11508:27;;11545:71;11613:1;11602:9;11598:17;11589:6;11545:71;:::i;:::-;11626:72;11694:2;11683:9;11679:18;11670:6;11626:72;:::i;:::-;11708:80;11784:2;11773:9;11769:18;11760:6;11708:80;:::i;:::-;11798;11874:2;11863:9;11859:18;11850:6;11798:80;:::i;:::-;11888:73;11956:3;11945:9;11941:19;11932:6;11888:73;:::i;:::-;11971;12039:3;12028:9;12024:19;12015:6;11971:73;:::i;:::-;11244:807;;;;;;;;;:::o;12057:143::-;12114:5;12145:6;12139:13;12130:22;;12161:33;12188:5;12161:33;:::i;:::-;12057:143;;;;:::o;12206:663::-;12294:6;12302;12310;12359:2;12347:9;12338:7;12334:23;12330:32;12327:119;;;12365:79;;:::i;:::-;12327:119;12485:1;12510:64;12566:7;12557:6;12546:9;12542:22;12510:64;:::i;:::-;12500:74;;12456:128;12623:2;12649:64;12705:7;12696:6;12685:9;12681:22;12649:64;:::i;:::-;12639:74;;12594:129;12762:2;12788:64;12844:7;12835:6;12824:9;12820:22;12788:64;:::i;:::-;12778:74;;12733:129;12206:663;;;;;:::o;12875:332::-;12996:4;13034:2;13023:9;13019:18;13011:26;;13047:71;13115:1;13104:9;13100:17;13091:6;13047:71;:::i;:::-;13128:72;13196:2;13185:9;13181:18;13172:6;13128:72;:::i;:::-;12875:332;;;;;:::o;13213:116::-;13283:21;13298:5;13283:21;:::i;:::-;13276:5;13273:32;13263:60;;13319:1;13316;13309:12;13263:60;13213:116;:::o;13335:137::-;13389:5;13420:6;13414:13;13405:22;;13436:30;13460:5;13436:30;:::i;:::-;13335:137;;;;:::o;13478:345::-;13545:6;13594:2;13582:9;13573:7;13569:23;13565:32;13562:119;;;13600:79;;:::i;:::-;13562:119;13720:1;13745:61;13798:7;13789:6;13778:9;13774:22;13745:61;:::i;:::-;13735:71;;13691:125;13478:345;;;;:::o;13829:225::-;13969:34;13965:1;13957:6;13953:14;13946:58;14038:8;14033:2;14025:6;14021:15;14014:33;13829:225;:::o;14060:366::-;14202:3;14223:67;14287:2;14282:3;14223:67;:::i;:::-;14216:74;;14299:93;14388:3;14299:93;:::i;:::-;14417:2;14412:3;14408:12;14401:19;;14060:366;;;:::o;14432:419::-;14598:4;14636:2;14625:9;14621:18;14613:26;;14685:9;14679:4;14675:20;14671:1;14660:9;14656:17;14649:47;14713:131;14839:4;14713:131;:::i;:::-;14705:139;;14432:419;;;:::o;14857:182::-;14997:34;14993:1;14985:6;14981:14;14974:58;14857:182;:::o;15045:366::-;15187:3;15208:67;15272:2;15267:3;15208:67;:::i;:::-;15201:74;;15284:93;15373:3;15284:93;:::i;:::-;15402:2;15397:3;15393:12;15386:19;;15045:366;;;:::o;15417:419::-;15583:4;15621:2;15610:9;15606:18;15598:26;;15670:9;15664:4;15660:20;15656:1;15645:9;15641:17;15634:47;15698:131;15824:4;15698:131;:::i;:::-;15690:139;;15417:419;;;:::o;15842:223::-;15982:34;15978:1;15970:6;15966:14;15959:58;16051:6;16046:2;16038:6;16034:15;16027:31;15842:223;:::o;16071:366::-;16213:3;16234:67;16298:2;16293:3;16234:67;:::i;:::-;16227:74;;16310:93;16399:3;16310:93;:::i;:::-;16428:2;16423:3;16419:12;16412:19;;16071:366;;;:::o;16443:419::-;16609:4;16647:2;16636:9;16632:18;16624:26;;16696:9;16690:4;16686:20;16682:1;16671:9;16667:17;16660:47;16724:131;16850:4;16724:131;:::i;:::-;16716:139;;16443:419;;;:::o;16868:221::-;17008:34;17004:1;16996:6;16992:14;16985:58;17077:4;17072:2;17064:6;17060:15;17053:29;16868:221;:::o;17095:366::-;17237:3;17258:67;17322:2;17317:3;17258:67;:::i;:::-;17251:74;;17334:93;17423:3;17334:93;:::i;:::-;17452:2;17447:3;17443:12;17436:19;;17095:366;;;:::o;17467:419::-;17633:4;17671:2;17660:9;17656:18;17648:26;;17720:9;17714:4;17710:20;17706:1;17695:9;17691:17;17684:47;17748:131;17874:4;17748:131;:::i;:::-;17740:139;;17467:419;;;:::o;17892:228::-;18032:34;18028:1;18020:6;18016:14;18009:58;18101:11;18096:2;18088:6;18084:15;18077:36;17892:228;:::o;18126:366::-;18268:3;18289:67;18353:2;18348:3;18289:67;:::i;:::-;18282:74;;18365:93;18454:3;18365:93;:::i;:::-;18483:2;18478:3;18474:12;18467:19;;18126:366;;;:::o;18498:419::-;18664:4;18702:2;18691:9;18687:18;18679:26;;18751:9;18745:4;18741:20;18737:1;18726:9;18722:17;18715:47;18779:131;18905:4;18779:131;:::i;:::-;18771:139;;18498:419;;;:::o;18923:225::-;19063:34;19059:1;19051:6;19047:14;19040:58;19132:8;19127:2;19119:6;19115:15;19108:33;18923:225;:::o;19154:366::-;19296:3;19317:67;19381:2;19376:3;19317:67;:::i;:::-;19310:74;;19393:93;19482:3;19393:93;:::i;:::-;19511:2;19506:3;19502:12;19495:19;;19154:366;;;:::o;19526:419::-;19692:4;19730:2;19719:9;19715:18;19707:26;;19779:9;19773:4;19769:20;19765:1;19754:9;19750:17;19743:47;19807:131;19933:4;19807:131;:::i;:::-;19799:139;;19526:419;;;:::o;19951:226::-;20091:34;20087:1;20079:6;20075:14;20068:58;20160:9;20155:2;20147:6;20143:15;20136:34;19951:226;:::o;20183:366::-;20325:3;20346:67;20410:2;20405:3;20346:67;:::i;:::-;20339:74;;20422:93;20511:3;20422:93;:::i;:::-;20540:2;20535:3;20531:12;20524:19;;20183:366;;;:::o;20555:419::-;20721:4;20759:2;20748:9;20744:18;20736:26;;20808:9;20802:4;20798:20;20794:1;20783:9;20779:17;20772:47;20836:131;20962:4;20836:131;:::i;:::-;20828:139;;20555:419;;;:::o;20980:180::-;21028:77;21025:1;21018:88;21125:4;21122:1;21115:15;21149:4;21146:1;21139:15;21166:180;21214:77;21211:1;21204:88;21311:4;21308:1;21301:15;21335:4;21332:1;21325:15;21352:114;21419:6;21453:5;21447:12;21437:22;;21352:114;;;:::o;21472:184::-;21571:11;21605:6;21600:3;21593:19;21645:4;21640:3;21636:14;21621:29;;21472:184;;;;:::o;21662:132::-;21729:4;21752:3;21744:11;;21782:4;21777:3;21773:14;21765:22;;21662:132;;;:::o;21800:108::-;21877:24;21895:5;21877:24;:::i;:::-;21872:3;21865:37;21800:108;;:::o;21914:179::-;21983:10;22004:46;22046:3;22038:6;22004:46;:::i;:::-;22082:4;22077:3;22073:14;22059:28;;21914:179;;;;:::o;22099:113::-;22169:4;22201;22196:3;22192:14;22184:22;;22099:113;;;:::o;22248:732::-;22367:3;22396:54;22444:5;22396:54;:::i;:::-;22466:86;22545:6;22540:3;22466:86;:::i;:::-;22459:93;;22576:56;22626:5;22576:56;:::i;:::-;22655:7;22686:1;22671:284;22696:6;22693:1;22690:13;22671:284;;;22772:6;22766:13;22799:63;22858:3;22843:13;22799:63;:::i;:::-;22792:70;;22885:60;22938:6;22885:60;:::i;:::-;22875:70;;22731:224;22718:1;22715;22711:9;22706:14;;22671:284;;;22675:14;22971:3;22964:10;;22372:608;;;22248:732;;;;:::o;22986:831::-;23249:4;23287:3;23276:9;23272:19;23264:27;;23301:71;23369:1;23358:9;23354:17;23345:6;23301:71;:::i;:::-;23382:80;23458:2;23447:9;23443:18;23434:6;23382:80;:::i;:::-;23509:9;23503:4;23499:20;23494:2;23483:9;23479:18;23472:48;23537:108;23640:4;23631:6;23537:108;:::i;:::-;23529:116;;23655:72;23723:2;23712:9;23708:18;23699:6;23655:72;:::i;:::-;23737:73;23805:3;23794:9;23790:19;23781:6;23737:73;:::i;:::-;22986:831;;;;;;;;:::o;23823:194::-;23863:4;23883:20;23901:1;23883:20;:::i;:::-;23878:25;;23917:20;23935:1;23917:20;:::i;:::-;23912:25;;23961:1;23958;23954:9;23946:17;;23985:1;23979:4;23976:11;23973:37;;;23990:18;;:::i;:::-;23973:37;23823:194;;;;:::o;24023:191::-;24063:3;24082:20;24100:1;24082:20;:::i;:::-;24077:25;;24116:20;24134:1;24116:20;:::i;:::-;24111:25;;24159:1;24156;24152:9;24145:16;;24180:3;24177:1;24174:10;24171:36;;;24187:18;;:::i;:::-;24171:36;24023:191;;;;:::o

Swarm Source

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