ETH Price: $3,259.53 (+2.79%)
Gas: 2 Gwei

Token

Iron Sail KEEY (KEEY)
 

Overview

Max Total Supply

2,500 KEEY

Holders

280

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
4 KEEY

Value
$0.00
0x4947b8804e2d484f97c1e11ce565509641986848
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:
KEEYToken

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-30
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/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/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

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



pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// File: @openzeppelin/contracts/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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

    /**
     * @dev 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;
        }
        _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 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol



pragma solidity ^0.8.0;




/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */

abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

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



pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}




// File: KEEY.sol


pragma solidity ^0.8.0;







contract KEEYToken is ERC20, ERC20Burnable, ERC20Snapshot, Ownable, Pausable {
    
    using SafeMath for uint;

    uint256 private totalTokens;

    constructor() ERC20("Iron Sail KEEY", "KEEY") {
        totalTokens = 2500;  // 2500 tokens no decimal
        _mint(owner(), totalTokens);  
    }

    function decimals() public view virtual override returns (uint8) {
        return 0;
    }

    function snapshot() external onlyOwner {
        _snapshot();
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override(ERC20, ERC20Snapshot)
    {
        super._beforeTokenTransfer(from, to, amount);
    }

    function getBurnedAmountTotal() external view returns (uint256 _amount) {
        return totalTokens.sub(totalSupply());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBurnedAmountTotal","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"stateMutability":"view","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600e81526d49726f6e205361696c204b45455960901b6020808301918252835180850190945260048452634b45455960e01b908401528151919291620000649160039162000427565b5080516200007a90600490602084019062000427565b5050506200009762000091620000d060201b60201c565b620000d4565b6009805460ff60a01b191690556109c4600a55620000ca620000c16009546001600160a01b031690565b600a5462000126565b62000555565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000190600083836200021d565b8060026000828254620001a49190620004cd565b90915550506001600160a01b03821660009081526020819052604081208054839290620001d3908490620004cd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b62000231600954600160a01b900460ff1690565b15620002735760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000179565b6200028b8383836200029060201b620007fa1760201c565b505050565b620002a88383836200028b60201b620006191760201c565b6001600160a01b038316620002d257620002c282620002fd565b620002cc6200032e565b6200028b565b6001600160a01b038216620002ec57620002c283620002fd565b620002f783620002fd565b6200028b825b6001600160a01b03811660009081526005602052604090206200032b90620003258362000340565b6200035f565b50565b6200033e60066200032560025490565b565b6001600160a01b0381166000908152602081905260409020545b919050565b60006200036b620003ae565b9050806200037984620003cc565b10156200028b578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6000620003c760086200042360201b620008471760201c565b905090565b8054600090620003df575060006200035a565b81548290620003f190600190620004e8565b815481106200041057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490506200035a565b5490565b828054620004359062000502565b90600052602060002090601f016020900481019282620004595760008555620004a4565b82601f106200047457805160ff1916838001178555620004a4565b82800160010185558215620004a4579182015b82811115620004a457825182559160200191906001019062000487565b50620004b2929150620004b6565b5090565b5b80821115620004b25760008155600101620004b7565b60008219821115620004e357620004e36200053f565b500190565b600082821015620004fd57620004fd6200053f565b500390565b6002810460018216806200051757607f821691505b602082108114156200053957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61140b80620005656000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c35780639711715a1161007c5780639711715a1461027e578063981b24d014610286578063a457c2d714610299578063a9059cbb146102ac578063dd62ed3e146102bf578063f2fde38b146102f85761014d565b806370a0823114610225578063715018a61461023857806379cc6790146102405780638456cb59146102535780638da5cb5b1461025b57806395d89b41146102765761014d565b8063313ce56711610115578063313ce567146101c057806339509351146101cf5780633f4ba83a146101e257806342966c68146101ec5780634ee2cd7e146101ff5780635c975abb146102125761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631ec4280a146101a557806323b872dd146101ad575b600080fd5b61015a61030b565b60405161016791906112ad565b60405180910390f35b61018361017e36600461126c565b61039d565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101976103b4565b6101836101bb366004611231565b6103d0565b60405160008152602001610167565b6101836101dd36600461126c565b61047f565b6101ea6104bb565b005b6101ea6101fa366004611295565b6104ef565b61019761020d36600461126c565b6104fc565b610183600954600160a01b900460ff1690565b6101976102333660046111e5565b610545565b6101ea610564565b6101ea61024e36600461126c565b610598565b6101ea61061e565b6009546040516001600160a01b039091168152602001610167565b61015a610650565b6101ea61065f565b610197610294366004611295565b610691565b6101836102a736600461126c565b6106bc565b6101836102ba36600461126c565b610755565b6101976102cd3660046111ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ea6103063660046111e5565b610762565b60606003805461031a90611384565b80601f016020809104026020016040519081016040528092919081815260200182805461034690611384565b80156103935780601f1061036857610100808354040283529160200191610393565b820191906000526020600020905b81548152906001019060200180831161037657829003601f168201915b5050505050905090565b60006103aa33848461084b565b5060015b92915050565b60006103cb6103c260025490565b600a549061096f565b905090565b60006103dd848484610982565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104675760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610474853385840361084b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103aa9185906104b6908690611335565b61084b565b6009546001600160a01b031633146104e55760405162461bcd60e51b815260040161045e90611300565b6104ed610b5c565b565b6104f93382610bff565b50565b6001600160a01b038216600090815260056020526040812081908190610523908590610d59565b915091508161053a5761053585610545565b61053c565b805b95945050505050565b6001600160a01b0381166000908152602081905260409020545b919050565b6009546001600160a01b0316331461058e5760405162461bcd60e51b815260040161045e90611300565b6104ed6000610e5e565b60006105a483336102cd565b9050818110156106025760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161045e565b61060f833384840361084b565b6106198383610bff565b505050565b6009546001600160a01b031633146106485760405162461bcd60e51b815260040161045e90611300565b6104ed610eb0565b60606004805461031a90611384565b6009546001600160a01b031633146106895760405162461bcd60e51b815260040161045e90611300565b6104f9610f3e565b60008060006106a1846006610d59565b91509150816106b2576002546106b4565b805b949350505050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561073e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161045e565b61074b338585840361084b565b5060019392505050565b60006103aa338484610982565b6009546001600160a01b0316331461078c5760405162461bcd60e51b815260040161045e90611300565b6001600160a01b0381166107f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045e565b6104f981610e5e565b6001600160a01b03831661081e5761081182610f98565b610819610fc2565b610619565b6001600160a01b0382166108355761081183610f98565b61083e83610f98565b61061982610f98565b5490565b6001600160a01b0383166108ad5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045e565b6001600160a01b03821661090e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061097b828461136d565b9392505050565b6001600160a01b0383166109e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161045e565b6001600160a01b038216610a485760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161045e565b610a53838383610fd0565b6001600160a01b03831660009081526020819052604090205481811015610acb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b02908490611335565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4e91815260200190565b60405180910390a350505050565b610b6f600954600160a01b900460ff1690565b610bb25760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161045e565b6009805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610c5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161045e565b610c6b82600083610fd0565b6001600160a01b03821660009081526020819052604090205481811015610cdf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161045e565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d0e90849061136d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610619565b60008060008411610da55760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b604482015260640161045e565b610dad61102e565b841115610dfc5760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000604482015260640161045e565b6000610e088486611039565b8454909150811415610e21576000809250925050610e57565b6001846001018281548110610e4657634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ec3600954600160a01b900460ff1690565b15610f035760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161045e565b6009805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610be23390565b6000610f4e600880546001019055565b6000610f5861102e565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051610f8b91815260200190565b60405180910390a1905090565b6001600160a01b03811660009081526005602052604090206104f990610fbd83610545565b611118565b6104ed6006610fbd60025490565b610fe3600954600160a01b900460ff1690565b156110235760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161045e565b6106198383836107fa565b60006103cb60085490565b815460009061104a575060006103ae565b82546000905b808210156110b45760006110648383611162565b90508486828154811061108757634e487b7160e01b600052603260045260246000fd5b906000526020600020015411156110a0578091506110ae565b6110ab816001611335565b92505b50611050565b6000821180156110f7575083856110cc60018561136d565b815481106110ea57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b156111105761110760018361136d565b925050506103ae565b5090506103ae565b600061112261102e565b90508061112e8461117d565b1015610619578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6000611171600284841861134d565b61097b90848416611335565b805460009061118e5750600061055f565b8154829061119e9060019061136d565b815481106111bc57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905061055f565b80356001600160a01b038116811461055f57600080fd5b6000602082840312156111f6578081fd5b61097b826111ce565b60008060408385031215611211578081fd5b61121a836111ce565b9150611228602084016111ce565b90509250929050565b600080600060608486031215611245578081fd5b61124e846111ce565b925061125c602085016111ce565b9150604084013590509250925092565b6000806040838503121561127e578182fd5b611287836111ce565b946020939093013593505050565b6000602082840312156112a6578081fd5b5035919050565b6000602080835283518082850152825b818110156112d9578581018301518582016040015282016112bd565b818111156112ea5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611348576113486113bf565b500190565b60008261136857634e487b7160e01b81526012600452602481fd5b500490565b60008282101561137f5761137f6113bf565b500390565b60028104600182168061139857607f821691505b602082108114156113b957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220c5d427f6febf025dc6ba4069624e10f136fd15fda2fafcd6eaa15a53c8c2c09464736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c35780639711715a1161007c5780639711715a1461027e578063981b24d014610286578063a457c2d714610299578063a9059cbb146102ac578063dd62ed3e146102bf578063f2fde38b146102f85761014d565b806370a0823114610225578063715018a61461023857806379cc6790146102405780638456cb59146102535780638da5cb5b1461025b57806395d89b41146102765761014d565b8063313ce56711610115578063313ce567146101c057806339509351146101cf5780633f4ba83a146101e257806342966c68146101ec5780634ee2cd7e146101ff5780635c975abb146102125761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631ec4280a146101a557806323b872dd146101ad575b600080fd5b61015a61030b565b60405161016791906112ad565b60405180910390f35b61018361017e36600461126c565b61039d565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101976103b4565b6101836101bb366004611231565b6103d0565b60405160008152602001610167565b6101836101dd36600461126c565b61047f565b6101ea6104bb565b005b6101ea6101fa366004611295565b6104ef565b61019761020d36600461126c565b6104fc565b610183600954600160a01b900460ff1690565b6101976102333660046111e5565b610545565b6101ea610564565b6101ea61024e36600461126c565b610598565b6101ea61061e565b6009546040516001600160a01b039091168152602001610167565b61015a610650565b6101ea61065f565b610197610294366004611295565b610691565b6101836102a736600461126c565b6106bc565b6101836102ba36600461126c565b610755565b6101976102cd3660046111ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ea6103063660046111e5565b610762565b60606003805461031a90611384565b80601f016020809104026020016040519081016040528092919081815260200182805461034690611384565b80156103935780601f1061036857610100808354040283529160200191610393565b820191906000526020600020905b81548152906001019060200180831161037657829003601f168201915b5050505050905090565b60006103aa33848461084b565b5060015b92915050565b60006103cb6103c260025490565b600a549061096f565b905090565b60006103dd848484610982565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104675760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610474853385840361084b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103aa9185906104b6908690611335565b61084b565b6009546001600160a01b031633146104e55760405162461bcd60e51b815260040161045e90611300565b6104ed610b5c565b565b6104f93382610bff565b50565b6001600160a01b038216600090815260056020526040812081908190610523908590610d59565b915091508161053a5761053585610545565b61053c565b805b95945050505050565b6001600160a01b0381166000908152602081905260409020545b919050565b6009546001600160a01b0316331461058e5760405162461bcd60e51b815260040161045e90611300565b6104ed6000610e5e565b60006105a483336102cd565b9050818110156106025760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161045e565b61060f833384840361084b565b6106198383610bff565b505050565b6009546001600160a01b031633146106485760405162461bcd60e51b815260040161045e90611300565b6104ed610eb0565b60606004805461031a90611384565b6009546001600160a01b031633146106895760405162461bcd60e51b815260040161045e90611300565b6104f9610f3e565b60008060006106a1846006610d59565b91509150816106b2576002546106b4565b805b949350505050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561073e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161045e565b61074b338585840361084b565b5060019392505050565b60006103aa338484610982565b6009546001600160a01b0316331461078c5760405162461bcd60e51b815260040161045e90611300565b6001600160a01b0381166107f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045e565b6104f981610e5e565b6001600160a01b03831661081e5761081182610f98565b610819610fc2565b610619565b6001600160a01b0382166108355761081183610f98565b61083e83610f98565b61061982610f98565b5490565b6001600160a01b0383166108ad5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045e565b6001600160a01b03821661090e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061097b828461136d565b9392505050565b6001600160a01b0383166109e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161045e565b6001600160a01b038216610a485760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161045e565b610a53838383610fd0565b6001600160a01b03831660009081526020819052604090205481811015610acb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b02908490611335565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4e91815260200190565b60405180910390a350505050565b610b6f600954600160a01b900460ff1690565b610bb25760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161045e565b6009805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610c5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161045e565b610c6b82600083610fd0565b6001600160a01b03821660009081526020819052604090205481811015610cdf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161045e565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d0e90849061136d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610619565b60008060008411610da55760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b604482015260640161045e565b610dad61102e565b841115610dfc5760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000604482015260640161045e565b6000610e088486611039565b8454909150811415610e21576000809250925050610e57565b6001846001018281548110610e4657634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ec3600954600160a01b900460ff1690565b15610f035760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161045e565b6009805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610be23390565b6000610f4e600880546001019055565b6000610f5861102e565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051610f8b91815260200190565b60405180910390a1905090565b6001600160a01b03811660009081526005602052604090206104f990610fbd83610545565b611118565b6104ed6006610fbd60025490565b610fe3600954600160a01b900460ff1690565b156110235760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161045e565b6106198383836107fa565b60006103cb60085490565b815460009061104a575060006103ae565b82546000905b808210156110b45760006110648383611162565b90508486828154811061108757634e487b7160e01b600052603260045260246000fd5b906000526020600020015411156110a0578091506110ae565b6110ab816001611335565b92505b50611050565b6000821180156110f7575083856110cc60018561136d565b815481106110ea57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b156111105761110760018361136d565b925050506103ae565b5090506103ae565b600061112261102e565b90508061112e8461117d565b1015610619578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6000611171600284841861134d565b61097b90848416611335565b805460009061118e5750600061055f565b8154829061119e9060019061136d565b815481106111bc57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905061055f565b80356001600160a01b038116811461055f57600080fd5b6000602082840312156111f6578081fd5b61097b826111ce565b60008060408385031215611211578081fd5b61121a836111ce565b9150611228602084016111ce565b90509250929050565b600080600060608486031215611245578081fd5b61124e846111ce565b925061125c602085016111ce565b9150604084013590509250925092565b6000806040838503121561127e578182fd5b611287836111ce565b946020939093013593505050565b6000602082840312156112a6578081fd5b5035919050565b6000602080835283518082850152825b818110156112d9578581018301518582016040015282016112bd565b818111156112ea5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611348576113486113bf565b500190565b60008261136857634e487b7160e01b81526012600452602481fd5b500490565b60008282101561137f5761137f6113bf565b500390565b60028104600182168061139857607f821691505b602082108114156113b957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220c5d427f6febf025dc6ba4069624e10f136fd15fda2fafcd6eaa15a53c8c2c09464736f6c63430008020033

Deployed Bytecode Sourcemap

42262:999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22101:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24268:169;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;24268:169:0;1778:92:1;23221:108:0;23309:12;;23221:108;;;8850:25:1;;;8838:2;8823:18;23221:108:0;8805:76:1;43130:128:0;;;:::i;24919:492::-;;;;;;:::i;:::-;;:::i;42578:92::-;;;42636:5;9028:36:1;;9016:2;9001:18;42578:92:0;8983:87:1;25820:215:0;;;;;;:::i;:::-;;:::i;42826:67::-;;;:::i;:::-;;41409:91;;;;;;:::i;:::-;;:::i;37023:266::-;;;;;;:::i;:::-;;:::i;5450:86::-;;5521:7;;-1:-1:-1;;;5521:7:0;;;;;5450:86;23392:127;;;;;;:::i;:::-;;:::i;8285:94::-;;;:::i;41819:368::-;;;;;;:::i;:::-;;:::i;42755:63::-;;;:::i;7634:87::-;7707:6;;7634:87;;-1:-1:-1;;;;;7707:6:0;;;1621:51:1;;1609:2;1594:18;7634:87:0;1576:102:1;22320:104:0;;;:::i;42678:69::-;;;:::i;37393:234::-;;;;;;:::i;:::-;;:::i;26538:413::-;;;;;;:::i;:::-;;:::i;23732:175::-;;;;;;:::i;:::-;;:::i;23970:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24086:18:0;;;24059:7;24086:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23970:151;8534:192;;;;;;:::i;:::-;;:::i;22101:100::-;22155:13;22188:5;22181:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22101:100;:::o;24268:169::-;24351:4;24368:39;738:10;24391:7;24400:6;24368:8;:39::i;:::-;-1:-1:-1;24425:4:0;24268:169;;;;;:::o;43130:128::-;43185:15;43220:30;43236:13;23309:12;;23221:108;;43236:13;43220:11;;;:15;:30::i;:::-;43213:37;;43130:128;:::o;24919:492::-;25059:4;25076:36;25086:6;25094:9;25105:6;25076:9;:36::i;:::-;-1:-1:-1;;;;;25152:19:0;;25125:24;25152:19;;;:11;:19;;;;;;;;738:10;25152:33;;;;;;;;25204:26;;;;25196:79;;;;-1:-1:-1;;;25196:79:0;;5761:2:1;25196:79:0;;;5743:21:1;5800:2;5780:18;;;5773:30;5839:34;5819:18;;;5812:62;-1:-1:-1;;;5890:18:1;;;5883:38;5938:19;;25196:79:0;;;;;;;;;25311:57;25320:6;738:10;25361:6;25342:16;:25;25311:8;:57::i;:::-;-1:-1:-1;25399:4:0;;24919:492;-1:-1:-1;;;;24919:492:0:o;25820:215::-;738:10;25908:4;25957:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;25957:34:0;;;;;;;;;;25908:4;;25925:80;;25948:7;;25957:47;;25994:10;;25957:47;:::i;:::-;25925:8;:80::i;42826:67::-;7707:6;;-1:-1:-1;;;;;7707:6:0;738:10;7854:23;7846:68;;;;-1:-1:-1;;;7846:68:0;;;;;;;:::i;:::-;42875:10:::1;:8;:10::i;:::-;42826:67::o:0;41409:91::-;41465:27;738:10;41485:6;41465:5;:27::i;:::-;41409:91;:::o;37023:266::-;-1:-1:-1;;;;;37187:33:0;;37110:7;37187:33;;;:24;:33;;;;;37110:7;;;;37166:55;;37175:10;;37166:8;:55::i;:::-;37130:91;;;;37241:11;:40;;37263:18;37273:7;37263:9;:18::i;:::-;37241:40;;;37255:5;37241:40;37234:47;37023:266;-1:-1:-1;;;;;37023:266:0:o;23392:127::-;-1:-1:-1;;;;;23493:18:0;;23466:7;23493:18;;;;;;;;;;;23392:127;;;;:::o;8285:94::-;7707:6;;-1:-1:-1;;;;;7707:6:0;738:10;7854:23;7846:68;;;;-1:-1:-1;;;7846:68:0;;;;;;;:::i;:::-;8350:21:::1;8368:1;8350:9;:21::i;41819:368::-:0;41896:24;41923:32;41933:7;738:10;41942:12;658:98;41923:32;41896:59;;41994:6;41974:16;:26;;41966:75;;;;-1:-1:-1;;;41966:75:0;;6531:2:1;41966:75:0;;;6513:21:1;6570:2;6550:18;;;6543:30;6609:34;6589:18;;;6582:62;-1:-1:-1;;;6660:18:1;;;6653:34;6704:19;;41966:75:0;6503:226:1;41966:75:0;42077:58;42086:7;738:10;42128:6;42109:16;:25;42077:8;:58::i;:::-;42157:22;42163:7;42172:6;42157:5;:22::i;:::-;41819:368;;;:::o;42755:63::-;7707:6;;-1:-1:-1;;;;;7707:6:0;738:10;7854:23;7846:68;;;;-1:-1:-1;;;7846:68:0;;;;;;;:::i;:::-;42802:8:::1;:6;:8::i;22320:104::-:0;22376:13;22409:7;22402:14;;;;;:::i;42678:69::-;7707:6;;-1:-1:-1;;;;;7707:6:0;738:10;7854:23;7846:68;;;;-1:-1:-1;;;7846:68:0;;;;;;;:::i;:::-;42728:11:::1;:9;:11::i;37393:234::-:0;37465:7;37486:16;37504:13;37521:43;37530:10;37542:21;37521:8;:43::i;:::-;37485:79;;;;37584:11;:35;;23309:12;;37584:35;;;37598:5;37584:35;37577:42;37393:234;-1:-1:-1;;;;37393:234:0:o;26538:413::-;738:10;26631:4;26675:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26675:34:0;;;;;;;;;;26728:35;;;;26720:85;;;;-1:-1:-1;;;26720:85:0;;8500:2:1;26720:85:0;;;8482:21:1;8539:2;8519:18;;;8512:30;8578:34;8558:18;;;8551:62;-1:-1:-1;;;8629:18:1;;;8622:35;8674:19;;26720:85:0;8472:227:1;26720:85:0;26841:67;738:10;26864:7;26892:15;26873:16;:34;26841:8;:67::i;:::-;-1:-1:-1;26939:4:0;;26538:413;-1:-1:-1;;;26538:413:0:o;23732:175::-;23818:4;23835:42;738:10;23859:9;23870:6;23835:9;:42::i;8534:192::-;7707:6;;-1:-1:-1;;;;;7707:6:0;738:10;7854:23;7846:68;;;;-1:-1:-1;;;7846:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8623:22:0;::::1;8615:73;;;::::0;-1:-1:-1;;;8615:73:0;;4199:2:1;8615:73:0::1;::::0;::::1;4181:21:1::0;4238:2;4218:18;;;4211:30;4277:34;4257:18;;;4250:62;-1:-1:-1;;;4328:18:1;;;4321:36;4374:19;;8615:73:0::1;4171:228:1::0;8615:73:0::1;8699:19;8709:8;8699:9;:19::i;37844:622::-:0;-1:-1:-1;;;;;38048:18:0;;38044:415;;38104:26;38127:2;38104:22;:26::i;:::-;38145:28;:26;:28::i;:::-;38044:415;;;-1:-1:-1;;;;;38195:16:0;;38191:268;;38249:28;38272:4;38249:22;:28::i;38191:268::-;38378:28;38401:4;38378:22;:28::i;:::-;38421:26;38444:2;38421:22;:26::i;16688:114::-;16780:14;;16688:114::o;30222:380::-;-1:-1:-1;;;;;30358:19:0;;30350:68;;;;-1:-1:-1;;;30350:68:0;;7744:2:1;30350:68:0;;;7726:21:1;7783:2;7763:18;;;7756:30;7822:34;7802:18;;;7795:62;-1:-1:-1;;;7873:18:1;;;7866:34;7917:19;;30350:68:0;7716:226:1;30350:68:0;-1:-1:-1;;;;;30437:21:0;;30429:68;;;;-1:-1:-1;;;30429:68:0;;4606:2:1;30429:68:0;;;4588:21:1;4645:2;4625:18;;;4618:30;4684:34;4664:18;;;4657:62;-1:-1:-1;;;4735:18:1;;;4728:32;4777:19;;30429:68:0;4578:224:1;30429:68:0;-1:-1:-1;;;;;30510:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30562:32;;8850:25:1;;;30562:32:0;;8823:18:1;30562:32:0;;;;;;;30222:380;;;:::o;12087:98::-;12145:7;12172:5;12176:1;12172;:5;:::i;:::-;12165:12;12087:98;-1:-1:-1;;;12087:98:0:o;27441:733::-;-1:-1:-1;;;;;27581:20:0;;27573:70;;;;-1:-1:-1;;;27573:70:0;;7338:2:1;27573:70:0;;;7320:21:1;7377:2;7357:18;;;7350:30;7416:34;7396:18;;;7389:62;-1:-1:-1;;;7467:18:1;;;7460:35;7512:19;;27573:70:0;7310:227:1;27573:70:0;-1:-1:-1;;;;;27662:23:0;;27654:71;;;;-1:-1:-1;;;27654:71:0;;3043:2:1;27654:71:0;;;3025:21:1;3082:2;3062:18;;;3055:30;3121:34;3101:18;;;3094:62;-1:-1:-1;;;3172:18:1;;;3165:33;3215:19;;27654:71:0;3015:225:1;27654:71:0;27738:47;27759:6;27767:9;27778:6;27738:20;:47::i;:::-;-1:-1:-1;;;;;27822:17:0;;27798:21;27822:17;;;;;;;;;;;27858:23;;;;27850:74;;;;-1:-1:-1;;;27850:74:0;;5009:2:1;27850:74:0;;;4991:21:1;5048:2;5028:18;;;5021:30;5087:34;5067:18;;;5060:62;-1:-1:-1;;;5138:18:1;;;5131:36;5184:19;;27850:74:0;4981:228:1;27850:74:0;-1:-1:-1;;;;;27960:17:0;;;:9;:17;;;;;;;;;;;27980:22;;;27960:42;;28024:20;;;;;;;;:30;;27996:6;;27960:9;28024:30;;27996:6;;28024:30;:::i;:::-;;;;;;;;28089:9;-1:-1:-1;;;;;28072:35:0;28081:6;-1:-1:-1;;;;;28072:35:0;;28100:6;28072:35;;;;8850:25:1;;8838:2;8823:18;;8805:76;28072:35:0;;;;;;;;27441:733;;;;:::o;6509:120::-;6053:8;5521:7;;-1:-1:-1;;;5521:7:0;;;;;5450:86;6053:8;6045:41;;;;-1:-1:-1;;;6045:41:0;;3447:2:1;6045:41:0;;;3429:21:1;3486:2;3466:18;;;3459:30;-1:-1:-1;;;3505:18:1;;;3498:50;3565:18;;6045:41:0;3419:170:1;6045:41:0;6568:7:::1;:15:::0;;-1:-1:-1;;;;6568:15:0::1;::::0;;6599:22:::1;738:10:::0;6608:12:::1;6599:22;::::0;-1:-1:-1;;;;;1639:32:1;;;1621:51;;1609:2;1594:18;6599:22:0::1;;;;;;;6509:120::o:0;29193:591::-;-1:-1:-1;;;;;29277:21:0;;29269:67;;;;-1:-1:-1;;;29269:67:0;;6936:2:1;29269:67:0;;;6918:21:1;6975:2;6955:18;;;6948:30;7014:34;6994:18;;;6987:62;-1:-1:-1;;;7065:18:1;;;7058:31;7106:19;;29269:67:0;6908:223:1;29269:67:0;29349:49;29370:7;29387:1;29391:6;29349:20;:49::i;:::-;-1:-1:-1;;;;;29436:18:0;;29411:22;29436:18;;;;;;;;;;;29473:24;;;;29465:71;;;;-1:-1:-1;;;29465:71:0;;3796:2:1;29465:71:0;;;3778:21:1;3835:2;3815:18;;;3808:30;3874:34;3854:18;;;3847:62;-1:-1:-1;;;3925:18:1;;;3918:32;3967:19;;29465:71:0;3768:224:1;29465:71:0;-1:-1:-1;;;;;29572:18:0;;:9;:18;;;;;;;;;;29593:23;;;29572:44;;29638:12;:22;;29610:6;;29572:9;29638:22;;29610:6;;29638:22;:::i;:::-;;;;-1:-1:-1;;29678:37:0;;8850:25:1;;;29704:1:0;;-1:-1:-1;;;;;29678:37:0;;;;;8838:2:1;8823:18;29678:37:0;;;;;;;29728:48;41819:368;38474:1619;38563:4;38569:7;38610:1;38597:10;:14;38589:49;;;;-1:-1:-1;;;38589:49:0;;8149:2:1;38589:49:0;;;8131:21:1;8188:2;8168:18;;;8161:30;-1:-1:-1;;;8207:18:1;;;8200:52;8269:18;;38589:49:0;8121:172:1;38589:49:0;38671:23;:21;:23::i;:::-;38657:10;:37;;38649:79;;;;-1:-1:-1;;;38649:79:0;;2685:2:1;38649:79:0;;;2667:21:1;2724:2;2704:18;;;2697:30;2763:31;2743:18;;;2736:59;2812:18;;38649:79:0;2657:179:1;38649:79:0;39867:13;39883:40;:9;39912:10;39883:28;:40::i;:::-;39949:20;;39867:56;;-1:-1:-1;39940:29:0;;39936:150;;;39994:5;40001:1;39986:17;;;;;;;39936:150;40044:4;40050:9;:16;;40067:5;40050:23;;;;;;-1:-1:-1;;;40050:23:0;;;;;;;;;;;;;;;;;40036:38;;;;;38474:1619;;;;;;:::o;8734:173::-;8809:6;;;-1:-1:-1;;;;;8826:17:0;;;-1:-1:-1;;;;;;8826:17:0;;;;;;;8859:40;;8809:6;;;8826:17;8809:6;;8859:40;;8790:16;;8859:40;8734:173;;:::o;6250:118::-;5776:8;5521:7;;-1:-1:-1;;;5521:7:0;;;;;5450:86;5776:8;5775:9;5767:38;;;;-1:-1:-1;;;5767:38:0;;5416:2:1;5767:38:0;;;5398:21:1;5455:2;5435:18;;;5428:30;-1:-1:-1;;;5474:18:1;;;5467:46;5530:18;;5767:38:0;5388:166:1;5767:38:0;6310:7:::1;:14:::0;;-1:-1:-1;;;;6310:14:0::1;-1:-1:-1::0;;;6310:14:0::1;::::0;;6340:20:::1;6347:12;738:10:::0;658:98;;36495:223;36542:7;36562:30;:18;16899:19;;16917:1;16899:19;;;16810:127;36562:30;36605:17;36625:23;:21;:23::i;:::-;36605:43;;36664:19;36673:9;36664:19;;;;8850:25:1;;8838:2;8823:18;;8805:76;36664:19:0;;;;;;;;36701:9;-1:-1:-1;36495:223:0;:::o;40101:146::-;-1:-1:-1;;;;;40185:33:0;;;;;;:24;:33;;;;;40169:70;;40220:18;40210:7;40220:9;:18::i;:::-;40169:15;:70::i;40255:118::-;40312:53;40328:21;40351:13;23309:12;;23221:108;;42901:221;5776:8;5521:7;;-1:-1:-1;;;5521:7:0;;;;;5450:86;5776:8;5775:9;5767:38;;;;-1:-1:-1;;;5767:38:0;;5416:2:1;5767:38:0;;;5398:21:1;5455:2;5435:18;;;5428:30;-1:-1:-1;;;5474:18:1;;;5467:46;5530:18;;5767:38:0;5388:166:1;5767:38:0;43070:44:::1;43097:4;43103:2;43107:6;43070:26;:44::i;36784:127::-:0;36848:7;36875:28;:18;16780:14;;16688:114;19103:918;19216:12;;19192:7;;19212:58;;-1:-1:-1;19257:1:0;19250:8;;19212:58;19323:12;;19282:11;;19348:424;19361:4;19355:3;:10;19348:424;;;19382:11;19396:23;19409:3;19414:4;19396:12;:23::i;:::-;19382:37;;19653:7;19640:5;19646:3;19640:10;;;;;;-1:-1:-1;;;19640:10:0;;;;;;;;;;;;;;;;;:20;19636:125;;;19688:3;19681:10;;19636:125;;;19738:7;:3;19744:1;19738:7;:::i;:::-;19732:13;;19636:125;19348:424;;;;19898:1;19892:3;:7;:36;;;;-1:-1:-1;19921:7:0;19903:5;19909:7;19915:1;19909:3;:7;:::i;:::-;19903:14;;;;;;-1:-1:-1;;;19903:14:0;;;;;;;;;;;;;;;;;:25;19892:36;19888:126;;;19952:7;19958:1;19952:3;:7;:::i;:::-;19945:14;;;;;;19888:126;-1:-1:-1;19999:3:0;-1:-1:-1;19992:10:0;;40381:310;40476:17;40496:23;:21;:23::i;:::-;40476:43;-1:-1:-1;40476:43:0;40534:30;40550:9;40534:15;:30::i;:::-;:42;40530:154;;;40593:29;;;;;;;;-1:-1:-1;40593:29:0;;;;;;;;;;;;;;40637:16;;;:35;;;;;;;;;;;;;;;40381:310::o;17940:156::-;18002:7;18077:11;18087:1;18078:5;;;18077:11;:::i;:::-;18067:21;;18068:5;;;18067:21;:::i;40699:212::-;40793:10;;40769:7;;40789:115;;-1:-1:-1;40832:1:0;40825:8;;40789:115;40877:10;;40873:3;;40877:14;;40890:1;;40877:14;:::i;:::-;40873:19;;;;;;-1:-1:-1;;;40873:19:0;;;;;;;;;;;;;;;;;40866:26;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1875:603::-;;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:1;2441:15;-1:-1:-1;;2437:29:1;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:1:o;5968:356::-;6170:2;6152:21;;;6189:18;;;6182:30;6248:34;6243:2;6228:18;;6221:62;6315:2;6300:18;;6142:182::o;9075:128::-;;9146:1;9142:6;9139:1;9136:13;9133:2;;;9152:18;;:::i;:::-;-1:-1:-1;9188:9:1;;9123:80::o;9208:217::-;;9274:1;9264:2;;-1:-1:-1;;;9299:31:1;;9353:4;9350:1;9343:15;9381:4;9306:1;9371:15;9264:2;-1:-1:-1;9410:9:1;;9254:171::o;9430:125::-;;9498:1;9495;9492:8;9489:2;;;9503:18;;:::i;:::-;-1:-1:-1;9540:9:1;;9479:76::o;9560:380::-;9645:1;9635:12;;9692:1;9682:12;;;9703:2;;9757:4;9749:6;9745:17;9735:27;;9703:2;9810;9802:6;9799:14;9779:18;9776:38;9773:2;;;9856:10;9851:3;9847:20;9844:1;9837:31;9891:4;9888:1;9881:15;9919:4;9916:1;9909:15;9773:2;;9615:325;;;:::o;9945:127::-;10006:10;10001:3;9997:20;9994:1;9987:31;10037:4;10034:1;10027:15;10061:4;10058:1;10051:15

Swarm Source

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