ETH Price: $2,633.17 (+1.64%)

Token

Shiba House (HOSHI)
 

Overview

Max Total Supply

1,000,000,000 HOSHI

Holders

87

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,914,039.134924586283991856 HOSHI

Value
$0.00
0x755fED54Bc1486B1457c4A564286360c6115e15C
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:
HoshiToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-09
*/

// Website: https://www.hoshitoken.com/
// Telegram: https://t.me/HouseShiba
// Twitter: https://twitter.com/Hoshitoken/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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


    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

    function WETH() external pure returns (address);

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    bool private swapping;

    address public hoshiWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyHoshiFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellHoshiFee;
    uint256 public sellLiquidityFee;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event hoshiWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Shiba House", "HOSHI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyHoshiFee = 15;
        uint256 _buyLiquidityFee = 15;

        uint256 _sellHoshiFee = 15;
        uint256 _sellLiquidityFee = 15;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet

        buyHoshiFee = _buyHoshiFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyHoshiFee + buyLiquidityFee;

        sellHoshiFee = _sellHoshiFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellHoshiFee + sellLiquidityFee;

        hoshiWallet = address(0xB054e4587919a168307571D4eb1F9799889cDf38); // set as $HOSHI wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

    function updateSellFees(
        uint256 _hoshiFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellHoshiFee = _hoshiFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellHoshiFee + sellLiquidityFee;
        require(sellTotalFees <= 15, "Must keep fees at 15% or less");
    }

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

    function updateHoshiWallet(address newHoshiWallet)
        external
        onlyOwner
    {
        emit hoshiWalletUpdated(newHoshiWallet, hoshiWallet);
        hoshiWallet = newHoshiWallet;
    }


    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForETH(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"hoshiWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyHoshiFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hoshiWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellHoshiFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hoshiFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newHoshiWallet","type":"address"}],"name":"updateHoshiWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hoshiFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b506040518060400160405280600b81526020016a536869626120486f75736560a81b81525060405180604001604052806005815260200164484f53484960d81b81525081600390816200009a9190620006b7565b506004620000a98282620006b7565b505050620000c6620000c0620003af60201b60201c565b620003b3565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e881600162000405565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000133573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000159919062000783565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cd919062000783565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200021b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000241919062000783565b6001600160a01b031660a08190526200025c90600162000405565b600f8080806b033b2e3c9fd0803ce800000060646200027d826002620007cb565b620002899190620007eb565b60085560646200029b826002620007cb565b620002a79190620007eb565b600a55612710620002ba826003620007cb565b620002c69190620007eb565b600955600d859055600e849055620002df84866200080e565b600c5560108390556011829055620002f882846200080e565b600f55600780546001600160a01b03191673b054e4587919a168307571d4eb1f9799889cdf3817905562000340620003386005546001600160a01b031690565b60016200047f565b6200034d3060016200047f565b6200035c61dead60016200047f565b6200037b620003736005546001600160a01b031690565b600162000405565b6200038830600162000405565b6200039761dead600162000405565b620003a3338262000529565b50505050505062000824565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004545760405162461bcd60e51b815260206004820181905260248201526000805160206200282783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004ca5760405162461bcd60e51b815260206004820181905260248201526000805160206200282783398151915260448201526064016200044b565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005815760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200044b565b80600260008282546200059591906200080e565b90915550506001600160a01b03821660009081526020819052604081208054839290620005c49084906200080e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200063e57607f821691505b6020821081036200065f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200060e57600081815260208120601f850160051c810160208610156200068e5750805b601f850160051c820191505b81811015620006af578281556001016200069a565b505050505050565b81516001600160401b03811115620006d357620006d362000613565b620006eb81620006e4845462000629565b8462000665565b602080601f8311600181146200072357600084156200070a5750858301515b600019600386901b1c1916600185901b178555620006af565b600085815260208120601f198616915b82811015620007545788860151825594840194600190910190840162000733565b5085821015620007735787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200079657600080fd5b81516001600160a01b0381168114620007ae57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007e557620007e5620007b5565b92915050565b6000826200080957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007e557620007e5620007b5565b60805160a051611fa5620008826000396000818161043d015281816112fb0152818161150c0152818161161c015281816116c5015261177f01526000818161034001528181611a2e01528181611ae70152611b260152611fa56000f3fe6080604052600436106102555760003560e01c80637571336a11610139578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c18bc19514610685578063c3986651146106a5578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb578063a9059cbb14610610578063ab3b9fb714610630578063bbc0c74214610646578063c02466681461066557600080fd5b80637571336a1461056857806389a30271146105885780638a8c523c146105a85780638da5cb5b146105bd578063924de9b7146105db57600080fd5b806327c8f835116101d257806366ca9b831161019657806366ca9b83146104b25780636a486a8e146104d25780636ddd1713146104e857806370a0823114610508578063715018a61461053e578063751039fc1461055357600080fd5b806327c8f835146103f9578063313ce5671461040f57806349bd5a5e1461042b5780634a62bb651461045f5780634fbee1931461047957600080fd5b80631694505e116102195780631694505e1461032e57806318160ddd1461037a578063203e727e146103995780632139b4c5146103b957806323b872dd146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de57806310f5c31e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b9e565b6107c5565b005b34801561028f57600080fd5b50610298610863565b6040516102a59190611bc0565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611c23565b6108f5565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611c4f565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b50610281610329366004611c4f565b61090c565b34801561033a57600080fd5b506103627f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a5565b34801561038657600080fd5b506002545b6040519081526020016102a5565b3480156103a557600080fd5b506102816103b4366004611c6c565b610993565b3480156103c557600080fd5b50600754610362906001600160a01b031681565b3480156103e557600080fd5b506102ce6103f4366004611c85565b610a70565b34801561040557600080fd5b5061036261dead81565b34801561041b57600080fd5b50604051601281526020016102a5565b34801561043757600080fd5b506103627f000000000000000000000000000000000000000000000000000000000000000081565b34801561046b57600080fd5b50600b546102ce9060ff1681565b34801561048557600080fd5b506102ce610494366004611c4f565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104be57600080fd5b506102816104cd366004611b9e565b610b1a565b3480156104de57600080fd5b5061038b600f5481565b3480156104f457600080fd5b50600b546102ce9062010000900460ff1681565b34801561051457600080fd5b5061038b610523366004611c4f565b6001600160a01b031660009081526020819052604090205490565b34801561054a57600080fd5b50610281610bad565b34801561055f57600080fd5b506102ce610be3565b34801561057457600080fd5b50610281610583366004611cd6565b610c20565b34801561059457600080fd5b50600654610362906001600160a01b031681565b3480156105b457600080fd5b50610281610c75565b3480156105c957600080fd5b506005546001600160a01b0316610362565b3480156105e757600080fd5b506102816105f6366004611d0b565b610cb2565b34801561060757600080fd5b50610298610cf8565b34801561061c57600080fd5b506102ce61062b366004611c23565b610d07565b34801561063c57600080fd5b5061038b600d5481565b34801561065257600080fd5b50600b546102ce90610100900460ff1681565b34801561067157600080fd5b50610281610680366004611cd6565b610d14565b34801561069157600080fd5b506102816106a0366004611c6c565b610d9d565b3480156106b157600080fd5b5061038b60105481565b3480156106c757600080fd5b5061038b60085481565b3480156106dd57600080fd5b506102ce6106ec366004611c6c565b610e6e565b3480156106fd57600080fd5b5061038b600c5481565b34801561071357600080fd5b5061038b610722366004611d26565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061038b60095481565b34801561076f57600080fd5b5061038b600e5481565b34801561078557600080fd5b50610281610794366004611c4f565b610fc5565b3480156107a557600080fd5b5061038b60115481565b3480156107bb57600080fd5b5061038b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611d5f565b60405180910390fd5b6010829055601181905561080c8183611daa565b600f818155101561085f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c65737300000060448201526064016107ef565b5050565b60606003805461087290611dbd565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90611dbd565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b6000610902338484611060565b5060015b92915050565b6005546001600160a01b031633146109365760405162461bcd60e51b81526004016107ef90611d5f565b6007546040516001600160a01b03918216918316907f632d72c5c93a2e90a1a088bb3c8fa40d81db0dd87fd3fd23b0e221b60e8ccbd190600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109bd5760405162461bcd60e51b81526004016107ef90611d5f565b670de0b6b3a76400006103e86109d260025490565b6109dd906001611df7565b6109e79190611e0e565b6109f19190611e0e565b811015610a585760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a6a81670de0b6b3a7640000611df7565b60085550565b6000610a7d848484611184565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b025760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610b0f8533858403611060565b506001949350505050565b6005546001600160a01b03163314610b445760405162461bcd60e51b81526004016107ef90611d5f565b600d829055600e819055610b588183611daa565b600c819055600f101561085f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c65737300000060448201526064016107ef565b6005546001600160a01b03163314610bd75760405162461bcd60e51b81526004016107ef90611d5f565b610be160006117c7565b565b6005546000906001600160a01b03163314610c105760405162461bcd60e51b81526004016107ef90611d5f565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c4a5760405162461bcd60e51b81526004016107ef90611d5f565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c9f5760405162461bcd60e51b81526004016107ef90611d5f565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cdc5760405162461bcd60e51b81526004016107ef90611d5f565b600b8054911515620100000262ff000019909216919091179055565b60606004805461087290611dbd565b6000610902338484611184565b6005546001600160a01b03163314610d3e5760405162461bcd60e51b81526004016107ef90611d5f565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc75760405162461bcd60e51b81526004016107ef90611d5f565b670de0b6b3a76400006103e8610ddc60025490565b610de7906005611df7565b610df19190611e0e565b610dfb9190611e0e565b811015610e565760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610e6881670de0b6b3a7640000611df7565b600a5550565b6005546000906001600160a01b03163314610e9b5760405162461bcd60e51b81526004016107ef90611d5f565b620186a0610ea860025490565b610eb3906001611df7565b610ebd9190611e0e565b821015610f2a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610f3660025490565b610f41906005611df7565b610f4b9190611e0e565b821115610fb75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610fef5760405162461bcd60e51b81526004016107ef90611d5f565b6001600160a01b0381166110545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b61105d816117c7565b50565b6001600160a01b0383166110c25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166111235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111aa5760405162461bcd60e51b81526004016107ef90611e30565b6001600160a01b0382166111d05760405162461bcd60e51b81526004016107ef90611e75565b806000036111e9576111e483836000611819565b505050565b600b5460ff16156114c1576005546001600160a01b0384811691161480159061122057506005546001600160a01b03838116911614155b801561123457506001600160a01b03821615155b801561124b57506001600160a01b03821661dead14155b80156112615750600654600160a01b900460ff16155b156114c157600b54610100900460ff166112f9576001600160a01b03831660009081526012602052604090205460ff16806112b457506001600160a01b03821660009081526012602052604090205460ff165b6112f95760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561135357506001600160a01b03821660009081526013602052604090205460ff16155b15611437576008548111156113c85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113ee9083611daa565b11156114325760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b6114c1565b6001600160a01b03821660009081526013602052604090205460ff166114c157600a546001600160a01b03831660009081526020819052604090205461147d9083611daa565b11156114c15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b30600090815260208190526040902054600954811080159081906114ed5750600b5462010000900460ff165b80156115035750600654600160a01b900460ff16155b801561154057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561156557506001600160a01b03851660009081526012602052604090205460ff16155b801561158a57506001600160a01b03841660009081526012602052604090205460ff16155b156115b8576006805460ff60a01b1916600160a01b1790556115aa61196e565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061160657506001600160a01b03851660009081526012602052604090205460ff165b1561160f575060005b600080600083156117b1577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561165d57506000600f54115b156116c357611682606461167c600f548a6119b890919063ffffffff16565b906119cb565b9250600f54601154846116959190611df7565b61169f9190611e0e565b9150600f54601054846116b29190611df7565b6116bc9190611e0e565b9050611762565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561170657506000600c54115b1561176257611725606461167c600c548a6119b890919063ffffffff16565b9250600c54600e54846117389190611df7565b6117429190611e0e565b9150600c54600d54846117559190611df7565b61175f9190611e0e565b90505b821561177357611773893085611819565b81156117a4576117a4307f000000000000000000000000000000000000000000000000000000000000000084611819565b6117ae8388611eb8565b96505b6117bc898989611819565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661183f5760405162461bcd60e51b81526004016107ef90611e30565b6001600160a01b0382166118655760405162461bcd60e51b81526004016107ef90611e75565b6001600160a01b038316600090815260208190526040902054818110156118dd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611914908490611daa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161196091815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119895750565b600954611997906014611df7565b8111156119af576009546119ac906014611df7565b90505b61105d816119d7565b60006119c48284611df7565b9392505050565b60006119c48284611e0e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0c57611a0c611ecb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aae9190611ee1565b81600181518110611ac157611ac1611ecb565b60200260200101906001600160a01b031690816001600160a01b031681525050611b0c307f000000000000000000000000000000000000000000000000000000000000000084611060565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611b68928792600092889291909116904290600401611efe565b600060405180830381600087803b158015611b8257600080fd5b505af1158015611b96573d6000803e3d6000fd5b505050505050565b60008060408385031215611bb157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bed57858101830151858201604001528201611bd1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461105d57600080fd5b60008060408385031215611c3657600080fd5b8235611c4181611c0e565b946020939093013593505050565b600060208284031215611c6157600080fd5b81356119c481611c0e565b600060208284031215611c7e57600080fd5b5035919050565b600080600060608486031215611c9a57600080fd5b8335611ca581611c0e565b92506020840135611cb581611c0e565b929592945050506040919091013590565b80358015158114610fc057600080fd5b60008060408385031215611ce957600080fd5b8235611cf481611c0e565b9150611d0260208401611cc6565b90509250929050565b600060208284031215611d1d57600080fd5b6119c482611cc6565b60008060408385031215611d3957600080fd5b8235611d4481611c0e565b91506020830135611d5481611c0e565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090657610906611d94565b600181811c90821680611dd157607f821691505b602082108103611df157634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761090657610906611d94565b600082611e2b57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561090657610906611d94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ef357600080fd5b81516119c481611c0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f4e5784516001600160a01b031683529383019391830191600101611f29565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206970e37194cb355008e1971743eba55e4f40567503e2f202a9f3bdd312eb653264736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102555760003560e01c80637571336a11610139578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c18bc19514610685578063c3986651146106a5578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb578063a9059cbb14610610578063ab3b9fb714610630578063bbc0c74214610646578063c02466681461066557600080fd5b80637571336a1461056857806389a30271146105885780638a8c523c146105a85780638da5cb5b146105bd578063924de9b7146105db57600080fd5b806327c8f835116101d257806366ca9b831161019657806366ca9b83146104b25780636a486a8e146104d25780636ddd1713146104e857806370a0823114610508578063715018a61461053e578063751039fc1461055357600080fd5b806327c8f835146103f9578063313ce5671461040f57806349bd5a5e1461042b5780634a62bb651461045f5780634fbee1931461047957600080fd5b80631694505e116102195780631694505e1461032e57806318160ddd1461037a578063203e727e146103995780632139b4c5146103b957806323b872dd146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de57806310f5c31e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b9e565b6107c5565b005b34801561028f57600080fd5b50610298610863565b6040516102a59190611bc0565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611c23565b6108f5565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611c4f565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b50610281610329366004611c4f565b61090c565b34801561033a57600080fd5b506103627f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a5565b34801561038657600080fd5b506002545b6040519081526020016102a5565b3480156103a557600080fd5b506102816103b4366004611c6c565b610993565b3480156103c557600080fd5b50600754610362906001600160a01b031681565b3480156103e557600080fd5b506102ce6103f4366004611c85565b610a70565b34801561040557600080fd5b5061036261dead81565b34801561041b57600080fd5b50604051601281526020016102a5565b34801561043757600080fd5b506103627f0000000000000000000000009e58cd431e007b3677ab0e757d6e74df85af0cda81565b34801561046b57600080fd5b50600b546102ce9060ff1681565b34801561048557600080fd5b506102ce610494366004611c4f565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104be57600080fd5b506102816104cd366004611b9e565b610b1a565b3480156104de57600080fd5b5061038b600f5481565b3480156104f457600080fd5b50600b546102ce9062010000900460ff1681565b34801561051457600080fd5b5061038b610523366004611c4f565b6001600160a01b031660009081526020819052604090205490565b34801561054a57600080fd5b50610281610bad565b34801561055f57600080fd5b506102ce610be3565b34801561057457600080fd5b50610281610583366004611cd6565b610c20565b34801561059457600080fd5b50600654610362906001600160a01b031681565b3480156105b457600080fd5b50610281610c75565b3480156105c957600080fd5b506005546001600160a01b0316610362565b3480156105e757600080fd5b506102816105f6366004611d0b565b610cb2565b34801561060757600080fd5b50610298610cf8565b34801561061c57600080fd5b506102ce61062b366004611c23565b610d07565b34801561063c57600080fd5b5061038b600d5481565b34801561065257600080fd5b50600b546102ce90610100900460ff1681565b34801561067157600080fd5b50610281610680366004611cd6565b610d14565b34801561069157600080fd5b506102816106a0366004611c6c565b610d9d565b3480156106b157600080fd5b5061038b60105481565b3480156106c757600080fd5b5061038b60085481565b3480156106dd57600080fd5b506102ce6106ec366004611c6c565b610e6e565b3480156106fd57600080fd5b5061038b600c5481565b34801561071357600080fd5b5061038b610722366004611d26565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061038b60095481565b34801561076f57600080fd5b5061038b600e5481565b34801561078557600080fd5b50610281610794366004611c4f565b610fc5565b3480156107a557600080fd5b5061038b60115481565b3480156107bb57600080fd5b5061038b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611d5f565b60405180910390fd5b6010829055601181905561080c8183611daa565b600f818155101561085f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c65737300000060448201526064016107ef565b5050565b60606003805461087290611dbd565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90611dbd565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b6000610902338484611060565b5060015b92915050565b6005546001600160a01b031633146109365760405162461bcd60e51b81526004016107ef90611d5f565b6007546040516001600160a01b03918216918316907f632d72c5c93a2e90a1a088bb3c8fa40d81db0dd87fd3fd23b0e221b60e8ccbd190600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109bd5760405162461bcd60e51b81526004016107ef90611d5f565b670de0b6b3a76400006103e86109d260025490565b6109dd906001611df7565b6109e79190611e0e565b6109f19190611e0e565b811015610a585760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a6a81670de0b6b3a7640000611df7565b60085550565b6000610a7d848484611184565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b025760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610b0f8533858403611060565b506001949350505050565b6005546001600160a01b03163314610b445760405162461bcd60e51b81526004016107ef90611d5f565b600d829055600e819055610b588183611daa565b600c819055600f101561085f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c65737300000060448201526064016107ef565b6005546001600160a01b03163314610bd75760405162461bcd60e51b81526004016107ef90611d5f565b610be160006117c7565b565b6005546000906001600160a01b03163314610c105760405162461bcd60e51b81526004016107ef90611d5f565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c4a5760405162461bcd60e51b81526004016107ef90611d5f565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c9f5760405162461bcd60e51b81526004016107ef90611d5f565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cdc5760405162461bcd60e51b81526004016107ef90611d5f565b600b8054911515620100000262ff000019909216919091179055565b60606004805461087290611dbd565b6000610902338484611184565b6005546001600160a01b03163314610d3e5760405162461bcd60e51b81526004016107ef90611d5f565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc75760405162461bcd60e51b81526004016107ef90611d5f565b670de0b6b3a76400006103e8610ddc60025490565b610de7906005611df7565b610df19190611e0e565b610dfb9190611e0e565b811015610e565760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610e6881670de0b6b3a7640000611df7565b600a5550565b6005546000906001600160a01b03163314610e9b5760405162461bcd60e51b81526004016107ef90611d5f565b620186a0610ea860025490565b610eb3906001611df7565b610ebd9190611e0e565b821015610f2a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610f3660025490565b610f41906005611df7565b610f4b9190611e0e565b821115610fb75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610fef5760405162461bcd60e51b81526004016107ef90611d5f565b6001600160a01b0381166110545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b61105d816117c7565b50565b6001600160a01b0383166110c25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166111235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111aa5760405162461bcd60e51b81526004016107ef90611e30565b6001600160a01b0382166111d05760405162461bcd60e51b81526004016107ef90611e75565b806000036111e9576111e483836000611819565b505050565b600b5460ff16156114c1576005546001600160a01b0384811691161480159061122057506005546001600160a01b03838116911614155b801561123457506001600160a01b03821615155b801561124b57506001600160a01b03821661dead14155b80156112615750600654600160a01b900460ff16155b156114c157600b54610100900460ff166112f9576001600160a01b03831660009081526012602052604090205460ff16806112b457506001600160a01b03821660009081526012602052604090205460ff165b6112f95760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f0000000000000000000000009e58cd431e007b3677ab0e757d6e74df85af0cda6001600160a01b0316836001600160a01b031614801561135357506001600160a01b03821660009081526013602052604090205460ff16155b15611437576008548111156113c85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113ee9083611daa565b11156114325760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b6114c1565b6001600160a01b03821660009081526013602052604090205460ff166114c157600a546001600160a01b03831660009081526020819052604090205461147d9083611daa565b11156114c15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b30600090815260208190526040902054600954811080159081906114ed5750600b5462010000900460ff165b80156115035750600654600160a01b900460ff16155b801561154057507f0000000000000000000000009e58cd431e007b3677ab0e757d6e74df85af0cda6001600160a01b0316846001600160a01b0316145b801561156557506001600160a01b03851660009081526012602052604090205460ff16155b801561158a57506001600160a01b03841660009081526012602052604090205460ff16155b156115b8576006805460ff60a01b1916600160a01b1790556115aa61196e565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061160657506001600160a01b03851660009081526012602052604090205460ff165b1561160f575060005b600080600083156117b1577f0000000000000000000000009e58cd431e007b3677ab0e757d6e74df85af0cda6001600160a01b0316886001600160a01b031614801561165d57506000600f54115b156116c357611682606461167c600f548a6119b890919063ffffffff16565b906119cb565b9250600f54601154846116959190611df7565b61169f9190611e0e565b9150600f54601054846116b29190611df7565b6116bc9190611e0e565b9050611762565b7f0000000000000000000000009e58cd431e007b3677ab0e757d6e74df85af0cda6001600160a01b0316896001600160a01b031614801561170657506000600c54115b1561176257611725606461167c600c548a6119b890919063ffffffff16565b9250600c54600e54846117389190611df7565b6117429190611e0e565b9150600c54600d54846117559190611df7565b61175f9190611e0e565b90505b821561177357611773893085611819565b81156117a4576117a4307f0000000000000000000000009e58cd431e007b3677ab0e757d6e74df85af0cda84611819565b6117ae8388611eb8565b96505b6117bc898989611819565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661183f5760405162461bcd60e51b81526004016107ef90611e30565b6001600160a01b0382166118655760405162461bcd60e51b81526004016107ef90611e75565b6001600160a01b038316600090815260208190526040902054818110156118dd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611914908490611daa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161196091815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119895750565b600954611997906014611df7565b8111156119af576009546119ac906014611df7565b90505b61105d816119d7565b60006119c48284611df7565b9392505050565b60006119c48284611e0e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0c57611a0c611ecb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aae9190611ee1565b81600181518110611ac157611ac1611ecb565b60200260200101906001600160a01b031690816001600160a01b031681525050611b0c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611060565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611b68928792600092889291909116904290600401611efe565b600060405180830381600087803b158015611b8257600080fd5b505af1158015611b96573d6000803e3d6000fd5b505050505050565b60008060408385031215611bb157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bed57858101830151858201604001528201611bd1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461105d57600080fd5b60008060408385031215611c3657600080fd5b8235611c4181611c0e565b946020939093013593505050565b600060208284031215611c6157600080fd5b81356119c481611c0e565b600060208284031215611c7e57600080fd5b5035919050565b600080600060608486031215611c9a57600080fd5b8335611ca581611c0e565b92506020840135611cb581611c0e565b929592945050506040919091013590565b80358015158114610fc057600080fd5b60008060408385031215611ce957600080fd5b8235611cf481611c0e565b9150611d0260208401611cc6565b90509250929050565b600060208284031215611d1d57600080fd5b6119c482611cc6565b60008060408385031215611d3957600080fd5b8235611d4481611c0e565b91506020830135611d5481611c0e565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090657610906611d94565b600181811c90821680611dd157607f821691505b602082108103611df157634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761090657610906611d94565b600082611e2b57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561090657610906611d94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ef357600080fd5b81516119c481611c0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f4e5784516001600160a01b031683529383019391830191600101611f29565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206970e37194cb355008e1971743eba55e4f40567503e2f202a9f3bdd312eb653264736f6c63430008130033

