ETH Price: $2,934.38 (-4.34%)
Gas: 2 Gwei

Token

CLIODHNA (SOULS)
 

Overview

Max Total Supply

100,000,000 SOULS

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
foreverether.eth
Balance
184,718.557236168 SOULS

Value
$0.00
0x657340f8f3187bb251700ede07140aaa93c08c35
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:
Cliodhna

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
CLÍODHNA QUEEN OF BANSHEES
GODDESS OF LOVE AND BEAUTY
telegram: https://t.me/Cliodhnaethportal
website: http://cliodhnaeth.com/
twitter: https://twitter.com/CLODHNAETH
medium: https://medium.com/@Cliodhnaeth
                                                                                        
                                                                                        
                                                                                        
                                                                                        
                                                                                        
                                                                                        
                            ██                                                          
      ████████████████████▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒  
    ██████████████████████▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒  
  ████▒▒██████████████████▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒    ▒▒  
    ██████████████████████▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒      ▒▒  
      ████████████████████▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒        ▒▒  
                            ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒        ▒▒▒▒  
                              ▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒  ▒▒        ▒▒▒▒  
                              ▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒    ▒▒              
                              ▒▒▒▒░░░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒        ▒▒              
                              ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒            ▒▒              
                              ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒                            
                                  ▒▒        ▒▒▒▒        ▒▒▒▒            ▒▒              
                                  ▒▒        ▒▒          ▒▒▒▒          ▒▒▒▒▒▒            
                                ▒▒▒▒▒▒                  ▒▒▒▒          ▒▒▒▒▒▒            
                                ▒▒▒▒▒▒                  ▒▒▒▒▒▒          ▒▒              
                                  ▒▒                                                        
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

    function allPairs(uint256) external view returns (address pair);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
}

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

