ETH Price: $2,537.93 (-0.04%)

Token

The Rug Shop (TRS)
 

Overview

Max Total Supply

100,000,000,000 TRS

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
25,057,964.498220265734348407 TRS

Value
$0.00
0xc15Cb28a22528F7cD08E159061A8214E3d327D89
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:
TheRugShop

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/TheRugShop.sol


pragma solidity ^0.8.18;




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

    uint256 private constant maxTransactionAmount = 2_000_000_000 * 10**18;

    constructor() ERC20("The Rug Shop", "TRS") {
        uint256 totalSupply = 100_000_000_000 * 10**18;
        _mint(msg.sender, totalSupply);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(amount <= maxTransactionAmount, "Exceeds maximum transaction amount");
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(amount <= maxTransactionAmount, "Exceeds maximum transaction amount");
        return super.transferFrom(sender, recipient, amount);
    }

    function increaseAllowance(address spender, uint256 addedValue) public onlyOwner override returns (bool) {
        _approve(_msgSender(), spender, allowance(_msgSender(), spender).add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public onlyOwner override returns (bool) {
        _approve(_msgSender(), spender, allowance(_msgSender(), spender).sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function renounceOwnership() public override onlyOwner {
        // Prevent renouncing ownership by mistake
        require(msg.sender == owner(), "Only the contract owner can renounce ownership");
        super.renounceOwnership();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f546865205275672053686f7000000000000000000000000000000000000000008152506040518060400160405280600381526020017f545253000000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005ae565b508060049081620000a19190620005ae565b505050620000c4620000b8620000ef60201b60201c565b620000f760201b60201c565b60006c01431e0fae6d7217caa00000009050620000e83382620001bd60201b60201c565b50620007b0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200022f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022690620006f6565b60405180910390fd5b62000243600083836200032a60201b60201c565b806002600082825462000257919062000747565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030a919062000793565b60405180910390a362000326600083836200032f60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b657607f821691505b602082108103620003cc57620003cb6200036e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f7565b620004428683620003f7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200048f6200048962000483846200045a565b62000464565b6200045a565b9050919050565b6000819050919050565b620004ab836200046e565b620004c3620004ba8262000496565b84845462000404565b825550505050565b600090565b620004da620004cb565b620004e7818484620004a0565b505050565b5b818110156200050f5762000503600082620004d0565b600181019050620004ed565b5050565b601f8211156200055e576200052881620003d2565b6200053384620003e7565b8101602085101562000543578190505b6200055b6200055285620003e7565b830182620004ec565b50505b505050565b600082821c905092915050565b6000620005836000198460080262000563565b1980831691505092915050565b60006200059e838362000570565b9150826002028217905092915050565b620005b98262000334565b67ffffffffffffffff811115620005d557620005d46200033f565b5b620005e182546200039d565b620005ee82828562000513565b600060209050601f83116001811462000626576000841562000611578287015190505b6200061d858262000590565b8655506200068d565b601f1984166200063686620003d2565b60005b82811015620006605784890151825560018201915060208501945060208101905062000639565b868310156200068057848901516200067c601f89168262000570565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006de601f8362000695565b9150620006eb82620006a6565b602082019050919050565b600060208201905081810360008301526200071181620006cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000754826200045a565b915062000761836200045a565b92508282019050808211156200077c576200077b62000718565b5b92915050565b6200078d816200045a565b82525050565b6000602082019050620007aa600083018462000782565b92915050565b61184e80620007c06000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610f4c565b60405180910390f35b61012760048036038101906101229190611007565b61038d565b6040516101349190611062565b60405180910390f35b6101456103b0565b604051610152919061108c565b60405180910390f35b610175600480360381019061017091906110a7565b6103ba565b6040516101829190611062565b60405180910390f35b61019361041f565b6040516101a09190611116565b60405180910390f35b6101c360048036038101906101be9190611007565b610428565b6040516101d09190611062565b60405180910390f35b6101f360048036038101906101ee9190611131565b610470565b604051610200919061108c565b60405180910390f35b6102116104b8565b005b61021b61053f565b604051610228919061116d565b60405180910390f35b610239610569565b6040516102469190610f4c565b60405180910390f35b61026960048036038101906102649190611007565b6105fb565b6040516102769190611062565b60405180910390f35b61029960048036038101906102949190611007565b61065d565b6040516102a69190611062565b60405180910390f35b6102c960048036038101906102c49190611188565b6106c0565b6040516102d6919061108c565b60405180910390f35b6102f960048036038101906102f49190611131565b610747565b005b60606003805461030a906111f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906111f7565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986107ca565b90506103a58185856107d2565b600191505092915050565b6000600254905090565b60006b06765c793fa10079d000000082111561040b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104029061129a565b60405180910390fd5b61041684848461099b565b90509392505050565b60006012905090565b60006104326109ca565b61046661043d6107ca565b846104618561045361044d6107ca565b896106c0565b610a4890919063ffffffff16565b6107d2565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104c06109ca565b6104c861053f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c9061132c565b60405180910390fd5b61053d610a5e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610578906111f7565b80601f01602080910402602001604051908101604052809291908181526020018280546105a4906111f7565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b60006106056109ca565b6106536106106107ca565b8461064e856040518060600160405280602581526020016117f46025913961063f6106396107ca565b8a6106c0565b610a729092919063ffffffff16565b6107d2565b6001905092915050565b60006b06765c793fa10079d00000008211156106ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a59061129a565b60405180910390fd5b6106b88383610ac7565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61074f6109ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b5906113be565b60405180910390fd5b6107c781610aea565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890611450565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a7906114e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161098e919061108c565b60405180910390a3505050565b6000806109a66107ca565b90506109b3858285610bb0565b6109be858585610c3c565b60019150509392505050565b6109d26107ca565b73ffffffffffffffffffffffffffffffffffffffff166109f061053f565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d9061154e565b60405180910390fd5b565b60008183610a56919061159d565b905092915050565b610a666109ca565b610a706000610aea565b565b6000838311158290610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab19190610f4c565b60405180910390fd5b5082840390509392505050565b600080610ad26107ca565b9050610adf818585610c3c565b600191505092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610bbc84846106c0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c365781811015610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f9061161d565b60405180910390fd5b610c3584848484036107d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca2906116af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190611741565b60405180910390fd5b610d25838383610eb2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906117d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e99919061108c565b60405180910390a3610eac848484610eb7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ef6578082015181840152602081019050610edb565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f1e82610ebc565b610f288185610ec7565b9350610f38818560208601610ed8565b610f4181610f02565b840191505092915050565b60006020820190508181036000830152610f668184610f13565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f9e82610f73565b9050919050565b610fae81610f93565b8114610fb957600080fd5b50565b600081359050610fcb81610fa5565b92915050565b6000819050919050565b610fe481610fd1565b8114610fef57600080fd5b50565b60008135905061100181610fdb565b92915050565b6000806040838503121561101e5761101d610f6e565b5b600061102c85828601610fbc565b925050602061103d85828601610ff2565b9150509250929050565b60008115159050919050565b61105c81611047565b82525050565b60006020820190506110776000830184611053565b92915050565b61108681610fd1565b82525050565b60006020820190506110a1600083018461107d565b92915050565b6000806000606084860312156110c0576110bf610f6e565b5b60006110ce86828701610fbc565b93505060206110df86828701610fbc565b92505060406110f086828701610ff2565b9150509250925092565b600060ff82169050919050565b611110816110fa565b82525050565b600060208201905061112b6000830184611107565b92915050565b60006020828403121561114757611146610f6e565b5b600061115584828501610fbc565b91505092915050565b61116781610f93565b82525050565b6000602082019050611182600083018461115e565b92915050565b6000806040838503121561119f5761119e610f6e565b5b60006111ad85828601610fbc565b92505060206111be85828601610fbc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061120f57607f821691505b602082108103611222576112216111c8565b5b50919050565b7f45786365656473206d6178696d756d207472616e73616374696f6e20616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000611284602283610ec7565b915061128f82611228565b604082019050919050565b600060208201905081810360008301526112b381611277565b9050919050565b7f4f6e6c792074686520636f6e7472616374206f776e65722063616e2072656e6f60008201527f756e6365206f776e657273686970000000000000000000000000000000000000602082015250565b6000611316602e83610ec7565b9150611321826112ba565b604082019050919050565b6000602082019050818103600083015261134581611309565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113a8602683610ec7565b91506113b38261134c565b604082019050919050565b600060208201905081810360008301526113d78161139b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061143a602483610ec7565b9150611445826113de565b604082019050919050565b600060208201905081810360008301526114698161142d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006114cc602283610ec7565b91506114d782611470565b604082019050919050565b600060208201905081810360008301526114fb816114bf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611538602083610ec7565b915061154382611502565b602082019050919050565b600060208201905081810360008301526115678161152b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115a882610fd1565b91506115b383610fd1565b92508282019050808211156115cb576115ca61156e565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611607601d83610ec7565b9150611612826115d1565b602082019050919050565b60006020820190508181036000830152611636816115fa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611699602583610ec7565b91506116a48261163d565b604082019050919050565b600060208201905081810360008301526116c88161168c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061172b602383610ec7565b9150611736826116cf565b604082019050919050565b6000602082019050818103600083015261175a8161171e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006117bd602683610ec7565b91506117c882611761565b604082019050919050565b600060208201905081810360008301526117ec816117b0565b905091905056fe45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206c81aca1bc49e83331bd4b46b04458381ab11feeb2dd8eec369c2be715f5fae764736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610f4c565b60405180910390f35b61012760048036038101906101229190611007565b61038d565b6040516101349190611062565b60405180910390f35b6101456103b0565b604051610152919061108c565b60405180910390f35b610175600480360381019061017091906110a7565b6103ba565b6040516101829190611062565b60405180910390f35b61019361041f565b6040516101a09190611116565b60405180910390f35b6101c360048036038101906101be9190611007565b610428565b6040516101d09190611062565b60405180910390f35b6101f360048036038101906101ee9190611131565b610470565b604051610200919061108c565b60405180910390f35b6102116104b8565b005b61021b61053f565b604051610228919061116d565b60405180910390f35b610239610569565b6040516102469190610f4c565b60405180910390f35b61026960048036038101906102649190611007565b6105fb565b6040516102769190611062565b60405180910390f35b61029960048036038101906102949190611007565b61065d565b6040516102a69190611062565b60405180910390f35b6102c960048036038101906102c49190611188565b6106c0565b6040516102d6919061108c565b60405180910390f35b6102f960048036038101906102f49190611131565b610747565b005b60606003805461030a906111f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906111f7565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986107ca565b90506103a58185856107d2565b600191505092915050565b6000600254905090565b60006b06765c793fa10079d000000082111561040b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104029061129a565b60405180910390fd5b61041684848461099b565b90509392505050565b60006012905090565b60006104326109ca565b61046661043d6107ca565b846104618561045361044d6107ca565b896106c0565b610a4890919063ffffffff16565b6107d2565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104c06109ca565b6104c861053f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c9061132c565b60405180910390fd5b61053d610a5e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610578906111f7565b80601f01602080910402602001604051908101604052809291908181526020018280546105a4906111f7565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b60006106056109ca565b6106536106106107ca565b8461064e856040518060600160405280602581526020016117f46025913961063f6106396107ca565b8a6106c0565b610a729092919063ffffffff16565b6107d2565b6001905092915050565b60006b06765c793fa10079d00000008211156106ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a59061129a565b60405180910390fd5b6106b88383610ac7565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61074f6109ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b5906113be565b60405180910390fd5b6107c781610aea565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890611450565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a7906114e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161098e919061108c565b60405180910390a3505050565b6000806109a66107ca565b90506109b3858285610bb0565b6109be858585610c3c565b60019150509392505050565b6109d26107ca565b73ffffffffffffffffffffffffffffffffffffffff166109f061053f565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d9061154e565b60405180910390fd5b565b60008183610a56919061159d565b905092915050565b610a666109ca565b610a706000610aea565b565b6000838311158290610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab19190610f4c565b60405180910390fd5b5082840390509392505050565b600080610ad26107ca565b9050610adf818585610c3c565b600191505092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610bbc84846106c0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c365781811015610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f9061161d565b60405180910390fd5b610c3584848484036107d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca2906116af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190611741565b60405180910390fd5b610d25838383610eb2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906117d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e99919061108c565b60405180910390a3610eac848484610eb7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ef6578082015181840152602081019050610edb565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f1e82610ebc565b610f288185610ec7565b9350610f38818560208601610ed8565b610f4181610f02565b840191505092915050565b60006020820190508181036000830152610f668184610f13565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f9e82610f73565b9050919050565b610fae81610f93565b8114610fb957600080fd5b50565b600081359050610fcb81610fa5565b92915050565b6000819050919050565b610fe481610fd1565b8114610fef57600080fd5b50565b60008135905061100181610fdb565b92915050565b6000806040838503121561101e5761101d610f6e565b5b600061102c85828601610fbc565b925050602061103d85828601610ff2565b9150509250929050565b60008115159050919050565b61105c81611047565b82525050565b60006020820190506110776000830184611053565b92915050565b61108681610fd1565b82525050565b60006020820190506110a1600083018461107d565b92915050565b6000806000606084860312156110c0576110bf610f6e565b5b60006110ce86828701610fbc565b93505060206110df86828701610fbc565b92505060406110f086828701610ff2565b9150509250925092565b600060ff82169050919050565b611110816110fa565b82525050565b600060208201905061112b6000830184611107565b92915050565b60006020828403121561114757611146610f6e565b5b600061115584828501610fbc565b91505092915050565b61116781610f93565b82525050565b6000602082019050611182600083018461115e565b92915050565b6000806040838503121561119f5761119e610f6e565b5b60006111ad85828601610fbc565b92505060206111be85828601610fbc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061120f57607f821691505b602082108103611222576112216111c8565b5b50919050565b7f45786365656473206d6178696d756d207472616e73616374696f6e20616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000611284602283610ec7565b915061128f82611228565b604082019050919050565b600060208201905081810360008301526112b381611277565b9050919050565b7f4f6e6c792074686520636f6e7472616374206f776e65722063616e2072656e6f60008201527f756e6365206f776e657273686970000000000000000000000000000000000000602082015250565b6000611316602e83610ec7565b9150611321826112ba565b604082019050919050565b6000602082019050818103600083015261134581611309565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113a8602683610ec7565b91506113b38261134c565b604082019050919050565b600060208201905081810360008301526113d78161139b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061143a602483610ec7565b9150611445826113de565b604082019050919050565b600060208201905081810360008301526114698161142d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006114cc602283610ec7565b91506114d782611470565b604082019050919050565b600060208201905081810360008301526114fb816114bf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611538602083610ec7565b915061154382611502565b602082019050919050565b600060208201905081810360008301526115678161152b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115a882610fd1565b91506115b383610fd1565b92508282019050808211156115cb576115ca61156e565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611607601d83610ec7565b9150611612826115d1565b602082019050919050565b60006020820190508181036000830152611636816115fa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611699602583610ec7565b91506116a48261163d565b604082019050919050565b600060208201905081810360008301526116c88161168c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061172b602383610ec7565b9150611736826116cf565b604082019050919050565b6000602082019050818103600083015261175a8161171e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006117bd602683610ec7565b91506117c882611761565b604082019050919050565b600060208201905081810360008301526117ec816117b0565b905091905056fe45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206c81aca1bc49e83331bd4b46b04458381ab11feeb2dd8eec369c2be715f5fae764736f6c63430008120033

Deployed Bytecode Sourcemap

27319:1592:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18613:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17382:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27874:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17224:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28145:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17553:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28666:242;;;:::i;:::-;;9067:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16472:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28380:278;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27635:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18142:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9966:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16253:100;16307:13;16340:5;16333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;:::o;18613:201::-;18696:4;18713:13;18729:12;:10;:12::i;:::-;18713:28;;18752:32;18761:5;18768:7;18777:6;18752:8;:32::i;:::-;18802:4;18795:11;;;18613:201;;;;:::o;17382:108::-;17443:7;17470:12;;17463:19;;17382:108;:::o;27874:263::-;27972:4;27447:22;27997:6;:30;;27989:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;28084:45;28103:6;28111:9;28122:6;28084:18;:45::i;:::-;28077:52;;27874:263;;;;;:::o;17224:93::-;17282:5;17307:2;17300:9;;17224:93;:::o;28145:227::-;28244:4;8953:13;:11;:13::i;:::-;28261:81:::1;28270:12;:10;:12::i;:::-;28284:7;28293:48;28330:10;28293:32;28303:12;:10;:12::i;:::-;28317:7;28293:9;:32::i;:::-;:36;;:48;;;;:::i;:::-;28261:8;:81::i;:::-;28360:4;28353:11;;28145:227:::0;;;;:::o;17553:127::-;17627:7;17654:9;:18;17664:7;17654:18;;;;;;;;;;;;;;;;17647:25;;17553:127;;;:::o;28666:242::-;8953:13;:11;:13::i;:::-;28806:7:::1;:5;:7::i;:::-;28792:21;;:10;:21;;;28784:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;28875:25;:23;:25::i;:::-;28666:242::o:0;9067:87::-;9113:7;9140:6;;;;;;;;;;;9133:13;;9067:87;:::o;16472:104::-;16528:13;16561:7;16554:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16472:104;:::o;28380:278::-;28484:4;8953:13;:11;:13::i;:::-;28501:127:::1;28510:12;:10;:12::i;:::-;28524:7;28533:94;28570:15;28533:94;;;;;;;;;;;;;;;;;:32;28543:12;:10;:12::i;:::-;28557:7;28533:9;:32::i;:::-;:36;;:94;;;;;:::i;:::-;28501:8;:127::i;:::-;28646:4;28639:11;;28380:278:::0;;;;:::o;27635:231::-;27713:4;27447:22;27738:6;:30;;27730:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;27825:33;27840:9;27851:6;27825:14;:33::i;:::-;27818:40;;27635:231;;;;:::o;18142:151::-;18231:7;18258:11;:18;18270:5;18258:18;;;;;;;;;;;;;;;:27;18277:7;18258:27;;;;;;;;;;;;;;;;18251:34;;18142:151;;;;:::o;9966:201::-;8953:13;:11;:13::i;:::-;10075:1:::1;10055:22;;:8;:22;;::::0;10047:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10131:28;10150:8;10131:18;:28::i;:::-;9966:201:::0;:::o;7618:98::-;7671:7;7698:10;7691:17;;7618:98;:::o;24798:346::-;24917:1;24900:19;;:5;:19;;;24892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24998:1;24979:21;;:7;:21;;;24971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25082:6;25052:11;:18;25064:5;25052:18;;;;;;;;;;;;;;;:27;25071:7;25052:27;;;;;;;;;;;;;;;:36;;;;25120:7;25104:32;;25113:5;25104:32;;;25129:6;25104:32;;;;;;:::i;:::-;;;;;;;;24798:346;;;:::o;19394:261::-;19491:4;19508:15;19526:12;:10;:12::i;:::-;19508:30;;19549:38;19565:4;19571:7;19580:6;19549:15;:38::i;:::-;19598:27;19608:4;19614:2;19618:6;19598:9;:27::i;:::-;19643:4;19636:11;;;19394:261;;;;;:::o;9232:132::-;9307:12;:10;:12::i;:::-;9296:23;;:7;:5;:7::i;:::-;:23;;;9288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9232:132::o;2876:98::-;2934:7;2965:1;2961;:5;;;;:::i;:::-;2954:12;;2876:98;;;;:::o;9708:103::-;8953:13;:11;:13::i;:::-;9773:30:::1;9800:1;9773:18;:30::i;:::-;9708:103::o:0;5155:206::-;5241:7;5299:1;5294;:6;;5302:12;5286:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5341:1;5337;:5;5330:12;;5155:206;;;;;:::o;17886:193::-;17965:4;17982:13;17998:12;:10;:12::i;:::-;17982:28;;18021;18031:5;18038:2;18042:6;18021:9;:28::i;:::-;18067:4;18060:11;;;17886:193;;;;:::o;10327:191::-;10401:16;10420:6;;;;;;;;;;;10401:25;;10446:8;10437:6;;:17;;;;;;;;;;;;;;;;;;10501:8;10470:40;;10491:8;10470:40;;;;;;;;;;;;10390:128;10327:191;:::o;25435:419::-;25536:24;25563:25;25573:5;25580:7;25563:9;:25::i;:::-;25536:52;;25623:17;25603:16;:37;25599:248;;25685:6;25665:16;:26;;25657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25769:51;25778:5;25785:7;25813:6;25794:16;:25;25769:8;:51::i;:::-;25599:248;25525:329;25435:419;;;:::o;21711:806::-;21824:1;21808:18;;:4;:18;;;21800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21901:1;21887:16;;:2;:16;;;21879:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21956:38;21977:4;21983:2;21987:6;21956:20;:38::i;:::-;22007:19;22029:9;:15;22039:4;22029:15;;;;;;;;;;;;;;;;22007:37;;22078:6;22063:11;:21;;22055:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22195:6;22181:11;:20;22163:9;:15;22173:4;22163:15;;;;;;;;;;;;;;;:38;;;;22398:6;22381:9;:13;22391:2;22381:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22448:2;22433:26;;22442:4;22433:26;;;22452:6;22433:26;;;;;;:::i;:::-;;;;;;;;22472:37;22492:4;22498:2;22502:6;22472:19;:37::i;:::-;21789:728;21711:806;;;:::o;26454:91::-;;;;:::o;27149:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:221::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:4;6736:2;6728:6;6724:15;6717:29;6532:221;:::o;6759:366::-;6901:3;6922:67;6986:2;6981:3;6922:67;:::i;:::-;6915:74;;6998:93;7087:3;6998:93;:::i;:::-;7116:2;7111:3;7107:12;7100:19;;6759:366;;;:::o;7131:419::-;7297:4;7335:2;7324:9;7320:18;7312:26;;7384:9;7378:4;7374:20;7370:1;7359:9;7355:17;7348:47;7412:131;7538:4;7412:131;:::i;:::-;7404:139;;7131:419;;;:::o;7556:233::-;7696:34;7692:1;7684:6;7680:14;7673:58;7765:16;7760:2;7752:6;7748:15;7741:41;7556:233;:::o;7795:366::-;7937:3;7958:67;8022:2;8017:3;7958:67;:::i;:::-;7951:74;;8034:93;8123:3;8034:93;:::i;:::-;8152:2;8147:3;8143:12;8136:19;;7795:366;;;:::o;8167:419::-;8333:4;8371:2;8360:9;8356:18;8348:26;;8420:9;8414:4;8410:20;8406:1;8395:9;8391:17;8384:47;8448:131;8574:4;8448:131;:::i;:::-;8440:139;;8167:419;;;:::o;8592:225::-;8732:34;8728:1;8720:6;8716:14;8709:58;8801:8;8796:2;8788:6;8784:15;8777:33;8592:225;:::o;8823:366::-;8965:3;8986:67;9050:2;9045:3;8986:67;:::i;:::-;8979:74;;9062:93;9151:3;9062:93;:::i;:::-;9180:2;9175:3;9171:12;9164:19;;8823:366;;;:::o;9195:419::-;9361:4;9399:2;9388:9;9384:18;9376:26;;9448:9;9442:4;9438:20;9434:1;9423:9;9419:17;9412:47;9476:131;9602:4;9476:131;:::i;:::-;9468:139;;9195:419;;;:::o;9620:223::-;9760:34;9756:1;9748:6;9744:14;9737:58;9829:6;9824:2;9816:6;9812:15;9805:31;9620:223;:::o;9849:366::-;9991:3;10012:67;10076:2;10071:3;10012:67;:::i;:::-;10005:74;;10088:93;10177:3;10088:93;:::i;:::-;10206:2;10201:3;10197:12;10190:19;;9849:366;;;:::o;10221:419::-;10387:4;10425:2;10414:9;10410:18;10402:26;;10474:9;10468:4;10464:20;10460:1;10449:9;10445:17;10438:47;10502:131;10628:4;10502:131;:::i;:::-;10494:139;;10221:419;;;:::o;10646:221::-;10786:34;10782:1;10774:6;10770:14;10763:58;10855:4;10850:2;10842:6;10838:15;10831:29;10646:221;:::o;10873:366::-;11015:3;11036:67;11100:2;11095:3;11036:67;:::i;:::-;11029:74;;11112:93;11201:3;11112:93;:::i;:::-;11230:2;11225:3;11221:12;11214:19;;10873:366;;;:::o;11245:419::-;11411:4;11449:2;11438:9;11434:18;11426:26;;11498:9;11492:4;11488:20;11484:1;11473:9;11469:17;11462:47;11526:131;11652:4;11526:131;:::i;:::-;11518:139;;11245:419;;;:::o;11670:182::-;11810:34;11806:1;11798:6;11794:14;11787:58;11670:182;:::o;11858:366::-;12000:3;12021:67;12085:2;12080:3;12021:67;:::i;:::-;12014:74;;12097:93;12186:3;12097:93;:::i;:::-;12215:2;12210:3;12206:12;12199:19;;11858:366;;;:::o;12230:419::-;12396:4;12434:2;12423:9;12419:18;12411:26;;12483:9;12477:4;12473:20;12469:1;12458:9;12454:17;12447:47;12511:131;12637:4;12511:131;:::i;:::-;12503:139;;12230:419;;;:::o;12655:180::-;12703:77;12700:1;12693:88;12800:4;12797:1;12790:15;12824:4;12821:1;12814:15;12841:191;12881:3;12900:20;12918:1;12900:20;:::i;:::-;12895:25;;12934:20;12952:1;12934:20;:::i;:::-;12929:25;;12977:1;12974;12970:9;12963:16;;12998:3;12995:1;12992:10;12989:36;;;13005:18;;:::i;:::-;12989:36;12841:191;;;;:::o;13038:179::-;13178:31;13174:1;13166:6;13162:14;13155:55;13038:179;:::o;13223:366::-;13365:3;13386:67;13450:2;13445:3;13386:67;:::i;:::-;13379:74;;13462:93;13551:3;13462:93;:::i;:::-;13580:2;13575:3;13571:12;13564:19;;13223:366;;;:::o;13595:419::-;13761:4;13799:2;13788:9;13784:18;13776:26;;13848:9;13842:4;13838:20;13834:1;13823:9;13819:17;13812:47;13876:131;14002:4;13876:131;:::i;:::-;13868:139;;13595:419;;;:::o;14020:224::-;14160:34;14156:1;14148:6;14144:14;14137:58;14229:7;14224:2;14216:6;14212:15;14205:32;14020:224;:::o;14250:366::-;14392:3;14413:67;14477:2;14472:3;14413:67;:::i;:::-;14406:74;;14489:93;14578:3;14489:93;:::i;:::-;14607:2;14602:3;14598:12;14591:19;;14250:366;;;:::o;14622:419::-;14788:4;14826:2;14815:9;14811:18;14803:26;;14875:9;14869:4;14865:20;14861:1;14850:9;14846:17;14839:47;14903:131;15029:4;14903:131;:::i;:::-;14895:139;;14622:419;;;:::o;15047:222::-;15187:34;15183:1;15175:6;15171:14;15164:58;15256:5;15251:2;15243:6;15239:15;15232:30;15047:222;:::o;15275:366::-;15417:3;15438:67;15502:2;15497:3;15438:67;:::i;:::-;15431:74;;15514:93;15603:3;15514:93;:::i;:::-;15632:2;15627:3;15623:12;15616:19;;15275:366;;;:::o;15647:419::-;15813:4;15851:2;15840:9;15836:18;15828:26;;15900:9;15894:4;15890:20;15886:1;15875:9;15871:17;15864:47;15928:131;16054:4;15928:131;:::i;:::-;15920:139;;15647:419;;;:::o;16072:225::-;16212:34;16208:1;16200:6;16196:14;16189:58;16281:8;16276:2;16268:6;16264:15;16257:33;16072:225;:::o;16303:366::-;16445:3;16466:67;16530:2;16525:3;16466:67;:::i;:::-;16459:74;;16542:93;16631:3;16542:93;:::i;:::-;16660:2;16655:3;16651:12;16644:19;;16303:366;;;:::o;16675:419::-;16841:4;16879:2;16868:9;16864:18;16856:26;;16928:9;16922:4;16918:20;16914:1;16903:9;16899:17;16892:47;16956:131;17082:4;16956:131;:::i;:::-;16948:139;;16675:419;;;:::o

Swarm Source

ipfs://6c81aca1bc49e83331bd4b46b04458381ab11feeb2dd8eec369c2be715f5fae7
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.