Deployed Bytecode Sourcemap

24857:10877:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30224:326;;;;;;;;;;-1:-1:-1;30224:326:0;;;;;:::i;:::-;;:::i;:::-;;9657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11824:169;;;;;;;;;;-1:-1:-1;11824:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;11824:169:0;1276:187:1;25828:63:0;;;;;;;;;;-1:-1:-1;25828:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30748:203;;;;;;;;;;-1:-1:-1;30748:203:0;;;;;:::i;:::-;;:::i;24937:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1910:32:1;;;1892:51;;1880:2;1865:18;24937:51:0;1720:229:1;10777:108:0;;;;;;;;;;-1:-1:-1;10865:12:0;;10777:108;;;2100:25:1;;;2088:2;2073:18;10777:108:0;1954:177:1;28979:275:0;;;;;;;;;;-1:-1:-1;28979:275:0;;;;;:::i;:::-;;:::i;25203:26::-;;;;;;;;;;-1:-1:-1;25203:26:0;;;;-1:-1:-1;;;;;25203:26:0;;;12475:492;;;;;;;;;;-1:-1:-1;12475:492:0;;;;;:::i;:::-;;:::i;25040:53::-;;;;;;;;;;;;25086:6;25040:53;;10619:93;;;;;;;;;;-1:-1:-1;10619:93:0;;10702:2;3132:36:1;;3120:2;3105:18;10619:93:0;2990:184:1;24995:38:0;;;;;;;;;;;;;;;25353:33;;;;;;;;;;-1:-1:-1;25353:33:0;;;;;;;;30961:126;;;;;;;;;;-1:-1:-1;30961:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31051:28:0;31027:4;31051:28;;;:19;:28;;;;;;;;;30961:126;29897:319;;;;;;;;;;-1:-1:-1;29897:319:0;;;;;:::i;:::-;;:::i;25579:28::-;;;;;;;;;;;;;;;;25433:31;;;;;;;;;;-1:-1:-1;25433:31:0;;;;;;;;;;;10948:127;;;;;;;;;;-1:-1:-1;10948:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11049:18:0;11022:7;11049:18;;;;;;;;;;;;10948:127;2892:103;;;;;;;;;;;;;:::i;28283:121::-;;;;;;;;;;;;;:::i;29526:167::-;;;;;;;;;;-1:-1:-1;29526:167:0;;;;;:::i;:::-;;:::i;25100:64::-;;;;;;;;;;-1:-1:-1;25100:64:0;;;;-1:-1:-1;;;;;25100:64:0;;;28119:112;;;;;;;;;;;;;:::i;2241:87::-;;;;;;;;;;-1:-1:-1;2314:6:0;;-1:-1:-1;;;;;2314:6:0;2241:87;;29789:100;;;;;;;;;;-1:-1:-1;29789:100:0;;;;;:::i;:::-;;:::i;9876:104::-;;;;;;;;;;;;;:::i;11288:175::-;;;;;;;;;;-1:-1:-1;11288:175:0;;;;;:::i;:::-;;:::i;25507:26::-;;;;;;;;;;;;;;;;25393:33;;;;;;;;;;-1:-1:-1;25393:33:0;;;;;;;;;;;30558:182;;;;;;;;;;-1:-1:-1;30558:182:0;;;;;:::i;:::-;;:::i;29262:256::-;;;;;;;;;;-1:-1:-1;29262:256:0;;;;;:::i;:::-;;:::i;25614:27::-;;;;;;;;;;;;;;;;25238:35;;;;;;;;;;;;;;;;28474:497;;;;;;;;;;-1:-1:-1;28474:497:0;;;;;:::i;:::-;;:::i;25473:27::-;;;;;;;;;;;;;;;;11526:151;;;;;;;;;;-1:-1:-1;11526:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11642:18:0;;;11615:7;11642:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11526:151;25280:33;;;;;;;;;;;;;;;;25540:30;;;;;;;;;;;;;;;;3150:201;;;;;;;;;;-1:-1:-1;3150:201:0;;;;;:::i;:::-;;:::i;25648:31::-;;;;;;;;;;;;;;;;25320:24;;;;;;;;;;;;;;;;30224:326;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;;;;;;;;;30345:12:::1;:24:::0;;;30380:16:::1;:32:::0;;;30439:31:::1;30399:13:::0;30360:9;30439:31:::1;:::i;:::-;30423:13;:47:::0;;;-1:-1:-1;30489:19:0::1;30481:61;;;::::0;-1:-1:-1;;;30481:61:0;;5067:2:1;30481:61:0::1;::::0;::::1;5049:21:1::0;5106:2;5086:18;;;5079:30;5145:31;5125:18;;;5118:59;5194:18;;30481:61:0::1;4865:353:1::0;30481:61:0::1;30224:326:::0;;:::o;9657:100::-;9711:13;9744:5;9737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9657:100;:::o;11824:169::-;11907:4;11924:39;994:10;11947:7;11956:6;11924:8;:39::i;:::-;-1:-1:-1;11981:4:0;11824:169;;;;;:::o;30748:203::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;30892:11:::1;::::0;30857:47:::1;::::0;-1:-1:-1;;;;;30892:11:0;;::::1;::::0;30857:47;::::1;::::0;::::1;::::0;30892:11:::1;::::0;30857:47:::1;30915:11;:28:::0;;-1:-1:-1;;;;;;30915:28:0::1;-1:-1:-1::0;;;;;30915:28:0;;;::::1;::::0;;;::::1;::::0;;30748:203::o;28979:275::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;29116:4:::1;29108;29087:13;10865:12:::0;;;10777:108;29087:13:::1;:17;::::0;29103:1:::1;29087:17;:::i;:::-;29086:26;;;;:::i;:::-;29085:35;;;;:::i;:::-;29075:6;:45;;29053:142;;;::::0;-1:-1:-1;;;29053:142:0;;6205:2:1;29053:142:0::1;::::0;::::1;6187:21:1::0;6244:2;6224:18;;;6217:30;6283:34;6263:18;;;6256:62;-1:-1:-1;;;6334:18:1;;;6327:45;6389:19;;29053:142:0::1;6003:411:1::0;29053:142:0::1;29229:17;:6:::0;29239::::1;29229:17;:::i;:::-;29206:20;:40:::0;-1:-1:-1;28979:275:0:o;12475:492::-;12615:4;12632:36;12642:6;12650:9;12661:6;12632:9;:36::i;:::-;-1:-1:-1;;;;;12708:19:0;;12681:24;12708:19;;;:11;:19;;;;;;;;994:10;12708:33;;;;;;;;12760:26;;;;12752:79;;;;-1:-1:-1;;;12752:79:0;;6621:2:1;12752:79:0;;;6603:21:1;6660:2;6640:18;;;6633:30;6699:34;6679:18;;;6672:62;-1:-1:-1;;;6750:18:1;;;6743:38;6798:19;;12752:79:0;6419:404:1;12752:79:0;12867:57;12876:6;994:10;12917:6;12898:16;:25;12867:8;:57::i;:::-;-1:-1:-1;12955:4:0;;12475:492;-1:-1:-1;;;;12475:492:0:o;29897:319::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;30017:11:::1;:23:::0;;;30051:15:::1;:31:::0;;;30108:29:::1;30069:13:::0;30031:9;30108:29:::1;:::i;:::-;30093:12;:44:::0;;;30172:2:::1;-1:-1:-1::0;30156:18:0::1;30148:60;;;::::0;-1:-1:-1;;;30148:60:0;;5067:2:1;30148:60:0::1;::::0;::::1;5049:21:1::0;5106:2;5086:18;;;5079:30;5145:31;5125:18;;;5118:59;5194:18;;30148:60:0::1;4865:353:1::0;2892:103:0;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;2957:30:::1;2984:1;2957:18;:30::i;:::-;2892:103::o:0;28283:121::-;2314:6;;28335:4;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;-1:-1:-1;28352:14:0::1;:22:::0;;-1:-1:-1;;28352:22:0::1;::::0;;;28283:121;:::o;29526:167::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29639:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29639:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29526:167::o;28119:112::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;28174:13:::1;:20:::0;;-1:-1:-1;;28205:18:0;;;;;28119:112::o;29789:100::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;29860:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29860:21:0;;::::1;::::0;;;::::1;::::0;;29789:100::o;9876:104::-;9932:13;9965:7;9958:14;;;;;:::i;11288:175::-;11374:4;11391:42;994:10;11415:9;11426:6;11391:9;:42::i;30558:182::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30643:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30643:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30698:34;;1416:41:1;;;30698:34:0::1;::::0;1389:18:1;30698:34:0::1;;;;;;;30558:182:::0;;:::o;29262:256::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;29402:4:::1;29394;29373:13;10865:12:::0;;;10777:108;29373:13:::1;:17;::::0;29389:1:::1;29373:17;:::i;:::-;29372:26;;;;:::i;:::-;29371:35;;;;:::i;:::-;29361:6;:45;;29339:131;;;::::0;-1:-1:-1;;;29339:131:0;;7030:2:1;29339:131:0::1;::::0;::::1;7012:21:1::0;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:34;7203:19;;29339:131:0::1;6828:400:1::0;29339:131:0::1;29493:17;:6:::0;29503::::1;29493:17;:::i;:::-;29481:9;:29:::0;-1:-1:-1;29262:256:0:o;28474:497::-;2314:6;;28582:4;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;28661:6:::1;28640:13;10865:12:::0;;;10777:108;28640:13:::1;:17;::::0;28656:1:::1;28640:17;:::i;:::-;28639:28;;;;:::i;:::-;28626:9;:41;;28604:144;;;::::0;-1:-1:-1;;;28604:144:0;;7435:2:1;28604:144:0::1;::::0;::::1;7417:21:1::0;7474:2;7454:18;;;7447:30;7513:34;7493:18;;;7486:62;-1:-1:-1;;;7564:18:1;;;7557:51;7625:19;;28604:144:0::1;7233:417:1::0;28604:144:0::1;28816:4;28795:13;10865:12:::0;;;10777:108;28795:13:::1;:17;::::0;28811:1:::1;28795:17;:::i;:::-;28794:26;;;;:::i;:::-;28781:9;:39;;28759:141;;;::::0;-1:-1:-1;;;28759:141:0;;7857:2:1;28759:141:0::1;::::0;::::1;7839:21:1::0;7896:2;7876:18;;;7869:30;7935:34;7915:18;;;7908:62;-1:-1:-1;;;7986:18:1;;;7979:50;8046:19;;28759:141:0::1;7655:416:1::0;28759:141:0::1;-1:-1:-1::0;28911:18:0::1;:30:::0;;;28959:4:::1;2532:1;28474:497:::0;;;:::o;3150:201::-;2314:6;;-1:-1:-1;;;;;2314:6:0;994:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3239:22:0;::::1;3231:73;;;::::0;-1:-1:-1;;;3231:73:0;;8278:2:1;3231:73:0::1;::::0;::::1;8260:21:1::0;8317:2;8297:18;;;8290:30;8356:34;8336:18;;;8329:62;-1:-1:-1;;;8407:18:1;;;8400:36;8453:19;;3231:73:0::1;8076:402:1::0;3231:73:0::1;3315:28;3334:8;3315:18;:28::i;:::-;3150:201:::0;:::o;15316:380::-;-1:-1:-1;;;;;15452:19:0;;15444:68;;;;-1:-1:-1;;;15444:68:0;;8685:2:1;15444:68:0;;;8667:21:1;8724:2;8704:18;;;8697:30;8763:34;8743:18;;;8736:62;-1:-1:-1;;;8814:18:1;;;8807:34;8858:19;;15444:68:0;8483:400:1;15444:68:0;-1:-1:-1;;;;;15531:21:0;;15523:68;;;;-1:-1:-1;;;15523:68:0;;9090:2:1;15523:68:0;;;9072:21:1;9129:2;9109:18;;;9102:30;9168:34;9148:18;;;9141:62;-1:-1:-1;;;9219:18:1;;;9212:32;9261:19;;15523:68:0;8888:398:1;15523:68:0;-1:-1:-1;;;;;15604:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15656:32;;2100:25:1;;;15656:32:0;;2073:18:1;15656:32:0;;;;;;;15316:380;;;:::o;31095:3689::-;-1:-1:-1;;;;;31227:18:0;;31219:68;;;;-1:-1:-1;;;31219:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31306:16:0;;31298:64;;;;-1:-1:-1;;;31298:64:0;;;;;;;:::i;:::-;31379:6;31389:1;31379:11;31375:93;;31407:28;31423:4;31429:2;31433:1;31407:15;:28::i;:::-;31095:3689;;;:::o;31375:93::-;31484:14;;;;31480:1430;;;2314:6;;-1:-1:-1;;;;;31537:15:0;;;2314:6;;31537:15;;;;:49;;-1:-1:-1;2314:6:0;;-1:-1:-1;;;;;31573:13:0;;;2314:6;;31573:13;;31537:49;:86;;;;-1:-1:-1;;;;;;31607:16:0;;;;31537:86;:128;;;;-1:-1:-1;;;;;;31644:21:0;;31658:6;31644:21;;31537:128;:158;;;;-1:-1:-1;31687:8:0;;-1:-1:-1;;;31687:8:0;;;;31686:9;31537:158;31515:1384;;;31735:13;;;;;;;31730:223;;-1:-1:-1;;;;;31807:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31836:23:0;;;;;;:19;:23;;;;;;;;31807:52;31773:160;;;;-1:-1:-1;;;31773:160:0;;10303:2:1;31773:160:0;;;10285:21:1;10342:2;10322:18;;;10315:30;-1:-1:-1;;;10361:18:1;;;10354:52;10423:18;;31773:160:0;10101:346:1;31773:160:0;32167:13;-1:-1:-1;;;;;32159:21:0;:4;-1:-1:-1;;;;;32159:21:0;;:82;;;;-1:-1:-1;;;;;;32206:35:0;;;;;;:31;:35;;;;;;;;32205:36;32159:82;32133:751;;;32328:20;;32318:6;:30;;32284:169;;;;-1:-1:-1;;;32284:169:0;;10654:2:1;32284:169:0;;;10636:21:1;10693:2;10673:18;;;10666:30;10732:34;10712:18;;;10705:62;-1:-1:-1;;;10783:18:1;;;10776:51;10844:19;;32284:169:0;10452:417:1;32284:169:0;32536:9;;-1:-1:-1;;;;;11049:18:0;;11022:7;11049:18;;;;;;;;;;;32510:22;;:6;:22;:::i;:::-;:35;;32476:140;;;;-1:-1:-1;;;32476:140:0;;11076:2:1;32476:140:0;;;11058:21:1;11115:2;11095:18;;;11088:30;-1:-1:-1;;;11134:18:1;;;11127:49;11193:18;;32476:140:0;10874:343:1;32476:140:0;32133:751;;;-1:-1:-1;;;;;32664:35:0;;;;;;:31;:35;;;;;;;;32659:225;;32784:9;;-1:-1:-1;;;;;11049:18:0;;11022:7;11049:18;;;;;;;;;;;32758:22;;:6;:22;:::i;:::-;:35;;32724:140;;;;-1:-1:-1;;;32724:140:0;;11076:2:1;32724:140:0;;;11058:21:1;11115:2;11095:18;;;11088:30;-1:-1:-1;;;11134:18:1;;;11127:49;11193:18;;32724:140:0;10874:343:1;32724:140:0;32971:4;32922:28;11049:18;;;;;;;;;;;33029;;33005:42;;;;;;;33078:35;;-1:-1:-1;33102:11:0;;;;;;;33078:35;:61;;;;-1:-1:-1;33131:8:0;;-1:-1:-1;;;33131:8:0;;;;33130:9;33078:61;:97;;;;;33162:13;-1:-1:-1;;;;;33156:19:0;:2;-1:-1:-1;;;;;33156:19:0;;33078:97;:140;;;;-1:-1:-1;;;;;;33193:25:0;;;;;;:19;:25;;;;;;;;33192:26;33078:140;:181;;;;-1:-1:-1;;;;;;33236:23:0;;;;;;:19;:23;;;;;;;;33235:24;33078:181;33060:313;;;33286:8;:15;;-1:-1:-1;;;;33286:15:0;-1:-1:-1;;;33286:15:0;;;33318:10;:8;:10::i;:::-;33345:8;:16;;-1:-1:-1;;;;33345:16:0;;;33060:313;33401:8;;-1:-1:-1;;;;;33511:25:0;;33385:12;33511:25;;;:19;:25;;;;;;33401:8;-1:-1:-1;;;33401:8:0;;;;;33400:9;;33511:25;;:52;;-1:-1:-1;;;;;;33540:23:0;;;;;;:19;:23;;;;;;;;33511:52;33507:100;;;-1:-1:-1;33590:5:0;33507:100;33619:12;33646:26;33687:22;33802:7;33798:933;;;33860:13;-1:-1:-1;;;;;33854:19:0;:2;-1:-1:-1;;;;;33854:19:0;;:40;;;;;33893:1;33877:13;;:17;33854:40;33850:591;;;33922:34;33952:3;33922:25;33933:13;;33922:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33915:41;;34024:13;;34004:16;;33997:4;:23;;;;:::i;:::-;33996:41;;;;:::i;:::-;33975:62;;34097:13;;34081:12;;34074:4;:19;;;;:::i;:::-;34073:37;;;;:::i;:::-;34056:54;;33850:591;;;34180:13;-1:-1:-1;;;;;34172:21:0;:4;-1:-1:-1;;;;;34172:21:0;;:41;;;;;34212:1;34197:12;;:16;34172:41;34168:273;;;34241:33;34270:3;34241:24;34252:12;;34241:6;:10;;:24;;;;:::i;:33::-;34234:40;;34341:12;;34322:15;;34315:4;:22;;;;:::i;:::-;34314:39;;;;:::i;:::-;34293:60;;34413:12;;34398:11;;34391:4;:18;;;;:::i;:::-;34390:35;;;;:::i;:::-;34373:52;;34168:273;34461:7;;34457:90;;34489:42;34505:4;34519;34526;34489:15;:42::i;:::-;34565:22;;34561:128;;34608:65;34632:4;34639:13;34654:18;34608:15;:65::i;:::-;34705:14;34715:4;34705:14;;:::i;:::-;;;33798:933;34743:33;34759:4;34765:2;34769:6;34743:15;:33::i;:::-;31208:3576;;;;;;31095:3689;;;:::o;3511:191::-;3604:6;;;-1:-1:-1;;;;;3621:17:0;;;-1:-1:-1;;;;;;3621:17:0;;;;;;;3654:40;;3604:6;;;3621:17;3604:6;;3654:40;;3585:16;;3654:40;3574:128;3511:191;:::o;13457:733::-;-1:-1:-1;;;;;13597:20:0;;13589:70;;;;-1:-1:-1;;;13589:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13678:23:0;;13670:71;;;;-1:-1:-1;;;13670:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13838:17:0;;13814:21;13838:17;;;;;;;;;;;13874:23;;;;13866:74;;;;-1:-1:-1;;;13866:74:0;;11557:2:1;13866:74:0;;;11539:21:1;11596:2;11576:18;;;11569:30;11635:34;11615:18;;;11608:62;-1:-1:-1;;;11686:18:1;;;11679:36;11732:19;;13866:74:0;11355:402:1;13866:74:0;-1:-1:-1;;;;;13976:17:0;;;:9;:17;;;;;;;;;;;13996:22;;;13976:42;;14040:20;;;;;;;;:30;;14012:6;;13976:9;14040:30;;14012:6;;14040:30;:::i;:::-;;;;;;;;14105:9;-1:-1:-1;;;;;14088:35:0;14097:6;-1:-1:-1;;;;;14088:35:0;;14116:6;14088:35;;;;2100:25:1;;2088:2;2073:18;;1954:177;14088:35:0;;;;;;;;13578:612;13457:733;;;:::o;35390:339::-;35473:4;35429:23;11049:18;;;;;;;;;;;;35494:20;;;35490:59;;35531:7;35390:339::o;35490:59::-;35583:18;;:23;;35604:2;35583:23;:::i;:::-;35565:15;:41;35561:115;;;35641:18;;:23;;35662:2;35641:23;:::i;:::-;35623:41;;35561:115;35688:33;35705:15;35688:16;:33::i;20769:98::-;20827:7;20854:5;20858:1;20854;:5;:::i;:::-;20847:12;20769:98;-1:-1:-1;;;20769:98:0:o;21168:::-;21226:7;21253:5;21257:1;21253;:5;:::i;34792:590::-;34942:16;;;34956:1;34942:16;;;;;;;;34918:21;;34942:16;;;;;;;;;;-1:-1:-1;34942:16:0;34918:40;;34987:4;34969;34974:1;34969:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34969:23:0;;;-1:-1:-1;;;;;34969:23:0;;;;;35013:15;-1:-1:-1;;;;;35013:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35003:4;35008:1;35003:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;35003:32:0;;;-1:-1:-1;;;;;35003:32:0;;;;;35048:62;35065:4;35080:15;35098:11;35048:8;:62::i;:::-;35322:11;;35149:225;;-1:-1:-1;;;35149:225:0;;-1:-1:-1;;;;;35149:15:0;:69;;;;;:225;;35233:11;;35259:1;;35303:4;;35322:11;;;;;35348:15;;35149:225;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34847:535;34792:590;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2136:180::-;2195:6;2248:2;2236:9;2227:7;2223:23;2219:32;2216:52;;;2264:1;2261;2254:12;2216:52;-1:-1:-1;2287:23:1;;2136:180;-1:-1:-1;2136:180:1:o;2529:456::-;2606:6;2614;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2730:9;2717:23;2749:31;2774:5;2749:31;:::i;:::-;2799:5;-1:-1:-1;2856:2:1;2841:18;;2828:32;2869:33;2828:32;2869:33;:::i;:::-;2529:456;;2921:7;;-1:-1:-1;;;2975:2:1;2960:18;;;;2947:32;;2529:456::o;3179:160::-;3244:20;;3300:13;;3293:21;3283:32;;3273:60;;3329:1;3326;3319:12;3344:315;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:180::-;3720:6;3773:2;3761:9;3752:7;3748:23;3744:32;3741:52;;;3789:1;3786;3779:12;3741:52;3812:26;3828:9;3812:26;:::i;3849:388::-;3917:6;3925;3978:2;3966:9;3957:7;3953:23;3949:32;3946:52;;;3994:1;3991;3984:12;3946:52;4033:9;4020:23;4052:31;4077:5;4052:31;:::i;:::-;4102:5;-1:-1:-1;4159:2:1;4144:18;;4131:32;4172:33;4131:32;4172:33;:::i;:::-;4224:7;4214:17;;;3849:388;;;;;:::o;4242:356::-;4444:2;4426:21;;;4463:18;;;4456:30;4522:34;4517:2;4502:18;;4495:62;4589:2;4574:18;;4242:356::o;4603:127::-;4664:10;4659:3;4655:20;4652:1;4645:31;4695:4;4692:1;4685:15;4719:4;4716:1;4709:15;4735:125;4800:9;;;4821:10;;;4818:36;;;4834:18;;:::i;5223:380::-;5302:1;5298:12;;;;5345;;;5366:61;;5420:4;5412:6;5408:17;5398:27;;5366:61;5473:2;5465:6;5462:14;5442:18;5439:38;5436:161;;5519:10;5514:3;5510:20;5507:1;5500:31;5554:4;5551:1;5544:15;5582:4;5579:1;5572:15;5436:161;;5223:380;;;:::o;5608:168::-;5681:9;;;5712;;5729:15;;;5723:22;;5709:37;5699:71;;5750:18;;:::i;5781:217::-;5821:1;5847;5837:132;;5891:10;5886:3;5882:20;5879:1;5872:31;5926:4;5923:1;5916:15;5954:4;5951:1;5944:15;5837:132;-1:-1:-1;5983:9:1;;5781:217::o;9291:401::-;9493:2;9475:21;;;9532:2;9512:18;;;9505:30;9571:34;9566:2;9551:18;;9544:62;-1:-1:-1;;;9637:2:1;9622:18;;9615:35;9682:3;9667:19;;9291:401::o;9697:399::-;9899:2;9881:21;;;9938:2;9918:18;;;9911:30;9977:34;9972:2;9957:18;;9950:62;-1:-1:-1;;;10043:2:1;10028:18;;10021:33;10086:3;10071:19;;9697:399::o;11222:128::-;11289:9;;;11310:11;;;11307:37;;;11324:18;;:::i;11894:127::-;11955:10;11950:3;11946:20;11943:1;11936:31;11986:4;11983:1;11976:15;12010:4;12007:1;12000:15;12026:251;12096:6;12149:2;12137:9;12128:7;12124:23;12120:32;12117:52;;;12165:1;12162;12155:12;12117:52;12197:9;12191:16;12216:31;12241:5;12216:31;:::i;12282:980::-;12544:4;12592:3;12581:9;12577:19;12623:6;12612:9;12605:25;12649:2;12687:6;12682:2;12671:9;12667:18;12660:34;12730:3;12725:2;12714:9;12710:18;12703:31;12754:6;12789;12783:13;12820:6;12812;12805:22;12858:3;12847:9;12843:19;12836:26;;12897:2;12889:6;12885:15;12871:29;;12918:1;12928:195;12942:6;12939:1;12936:13;12928:195;;;13007:13;;-1:-1:-1;;;;;13003:39:1;12991:52;;13098:15;;;;13063:12;;;;13039:1;12957:9;12928:195;;;-1:-1:-1;;;;;;;13179:32:1;;;;13174:2;13159:18;;13152:60;-1:-1:-1;;;13243:3:1;13228:19;13221:35;13140:3;12282:980;-1:-1:-1;;;12282:980:1:o

Swarm Source

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