/**
 * @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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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].
 *
 * 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() external view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() external view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

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

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

/**
 * @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].
 *
 * 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 Cliodhna is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "CLIODHNA";
    string private _symbol = "SOULS";
    uint8 private _decimals = 9;
    uint256 private _supply = 100000000;
    uint256 public taxForLiquidity = 0;
    uint256 public taxForDev = 0;
    uint256 public taxForMarketing = 100;
    uint256 public maxTxAmount = 2000000 * 10**_decimals;
    uint256 public maxWalletAmount = 2000000 * 10**_decimals;
    address public MarketingWallet = 0x597C26d43dE739E9Abf51Cca021696A44d592507;
    address public DevWallet = 0x8D3554B86430b28410bC69B8F8c456B58c4c83fB;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    uint256 private _DevReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 25000 * 10**_decimals;
    uint256 private _numTokensSellToAddToMarketing = 50000 * 10**_decimals;
    uint256 private _numTokensSellToAddToDev = 25000 * 10**_decimals;
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[address(0x40C54924b74dC9C6c3e2030d4Ad7724A0Af73c65)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[address(0xF90E5f902cc05aB951D028A35f89dd09E4CCB4F6)] = true;
        _isExcludedFromFee[MarketingWallet] = true;
        _isExcludedFromFee[address(0x0E14b4C0a2404f931492E98BFeB3DCEe8b5eF419)] = true;
        _isExcludedFromFee[DevWallet] = true;
        _isExcludedFromFee[address(0xE34b3a84B2DA63e7CB857affdD809433089A4e55)] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves - _DevReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
             
                if ((_marketingReserves) >= _numTokensSellToAddToMarketing) {
                    _swapTokensForEth(_numTokensSellToAddToMarketing);
                    _marketingReserves -= _numTokensSellToAddToMarketing;
                    bool sent = payable(MarketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }

                if ((_DevReserves) >= _numTokensSellToAddToDev) {
                    _swapTokensForEth(_numTokensSellToAddToDev);
                    _DevReserves -= _numTokensSellToAddToDev;
                    bool sent = payable(DevWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 MarketingShare = ((amount * taxForMarketing) / 100);
                uint256 DevShare = ((amount * taxForDev) / 100);
                uint256 LiquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (MarketingShare + LiquidityShare + DevShare);
                _marketingReserves += MarketingShare;
                _DevReserves += DevShare;

                super._transfer(from, address(this), (MarketingShare + DevShare + LiquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        MarketingWallet = newWallet;
        return true;
    }

        function changeDevWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        DevWallet = newWallet;
        return true;
    }

    function changeTaxes(uint256 _taxForLiquidity, uint256 _taxForMarketing, uint256 _taxForDev)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity + _taxForMarketing + _taxForDev) <= 100, "ERC20: total tax must not be greater than 100");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;
        taxForDev   = _taxForDev;

        return true;
    }

    function changeMaxTransactionAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount;

        return true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"DevWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeDevWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxForDev","type":"uint256"}],"name":"changeTaxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100604052600860c090815267434c494f44484e4160c01b60e0526006906200002a908262000771565b50604080518082019091526005815264534f554c5360d81b602082015260079062000056908262000771565b506008805460ff191660099081179091556305f5e10081556000600a818155600b919091556064600c556200008c919062000952565b6200009b90621e84806200096a565b600d55600854620000b19060ff16600a62000952565b620000c090621e84806200096a565b600e55600f80546001600160a01b031990811673597c26d43de739e9abf51cca021696a44d5925071790915560108054909116738d3554b86430b28410bc69b8f8c456b58c4c83fb17905560006011819055601255600854620001289060ff16600a62000952565b62000136906161a86200096a565b6014556008546200014c9060ff16600a62000952565b6200015a9061c3506200096a565b601555600854620001709060ff16600a62000952565b6200017e906161a86200096a565b6016553480156200018e57600080fd5b50600680546200019e90620006e2565b80601f0160208091040260200160405190810160405280929190818152602001828054620001cc90620006e2565b80156200021d5780601f10620001f1576101008083540402835291602001916200021d565b820191906000526020600020905b815481529060010190602001808311620001ff57829003601f168201915b5050505050600780546200023190620006e2565b80601f01602080910402602001604051908101604052809291908181526020018280546200025f90620006e2565b8015620002b05780601f106200028457610100808354040283529160200191620002b0565b820191906000526020600020905b8154815290600101906020018083116200029257829003601f168201915b50505050508160039081620002c6919062000771565b506004620002d5828262000771565b505050620002f2620002ec620005b060201b60201c565b620005b4565b600854620003219033906200030c9060ff16600a62000952565b6009546200031b91906200096a565b62000606565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000379573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039f919062000984565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000413919062000984565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000461573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000487919062000984565b6001600160a01b0390811660a05290811660808190526000908152601360205260408082208054600160ff1991821681179092557f971f1eaf8b8924ab79f78b216d16537289f998dff81dd5216c68991b250309df805482168317905533845282842080548216831790557fade9a23c1453fc6b5facc9ddd9570fbab2efa2abdc76ad1abfe2b4f65829fedc8054821683179055600f548516845282842080548216831790557f3848c7fa3b63fe3362ad7e06753f351c216a9637fcc5cffb6cc796aeb519811780548216831790556010549094168352908220805484168217905573e34b3a84b2da63e7cb857affdd809433089a4e559091527ff969a957ba096be3ac030860541176cb437a37a15e8f0f91eeb9e555bc720e768054909216179055620009c5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620006615760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620006759190620009af565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006f757607f821691505b6020821081036200071857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200076c57600081815260208120601f850160051c81016020861015620007475750805b601f850160051c820191505b81811015620007685782815560010162000753565b5050505b505050565b81516001600160401b038111156200078d576200078d620006cc565b620007a5816200079e8454620006e2565b846200071e565b602080601f831160018114620007dd5760008415620007c45750858301515b600019600386901b1c1916600185901b17855562000768565b600085815260208120601f198616915b828110156200080e57888601518255948401946001909101908401620007ed565b50858210156200082d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620008945781600019048211156200087857620008786200083d565b808516156200088657918102915b93841c939080029062000858565b509250929050565b600082620008ad575060016200094c565b81620008bc575060006200094c565b8160018114620008d55760028114620008e05762000900565b60019150506200094c565b60ff841115620008f457620008f46200083d565b50506001821b6200094c565b5060208310610133831016604e8410600b841016171562000925575081810a6200094c565b62000931838362000853565b80600019048211156200094857620009486200083d565b0290505b92915050565b60006200096360ff8416836200089c565b9392505050565b80820281158282048414176200094c576200094c6200083d565b6000602082840312156200099757600080fd5b81516001600160a01b03811681146200096357600080fd5b808201808211156200094c576200094c6200083d565b60805160a0516118e962000a2a6000396000818161035501528181610afb01528181610b3601528181610b800152610e090152600081816102580152818161116b0152818161122401528181611253015281816113e8015261140f01526118e96000f3fe6080604052600436106101bb5760003560e01c806381bfdcca116100ec578063b115e4df1161008a578063dd62ed3e11610064578063dd62ed3e146104f9578063eb84aa0714610519578063f2fde38b14610539578063f345bd851461055957600080fd5b8063b115e4df14610499578063bb85c6d1146104b9578063bd8d8211146104d957600080fd5b806395d89b41116100c657806395d89b411461042e578063a457c2d714610443578063a9059cbb14610463578063aa4bde281461048357600080fd5b806381bfdcca146103da5780638c0b5e22146103fa5780638da5cb5b1461041057600080fd5b8063313ce5671161015957806349bd5a5e1161013357806349bd5a5e14610343578063527ffabd1461037757806370a082311461038d578063715018a6146103c357600080fd5b8063313ce567146102e7578063395093511461030357806344e9fca31461032357600080fd5b80631694505e116101955780631694505e1461024657806318160ddd1461029257806323b872dd146102a75780632598cdb2146102c757600080fd5b806306fdde03146101c7578063095ea7b3146101f25780630e6d37c81461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc61056f565b6040516101e991906114f2565b60405180910390f35b3480156101fe57600080fd5b5061021261020d366004611555565b610601565b60405190151581526020016101e9565b34801561022e57600080fd5b50610238600b5481565b6040519081526020016101e9565b34801561025257600080fd5b5061027a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101e9565b34801561029e57600080fd5b50600254610238565b3480156102b357600080fd5b506102126102c2366004611581565b61061b565b3480156102d357600080fd5b50600f5461027a906001600160a01b031681565b3480156102f357600080fd5b50604051600981526020016101e9565b34801561030f57600080fd5b5061021261031e366004611555565b61063f565b34801561032f57600080fd5b5061021261033e3660046115c2565b610661565b34801561034f57600080fd5b5061027a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561038357600080fd5b50610238600c5481565b34801561039957600080fd5b506102386103a83660046115db565b6001600160a01b031660009081526020819052604090205490565b3480156103cf57600080fd5b506103d8610674565b005b3480156103e657600080fd5b506102126103f53660046115c2565b610688565b34801561040657600080fd5b50610238600d5481565b34801561041c57600080fd5b506005546001600160a01b031661027a565b34801561043a57600080fd5b506101dc61069b565b34801561044f57600080fd5b5061021261045e366004611555565b6106aa565b34801561046f57600080fd5b5061021261047e366004611555565b61072a565b34801561048f57600080fd5b50610238600e5481565b3480156104a557600080fd5b5060105461027a906001600160a01b031681565b3480156104c557600080fd5b506102126104d43660046115db565b610738565b3480156104e557600080fd5b506102126104f43660046115db565b610767565b34801561050557600080fd5b506102386105143660046115ff565b610796565b34801561052557600080fd5b50610212610534366004611638565b6107c1565b34801561054557600080fd5b506103d86105543660046115db565b610858565b34801561056557600080fd5b50610238600a5481565b60606003805461057e90611664565b80601f01602080910402602001604051908101604052809291908181526020018280546105aa90611664565b80156105f75780601f106105cc576101008083540402835291602001916105f7565b820191906000526020600020905b8154815290600101906020018083116105da57829003601f168201915b5050505050905090565b60003361060f8185856108d1565b60019150505b92915050565b6000336106298582856109f5565b610634858585610a6f565b506001949350505050565b60003361060f8185856106528383610796565b61065c91906116b4565b6108d1565b600061066b610fbd565b50600d55600190565b61067c610fbd565b6106866000611017565b565b6000610692610fbd565b50600e55600190565b60606004805461057e90611664565b600033816106b88286610796565b90508381101561071d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61063482868684036108d1565b60003361060f818585610a6f565b6000610742610fbd565b50600f80546001600160a01b0383166001600160a01b03199091161790556001919050565b6000610771610fbd565b50601080546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006107cb610fbd565b6064826107d885876116b4565b6107e291906116b4565b11156108465760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b6064820152608401610714565b50600a92909255600c55600b55600190565b610860610fbd565b6001600160a01b0381166108c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610714565b6108ce81611017565b50565b6001600160a01b0383166109335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610714565b6001600160a01b0382166109945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610714565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a018484610796565b90506000198114610a695781811015610a5c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610714565b610a6984848484036108d1565b50505050565b6001600160a01b038316610a955760405162461bcd60e51b8152600401610714906116c7565b6001600160a01b038216610abb5760405162461bcd60e51b81526004016107149061170c565b80610adb846001600160a01b031660009081526020819052604090205490565b1015610af95760405162461bcd60e51b81526004016107149061174f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610b6a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610b79575060175460ff16155b15610fad577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610d44576000601254601154610bde306001600160a01b031660009081526020819052604090205490565b610be89190611795565b610bf29190611795565b90506014548110610c0857610c08601454611069565b60155460115410610ca557610c1e601554611107565b60155460116000828254610c329190611795565b9091555050600f546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610ca35760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610714565b505b60165460125410610d4257610cbb601654611107565b60165460126000828254610ccf9190611795565b90915550506010546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610d405760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610714565b505b505b6001600160a01b03831660009081526013602052604081205460ff1680610d8357506001600160a01b03831660009081526013602052604090205460ff165b15610d8f575080610fa2565b600d54821115610e075760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610714565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603610ed357600e546001600160a01b038416600090815260208190526040902054610e6690846116b4565b1115610ed35760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610714565b60006064600c5484610ee591906117a8565b610eef91906117bf565b905060006064600b5485610f0391906117a8565b610f0d91906117bf565b905060006064600a5486610f2191906117a8565b610f2b91906117bf565b905081610f3882856116b4565b610f4291906116b4565b610f4c9086611795565b93508260116000828254610f6091906116b4565b925050819055508160126000828254610f7991906116b4565b90915550610f9e9050873083610f8f86886116b4565b610f9991906116b4565b6112e9565b5050505b610a698484836112e9565b610fb88383836112e9565b505050565b6005546001600160a01b031633146106865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610714565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6017805460ff1916600117905560006110836002836117bf565b905060006110918284611795565b90504761109d83611107565b60006110a98247611795565b90506110b583826113d5565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506017805460ff19169055505050565b6017805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611149576111496117e1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111eb91906117f7565b816001815181106111fe576111fe6117e1565b60200260200101906001600160a01b031690816001600160a01b031681525050611249307f0000000000000000000000000000000000000000000000000000000000000000846108d1565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac94783600084306112894261012c6116b4565b6040518663ffffffff1660e01b81526004016112a9959493929190611814565b600060405180830381600087803b1580156112c357600080fd5b505af11580156112d7573d6000803e3d6000fd5b50506017805460ff1916905550505050565b6001600160a01b03831661130f5760405162461bcd60e51b8152600401610714906116c7565b6001600160a01b0382166113355760405162461bcd60e51b81526004016107149061170c565b6001600160a01b0383166000908152602081905260409020548181101561136e5760405162461bcd60e51b81526004016107149061174f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6017805460ff1916600117905561140d307f0000000000000000000000000000000000000000000000000000000000000000846108d1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806114546005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156114bc573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114e19190611885565b50506017805460ff19169055505050565b600060208083528351808285015260005b8181101561151f57858101830151858201604001528201611503565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108ce57600080fd5b6000806040838503121561156857600080fd5b823561157381611540565b946020939093013593505050565b60008060006060848603121561159657600080fd5b83356115a181611540565b925060208401356115b181611540565b929592945050506040919091013590565b6000602082840312156115d457600080fd5b5035919050565b6000602082840312156115ed57600080fd5b81356115f881611540565b9392505050565b6000806040838503121561161257600080fd5b823561161d81611540565b9150602083013561162d81611540565b809150509250929050565b60008060006060848603121561164d57600080fd5b505081359360208301359350604090920135919050565b600181811c9082168061167857607f821691505b60208210810361169857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106155761061561169e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b818103818111156106155761061561169e565b80820281158282048414176106155761061561169e565b6000826117dc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561180957600080fd5b81516115f881611540565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118645784516001600160a01b03168352938301939183019160010161183f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561189a57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122019dcb727c5e4fe757b2aa8becd4fafbf89f91b06a8e6fdd4c6165045d0f93cad64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806381bfdcca116100ec578063b115e4df1161008a578063dd62ed3e11610064578063dd62ed3e146104f9578063eb84aa0714610519578063f2fde38b14610539578063f345bd851461055957600080fd5b8063b115e4df14610499578063bb85c6d1146104b9578063bd8d8211146104d957600080fd5b806395d89b41116100c657806395d89b411461042e578063a457c2d714610443578063a9059cbb14610463578063aa4bde281461048357600080fd5b806381bfdcca146103da5780638c0b5e22146103fa5780638da5cb5b1461041057600080fd5b8063313ce5671161015957806349bd5a5e1161013357806349bd5a5e14610343578063527ffabd1461037757806370a082311461038d578063715018a6146103c357600080fd5b8063313ce567146102e7578063395093511461030357806344e9fca31461032357600080fd5b80631694505e116101955780631694505e1461024657806318160ddd1461029257806323b872dd146102a75780632598cdb2146102c757600080fd5b806306fdde03146101c7578063095ea7b3146101f25780630e6d37c81461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc61056f565b6040516101e991906114f2565b60405180910390f35b3480156101fe57600080fd5b5061021261020d366004611555565b610601565b60405190151581526020016101e9565b34801561022e57600080fd5b50610238600b5481565b6040519081526020016101e9565b34801561025257600080fd5b5061027a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101e9565b34801561029e57600080fd5b50600254610238565b3480156102b357600080fd5b506102126102c2366004611581565b61061b565b3480156102d357600080fd5b50600f5461027a906001600160a01b031681565b3480156102f357600080fd5b50604051600981526020016101e9565b34801561030f57600080fd5b5061021261031e366004611555565b61063f565b34801561032f57600080fd5b5061021261033e3660046115c2565b610661565b34801561034f57600080fd5b5061027a7f0000000000000000000000009db6f0d0ad40c6cb5105f17a8797edfac86cfcd281565b34801561038357600080fd5b50610238600c5481565b34801561039957600080fd5b506102386103a83660046115db565b6001600160a01b031660009081526020819052604090205490565b3480156103cf57600080fd5b506103d8610674565b005b3480156103e657600080fd5b506102126103f53660046115c2565b610688565b34801561040657600080fd5b50610238600d5481565b34801561041c57600080fd5b506005546001600160a01b031661027a565b34801561043a57600080fd5b506101dc61069b565b34801561044f57600080fd5b5061021261045e366004611555565b6106aa565b34801561046f57600080fd5b5061021261047e366004611555565b61072a565b34801561048f57600080fd5b50610238600e5481565b3480156104a557600080fd5b5060105461027a906001600160a01b031681565b3480156104c557600080fd5b506102126104d43660046115db565b610738565b3480156104e557600080fd5b506102126104f43660046115db565b610767565b34801561050557600080fd5b506102386105143660046115ff565b610796565b34801561052557600080fd5b50610212610534366004611638565b6107c1565b34801561054557600080fd5b506103d86105543660046115db565b610858565b34801561056557600080fd5b50610238600a5481565b60606003805461057e90611664565b80601f01602080910402602001604051908101604052809291908181526020018280546105aa90611664565b80156105f75780601f106105cc576101008083540402835291602001916105f7565b820191906000526020600020905b8154815290600101906020018083116105da57829003601f168201915b5050505050905090565b60003361060f8185856108d1565b60019150505b92915050565b6000336106298582856109f5565b610634858585610a6f565b506001949350505050565b60003361060f8185856106528383610796565b61065c91906116b4565b6108d1565b600061066b610fbd565b50600d55600190565b61067c610fbd565b6106866000611017565b565b6000610692610fbd565b50600e55600190565b60606004805461057e90611664565b600033816106b88286610796565b90508381101561071d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61063482868684036108d1565b60003361060f818585610a6f565b6000610742610fbd565b50600f80546001600160a01b0383166001600160a01b03199091161790556001919050565b6000610771610fbd565b50601080546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006107cb610fbd565b6064826107d885876116b4565b6107e291906116b4565b11156108465760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b6064820152608401610714565b50600a92909255600c55600b55600190565b610860610fbd565b6001600160a01b0381166108c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610714565b6108ce81611017565b50565b6001600160a01b0383166109335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610714565b6001600160a01b0382166109945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610714565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a018484610796565b90506000198114610a695781811015610a5c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610714565b610a6984848484036108d1565b50505050565b6001600160a01b038316610a955760405162461bcd60e51b8152600401610714906116c7565b6001600160a01b038216610abb5760405162461bcd60e51b81526004016107149061170c565b80610adb846001600160a01b031660009081526020819052604090205490565b1015610af95760405162461bcd60e51b81526004016107149061174f565b7f0000000000000000000000009db6f0d0ad40c6cb5105f17a8797edfac86cfcd26001600160a01b0316836001600160a01b03161480610b6a57507f0000000000000000000000009db6f0d0ad40c6cb5105f17a8797edfac86cfcd26001600160a01b0316826001600160a01b0316145b8015610b79575060175460ff16155b15610fad577f0000000000000000000000009db6f0d0ad40c6cb5105f17a8797edfac86cfcd26001600160a01b0316836001600160a01b031614610d44576000601254601154610bde306001600160a01b031660009081526020819052604090205490565b610be89190611795565b610bf29190611795565b90506014548110610c0857610c08601454611069565b60155460115410610ca557610c1e601554611107565b60155460116000828254610c329190611795565b9091555050600f546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610ca35760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610714565b505b60165460125410610d4257610cbb601654611107565b60165460126000828254610ccf9190611795565b90915550506010546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610d405760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610714565b505b505b6001600160a01b03831660009081526013602052604081205460ff1680610d8357506001600160a01b03831660009081526013602052604090205460ff165b15610d8f575080610fa2565b600d54821115610e075760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610714565b7f0000000000000000000000009db6f0d0ad40c6cb5105f17a8797edfac86cfcd26001600160a01b0316846001600160a01b031603610ed357600e546001600160a01b038416600090815260208190526040902054610e6690846116b4565b1115610ed35760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610714565b60006064600c5484610ee591906117a8565b610eef91906117bf565b905060006064600b5485610f0391906117a8565b610f0d91906117bf565b905060006064600a5486610f2191906117a8565b610f2b91906117bf565b905081610f3882856116b4565b610f4291906116b4565b610f4c9086611795565b93508260116000828254610f6091906116b4565b925050819055508160126000828254610f7991906116b4565b90915550610f9e9050873083610f8f86886116b4565b610f9991906116b4565b6112e9565b5050505b610a698484836112e9565b610fb88383836112e9565b505050565b6005546001600160a01b031633146106865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610714565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6017805460ff1916600117905560006110836002836117bf565b905060006110918284611795565b90504761109d83611107565b60006110a98247611795565b90506110b583826113d5565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506017805460ff19169055505050565b6017805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611149576111496117e1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111eb91906117f7565b816001815181106111fe576111fe6117e1565b60200260200101906001600160a01b031690816001600160a01b031681525050611249307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846108d1565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac94783600084306112894261012c6116b4565b6040518663ffffffff1660e01b81526004016112a9959493929190611814565b600060405180830381600087803b1580156112c357600080fd5b505af11580156112d7573d6000803e3d6000fd5b50506017805460ff1916905550505050565b6001600160a01b03831661130f5760405162461bcd60e51b8152600401610714906116c7565b6001600160a01b0382166113355760405162461bcd60e51b81526004016107149061170c565b6001600160a01b0383166000908152602081905260409020548181101561136e5760405162461bcd60e51b81526004016107149061174f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6017805460ff1916600117905561140d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846108d1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806114546005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156114bc573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114e19190611885565b50506017805460ff19169055505050565b600060208083528351808285015260005b8181101561151f57858101830151858201604001528201611503565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108ce57600080fd5b6000806040838503121561156857600080fd5b823561157381611540565b946020939093013593505050565b60008060006060848603121561159657600080fd5b83356115a181611540565b925060208401356115b181611540565b929592945050506040919091013590565b6000602082840312156115d457600080fd5b5035919050565b6000602082840312156115ed57600080fd5b81356115f881611540565b9392505050565b6000806040838503121561161257600080fd5b823561161d81611540565b9150602083013561162d81611540565b809150509250929050565b60008060006060848603121561164d57600080fd5b505081359360208301359350604090920135919050565b600181811c9082168061167857607f821691505b60208210810361169857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106155761061561169e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b818103818111156106155761061561169e565b80820281158282048414176106155761061561169e565b6000826117dc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561180957600080fd5b81516115f881611540565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118645784516001600160a01b03168352938301939183019160010161183f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561189a57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122019dcb727c5e4fe757b2aa8becd4fafbf89f91b06a8e6fdd4c6165045d0f93cad64736f6c63430008110033

Deployed Bytecode Sourcemap

31812:8637:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21531:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23805:244;;;;;;;;;;-1:-1:-1;23805:244:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;23805:244:0;1023:187:1;32136:28:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;32136:28:0;1215:177:1;32581:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;32581:51:0;1397:229:1;22669:110:0;;;;;;;;;;-1:-1:-1;22759:12:0;;22669:110;;24629:297;;;;;;;;;;-1:-1:-1;24629:297:0;;;;;:::i;:::-;;:::i;32336:75::-;;;;;;;;;;-1:-1:-1;32336:75:0;;;;-1:-1:-1;;;;;32336:75:0;;;22512:92;;;;;;;;;;-1:-1:-1;22512:92:0;;22595:1;2442:36:1;;2430:2;2415:18;22512:92:0;2300:184:1;26345:272:0;;;;;;;;;;-1:-1:-1;26345:272:0;;;;;:::i;:::-;;:::i;40012:191::-;;;;;;;;;;-1:-1:-1;40012:191:0;;;;;:::i;:::-;;:::i;32639:38::-;;;;;;;;;;;;;;;32171:36;;;;;;;;;;;;;;;;21696:177;;;;;;;;;;-1:-1:-1;21696:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;21847:18:0;21815:7;21847:18;;;;;;;;;;;;21696:177;18790:103;;;;;;;;;;;;;:::i;:::-;;40211:198;;;;;;;;;;-1:-1:-1;40211:198:0;;;;;:::i;:::-;;:::i;32214:52::-;;;;;;;;;;;;;;;;18142:87;;;;;;;;;;-1:-1:-1;18215:6:0;;-1:-1:-1;;;;;18215:6:0;18142:87;;21355:106;;;;;;;;;;;;;:::i;25429:507::-;;;;;;;;;;-1:-1:-1;25429:507:0;;;;;:::i;:::-;;:::i;23249:236::-;;;;;;;;;;-1:-1:-1;23249:236:0;;;;;:::i;:::-;;:::i;32273:56::-;;;;;;;;;;;;;;;;32418:69;;;;;;;;;;-1:-1:-1;32418:69:0;;;;-1:-1:-1;;;;;32418:69:0;;;39192:182;;;;;;;;;;-1:-1:-1;39192:182:0;;;;;:::i;:::-;;:::i;39386:170::-;;;;;;;;;;-1:-1:-1;39386:170:0;;;;;:::i;:::-;;:::i;22842:201::-;;;;;;;;;;-1:-1:-1;22842:201:0;;;;;:::i;:::-;;:::i;39564:440::-;;;;;;;;;;-1:-1:-1;39564:440:0;;;;;:::i;:::-;;:::i;19048:238::-;;;;;;;;;;-1:-1:-1;19048:238:0;;;;;:::i;:::-;;:::i;32095:34::-;;;;;;;;;;;;;;;;21531:102;21587:13;21620:5;21613:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21531:102;:::o;23805:244::-;23926:4;17015:10;23987:32;17015:10;24003:7;24012:6;23987:8;:32::i;:::-;24037:4;24030:11;;;23805:244;;;;;:::o;24629:297::-;24762:4;17015:10;24820:38;24836:4;17015:10;24851:6;24820:15;:38::i;:::-;24869:27;24879:4;24885:2;24889:6;24869:9;:27::i;:::-;-1:-1:-1;24914:4:0;;24629:297;-1:-1:-1;;;;24629:297:0:o;26345:272::-;26462:4;17015:10;26523:64;17015:10;26539:7;26576:10;26548:25;17015:10;26539:7;26548:9;:25::i;:::-;:38;;;;:::i;:::-;26523:8;:64::i;40012:191::-;40123:4;18028:13;:11;:13::i;:::-;-1:-1:-1;40145:11:0::1;:26:::0;40191:4:::1;::::0;40012:191::o;18790:103::-;18028:13;:11;:13::i;:::-;18855:30:::1;18882:1;18855:18;:30::i;:::-;18790:103::o:0;40211:198::-;40321:4;18028:13;:11;:13::i;:::-;-1:-1:-1;40343:15:0::1;:34:::0;40397:4:::1;::::0;40211:198::o;21355:106::-;21413:13;21446:7;21439:14;;;;;:::i;25429:507::-;25551:4;17015:10;25551:4;25639:25;17015:10;25656:7;25639:9;:25::i;:::-;25612:52;;25717:15;25697:16;:35;;25675:122;;;;-1:-1:-1;;;25675:122:0;;4489:2:1;25675:122:0;;;4471:21:1;4528:2;4508:18;;;4501:30;4567:34;4547:18;;;4540:62;-1:-1:-1;;;4618:18:1;;;4611:35;4663:19;;25675:122:0;;;;;;;;;25833:60;25842:5;25849:7;25877:15;25858:16;:34;25833:8;:60::i;23249:236::-;23366:4;17015:10;23427:28;17015:10;23444:2;23448:6;23427:9;:28::i;39192:182::-;39295:4;18028:13;:11;:13::i;:::-;-1:-1:-1;39317:15:0::1;:27:::0;;-1:-1:-1;;;;;39317:27:0;::::1;-1:-1:-1::0;;;;;;39317:27:0;;::::1;;::::0;;;39192:182;;;:::o;39386:170::-;39483:4;18028:13;:11;:13::i;:::-;-1:-1:-1;39505:9:0::1;:21:::0;;-1:-1:-1;;;;;39505:21:0;::::1;-1:-1:-1::0;;;;;;39505:21:0;;::::1;;::::0;;;39386:170;;;:::o;22842:201::-;-1:-1:-1;;;;;23008:18:0;;;22976:7;23008:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22842:201::o;39564:440::-;39710:4;18028:13;:11;:13::i;:::-;39794:3:::1;39779:10:::0;39741:35:::1;39760:16:::0;39741;:35:::1;:::i;:::-;:48;;;;:::i;:::-;39740:57;;39732:115;;;::::0;-1:-1:-1;;;39732:115:0;;4895:2:1;39732:115:0::1;::::0;::::1;4877:21:1::0;4934:2;4914:18;;;4907:30;4973:34;4953:18;;;4946:62;-1:-1:-1;;;5024:18:1;;;5017:43;5077:19;;39732:115:0::1;4693:409:1::0;39732:115:0::1;-1:-1:-1::0;39858:15:0::1;:34:::0;;;;39903:15:::1;:34:::0;39948:9:::1;:24:::0;-1:-1:-1;;39564:440:0:o;19048:238::-;18028:13;:11;:13::i;:::-;-1:-1:-1;;;;;19151:22:0;::::1;19129:110;;;::::0;-1:-1:-1;;;19129:110:0;;5309:2:1;19129:110:0::1;::::0;::::1;5291:21:1::0;5348:2;5328:18;;;5321:30;5387:34;5367:18;;;5360:62;-1:-1:-1;;;5438:18:1;;;5431:36;5484:19;;19129:110:0::1;5107:402:1::0;19129:110:0::1;19250:28;19269:8;19250:18;:28::i;:::-;19048:238:::0;:::o;28652:380::-;-1:-1:-1;;;;;28788:19:0;;28780:68;;;;-1:-1:-1;;;28780:68:0;;5716:2:1;28780:68:0;;;5698:21:1;5755:2;5735:18;;;5728:30;5794:34;5774:18;;;5767:62;-1:-1:-1;;;5845:18:1;;;5838:34;5889:19;;28780:68:0;5514:400:1;28780:68:0;-1:-1:-1;;;;;28867:21:0;;28859:68;;;;-1:-1:-1;;;28859:68:0;;6121:2:1;28859:68:0;;;6103:21:1;6160:2;6140:18;;;6133:30;6199:34;6179:18;;;6172:62;-1:-1:-1;;;6250:18:1;;;6243:32;6292:19;;28859:68:0;5919:398:1;28859:68:0;-1:-1:-1;;;;;28940:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28992:32;;1361:25:1;;;28992:32:0;;1334:18:1;28992:32:0;;;;;;;28652:380;;;:::o;29323:502::-;29458:24;29485:25;29495:5;29502:7;29485:9;:25::i;:::-;29458:52;;-1:-1:-1;;29525:16:0;:37;29521:297;;29625:6;29605:16;:26;;29579:117;;;;-1:-1:-1;;;29579:117:0;;6524:2:1;29579:117:0;;;6506:21:1;6563:2;6543:18;;;6536:30;6602:31;6582:18;;;6575:59;6651:18;;29579:117:0;6322:353:1;29579:117:0;29740:51;29749:5;29756:7;29784:6;29765:16;:25;29740:8;:51::i;:::-;29447:378;29323:502;;;:::o;35108:2684::-;-1:-1:-1;;;;;35206:18:0;;35198:68;;;;-1:-1:-1;;;35198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35285:16:0;;35277:64;;;;-1:-1:-1;;;35277:64:0;;;;;;;:::i;:::-;35379:6;35360:15;35370:4;-1:-1:-1;;;;;21847:18:0;21815:7;21847:18;;;;;;;;;;;;21696:177;35360:15;:25;;35352:76;;;;-1:-1:-1;;;35352:76:0;;;;;;;:::i;:::-;35454:13;-1:-1:-1;;;;;35446:21:0;:4;-1:-1:-1;;;;;35446:21:0;;:44;;;;35477:13;-1:-1:-1;;;;;35471:19:0;:2;-1:-1:-1;;;;;35471:19:0;;35446:44;35445:67;;;;-1:-1:-1;35496:16:0;;;;35495:17;35445:67;35441:2344;;;35541:13;-1:-1:-1;;;;;35533:21:0;:4;-1:-1:-1;;;;;35533:21:0;;35529:1090;;35575:32;35658:12;;35637:18;;35610:24;35628:4;-1:-1:-1;;;;;21847:18:0;21815:7;21847:18;;;;;;;;;;;;21696:177;35610:24;:45;;;;:::i;:::-;:60;;;;:::i;:::-;35575:95;;35721:30;;35693:24;:58;35689:154;;35776:47;35792:30;;35776:15;:47::i;:::-;35904:30;;35881:18;;35880:54;35876:372;;35959:49;35977:30;;35959:17;:49::i;:::-;36053:30;;36031:18;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;;36126:15:0;;36118:52;;36106:9;;-1:-1:-1;;;;;36126:15:0;;36148:21;36118:52;;;;;36106:9;36118:52;36106:9;36118:52;36148:21;36126:15;36118:52;;;;;;;36106:64;;36201:4;36193:35;;;;-1:-1:-1;;;36193:35:0;;8232:2:1;36193:35:0;;;8214:21:1;8271:2;8251:18;;;8244:30;-1:-1:-1;;;8290:18:1;;;8283:48;8348:18;;36193:35:0;8030:342:1;36193:35:0;35936:312;35876:372;36290:24;;36273:12;;36272:42;36268:336;;36339:43;36357:24;;36339:17;:43::i;:::-;36421:24;;36405:12;;:40;;;;;;;:::i;:::-;;;;-1:-1:-1;;36488:9:0;;36480:46;;36468:9;;-1:-1:-1;;;;;36488:9:0;;36504:21;36480:46;;;;;36468:9;36480:46;36468:9;36480:46;36504:21;36488:9;36480:46;;;;;;;36468:58;;36557:4;36549:35;;;;-1:-1:-1;;;36549:35:0;;8232:2:1;36549:35:0;;;8214:21:1;8271:2;8251:18;;;8244:30;-1:-1:-1;;;8290:18:1;;;8283:48;8348:18;;36549:35:0;8030:342:1;36549:35:0;36316:288;36268:336;35556:1063;35529:1090;-1:-1:-1;;;;;36676:24:0;;36635:22;36676:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;36704:22:0;;;;;;:18;:22;;;;;;;;36676:50;36672:970;;;-1:-1:-1;36764:6:0;36672:970;;;36843:11;;36833:6;:21;;36825:91;;;;-1:-1:-1;;;36825:91:0;;8579:2:1;36825:91:0;;;8561:21:1;8618:2;8598:18;;;8591:30;8657:34;8637:18;;;8630:62;8728:27;8708:18;;;8701:55;8773:19;;36825:91:0;8377:421:1;36825:91:0;36946:13;-1:-1:-1;;;;;36938:21:0;:4;-1:-1:-1;;;;;36938:21:0;;36935:178;;37019:15;;-1:-1:-1;;;;;21847:18:0;;21815:7;21847:18;;;;;;;;;;;36992:22;;:6;:22;:::i;:::-;36991:43;;36983:110;;;;-1:-1:-1;;;36983:110:0;;9005:2:1;36983:110:0;;;8987:21:1;9044:2;9024:18;;;9017:30;9083:34;9063:18;;;9056:62;-1:-1:-1;;;9134:18:1;;;9127:52;9196:19;;36983:110:0;8803:418:1;36983:110:0;37133:22;37188:3;37169:15;;37160:6;:24;;;;:::i;:::-;37159:32;;;;:::i;:::-;37133:59;;37211:16;37254:3;37241:9;;37232:6;:18;;;;:::i;:::-;37231:26;;;;:::i;:::-;37211:47;;37277:22;37332:3;37313:15;;37304:6;:24;;;;:::i;:::-;37303:32;;;;:::i;:::-;37277:59;-1:-1:-1;37416:8:0;37382:31;37277:59;37382:14;:31;:::i;:::-;:42;;;;:::i;:::-;37372:53;;:6;:53;:::i;:::-;37355:70;;37466:14;37444:18;;:36;;;;;;;:::i;:::-;;;;;;;;37515:8;37499:12;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;37544:82:0;;-1:-1:-1;37560:4:0;37574;37610:14;37582:25;37599:8;37582:14;:25;:::i;:::-;:42;;;;:::i;:::-;37544:15;:82::i;:::-;36806:836;;;36672:970;37656:41;37672:4;37678:2;37682:14;37656:15;:41::i;35441:2344::-;37740:33;37756:4;37762:2;37766:6;37740:15;:33::i;:::-;35108:2684;;;:::o;18307:132::-;18215:6;;-1:-1:-1;;;;;18215:6:0;17015:10;18371:23;18363:68;;;;-1:-1:-1;;;18363:68:0;;9823:2:1;18363:68:0;;;9805:21:1;;;9842:18;;;9835:30;9901:34;9881:18;;;9874:62;9953:18;;18363:68:0;9621:356:1;19446:191:0;19539:6;;;-1:-1:-1;;;;;19556:17:0;;;-1:-1:-1;;;;;;19556:17:0;;;;;;;19589:40;;19539:6;;;19556:17;19539:6;;19589:40;;19520:16;;19589:40;19509:128;19446:191;:::o;37800:474::-;33252:16;:23;;-1:-1:-1;;33252:23:0;33271:4;33252:23;;;:16;37902:24:::1;37925:1;37902:20:::0;:24:::1;:::i;:::-;37886:41:::0;-1:-1:-1;37938:17:0::1;37959:27;37886:41:::0;37959:20;:27:::1;:::i;:::-;37938:49:::0;-1:-1:-1;38025:21:0::1;38059:23;38077:4:::0;38059:17:::1;:23::i;:::-;38095:18;38117:38;38141:14:::0;38117:21:::1;:38;:::i;:::-;38095:61;;38169:36;38183:9;38194:10;38169:13;:36::i;:::-;38223:43;::::0;;10184:25:1;;;10240:2;10225:18;;10218:34;;;10268:18;;;10261:34;;;38223:43:0::1;::::0;10172:2:1;10157:18;38223:43:0::1;;;;;;;-1:-1:-1::0;;33298:16:0;:24;;-1:-1:-1;;33298:24:0;;;-1:-1:-1;;;37800:474:0:o;38282:496::-;33252:16;:23;;-1:-1:-1;;33252:23:0;33271:4;33252:23;;;38385:16:::1;::::0;;38399:1:::1;38385:16:::0;;;;;::::1;::::0;;-1:-1:-1;;38385:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;38385:16:0::1;38361:40;;38430:4;38412;38417:1;38412:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;38412:23:0::1;;;-1:-1:-1::0;;;;;38412:23:0::1;;;::::0;::::1;38456:15;-1:-1:-1::0;;;;;38456:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38446:4;38451:1;38446:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;38446:32:0::1;;;-1:-1:-1::0;;;;;38446:32:0::1;;;::::0;::::1;38491:62;38508:4;38523:15;38541:11;38491:8;:62::i;:::-;-1:-1:-1::0;;;;;38566:15:0::1;:66;;38647:11:::0;38673:1:::1;38689:4:::0;38716::::1;38737:21;:15;38755:3;38737:21;:::i;:::-;38566:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;33298:16:0;:24;;-1:-1:-1;;33298:24:0;;;-1:-1:-1;;;;38282:496:0:o;29833:776::-;-1:-1:-1;;;;;29964:18:0;;29956:68;;;;-1:-1:-1;;;29956:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30043:16:0;;30035:64;;;;-1:-1:-1;;;30035:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30134:15:0;;30112:19;30134:15;;;;;;;;;;;30182:21;;;;30160:109;;;;-1:-1:-1;;;30160:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30305:15:0;;;:9;:15;;;;;;;;;;;30323:20;;;30305:38;;30523:13;;;;;;;;;;:23;;;;;;30575:26;;1361:25:1;;;30523:13:0;;30575:26;;1334:18:1;30575:26:0;;;;;;;29945:664;29833:776;;;:::o;38786:398::-;33252:16;:23;;-1:-1:-1;;33252:23:0;33271:4;33252:23;;;38903:62:::1;38920:4;38935:15;38953:11:::0;38903:8:::1;:62::i;:::-;38978:15;-1:-1:-1::0;;;;;38978:31:0::1;;39017:9;39050:4;39070:11;39096:1;39112::::0;39128:7:::1;18215:6:::0;;-1:-1:-1;;;;;18215:6:0;;18142:87;39128:7:::1;38978:198;::::0;::::1;::::0;;;-1:-1:-1;;;;;;38978:198:0;;;-1:-1:-1;;;;;12170:15:1;;;38978:198:0::1;::::0;::::1;12152:34:1::0;12202:18;;;12195:34;;;;12245:18;;;12238:34;;;;12288:18;;;12281:34;12352:15;;;12331:19;;;12324:44;39150:15:0::1;12384:19:1::0;;;12377:35;12086:19;;38978:198:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;33298:16:0;:24;;-1:-1:-1;;33298:24:0;;;-1:-1:-1;;;38786:398:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:180::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;-1:-1:-1;2640:23:1;;2489:180;-1:-1:-1;2489:180:1:o;2674:247::-;2733:6;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2841:9;2828:23;2860:31;2885:5;2860:31;:::i;:::-;2910:5;2674:247;-1:-1:-1;;;2674:247:1:o;2926:388::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;3110:9;3097:23;3129:31;3154:5;3129:31;:::i;:::-;3179:5;-1:-1:-1;3236:2:1;3221:18;;3208:32;3249:33;3208:32;3249:33;:::i;:::-;3301:7;3291:17;;;2926:388;;;;;:::o;3319:316::-;3396:6;3404;3412;3465:2;3453:9;3444:7;3440:23;3436:32;3433:52;;;3481:1;3478;3471:12;3433:52;-1:-1:-1;;3504:23:1;;;3574:2;3559:18;;3546:32;;-1:-1:-1;3625:2:1;3610:18;;;3597:32;;3319:316;-1:-1:-1;3319:316:1:o;3640:380::-;3719:1;3715:12;;;;3762;;;3783:61;;3837:4;3829:6;3825:17;3815:27;;3783:61;3890:2;3882:6;3879:14;3859:18;3856:38;3853:161;;3936:10;3931:3;3927:20;3924:1;3917:31;3971:4;3968:1;3961:15;3999:4;3996:1;3989:15;3853:161;;3640:380;;;:::o;4025:127::-;4086:10;4081:3;4077:20;4074:1;4067:31;4117:4;4114:1;4107:15;4141:4;4138:1;4131:15;4157:125;4222:9;;;4243:10;;;4240:36;;;4256:18;;:::i;6680:401::-;6882:2;6864:21;;;6921:2;6901:18;;;6894:30;6960:34;6955:2;6940:18;;6933:62;-1:-1:-1;;;7026:2:1;7011:18;;7004:35;7071:3;7056:19;;6680:401::o;7086:399::-;7288:2;7270:21;;;7327:2;7307:18;;;7300:30;7366:34;7361:2;7346:18;;7339:62;-1:-1:-1;;;7432:2:1;7417:18;;7410:33;7475:3;7460:19;;7086:399::o;7490:402::-;7692:2;7674:21;;;7731:2;7711:18;;;7704:30;7770:34;7765:2;7750:18;;7743:62;-1:-1:-1;;;7836:2:1;7821:18;;7814:36;7882:3;7867:19;;7490:402::o;7897:128::-;7964:9;;;7985:11;;;7982:37;;;7999:18;;:::i;9226:168::-;9299:9;;;9330;;9347:15;;;9341:22;;9327:37;9317:71;;9368:18;;:::i;9399:217::-;9439:1;9465;9455:132;;9509:10;9504:3;9500:20;9497:1;9490:31;9544:4;9541:1;9534:15;9572:4;9569:1;9562:15;9455:132;-1:-1:-1;9601:9:1;;9399:217::o;10438:127::-;10499:10;10494:3;10490:20;10487:1;10480:31;10530:4;10527:1;10520:15;10554:4;10551:1;10544:15;10570:251;10640:6;10693:2;10681:9;10672:7;10668:23;10664:32;10661:52;;;10709:1;10706;10699:12;10661:52;10741:9;10735:16;10760:31;10785:5;10760:31;:::i;10826:980::-;11088:4;11136:3;11125:9;11121:19;11167:6;11156:9;11149:25;11193:2;11231:6;11226:2;11215:9;11211:18;11204:34;11274:3;11269:2;11258:9;11254:18;11247:31;11298:6;11333;11327:13;11364:6;11356;11349:22;11402:3;11391:9;11387:19;11380:26;;11441:2;11433:6;11429:15;11415:29;;11462:1;11472:195;11486:6;11483:1;11480:13;11472:195;;;11551:13;;-1:-1:-1;;;;;11547:39:1;11535:52;;11642:15;;;;11607:12;;;;11583:1;11501:9;11472:195;;;-1:-1:-1;;;;;;;11723:32:1;;;;11718:2;11703:18;;11696:60;-1:-1:-1;;;11787:3:1;11772:19;11765:35;11684:3;10826:980;-1:-1:-1;;;10826:980:1:o;12423:306::-;12511:6;12519;12527;12580:2;12568:9;12559:7;12555:23;12551:32;12548:52;;;12596:1;12593;12586:12;12548:52;12625:9;12619:16;12609:26;;12675:2;12664:9;12660:18;12654:25;12644:35;;12719:2;12708:9;12704:18;12698:25;12688:35;;12423:306;;;;;:::o

Swarm Source

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