ETH Price: $2,423.47 (+0.25%)
Gas: 6.38 Gwei

Token

Staked Tail (xTail)
 

Overview

Max Total Supply

16,674,130.56 xTail

Holders

79

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
291,476 xTail

Value
$0.00
0x89b5be64673ce44f5dedaaf1a6d2d3cd41ed58a5
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:
SaninFarmToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-28
*/

// SPDX-License-Identifier: UNLICENSED
// Sources flattened with hardhat v2.10.1 https://hardhat.org

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}


// File @openzeppelin/contracts/utils/[email protected]

// 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/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.6.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/[email protected]

// 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/[email protected]

// OpenZeppelin Contracts (last updated v4.7.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.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:
     *
     * - `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;
        }
        _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;
        _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 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


// File contracts/SaninFarmToken.sol

pragma solidity ^0.8.0;


contract SaninFarmToken is ERC20Burnable, AccessControl {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor(
        string memory name,
        string memory symbol,
        address multiSign
    ) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(DEFAULT_ADMIN_ROLE, multiSign);
    }

    function mint(address to, uint256 amount) public {
        require(hasRole(MINTER_ROLE, _msgSender()), "Caller not a minter");
        _mint(to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"multiSign","type":"address"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620015e5380380620015e58339810160408190526200003491620002b2565b8251839083906200004d9060039060208501906200013f565b508051620000639060049060208401906200013f565b5062000075915060009050336200008b565b620000826000826200008b565b5050506200037c565b6200009782826200009b565b5050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16620000975760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620000fb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200014d906200033f565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020d57600080fd5b81516001600160401b03808211156200022a576200022a620001e5565b604051601f8301601f19908116603f01168101908282118183101715620002555762000255620001e5565b816040528381526020925086838588010111156200027257600080fd5b600091505b8382101562000296578582018301518183018401529082019062000277565b83821115620002a85760008385830101525b9695505050505050565b600080600060608486031215620002c857600080fd5b83516001600160401b0380821115620002e057600080fd5b620002ee87838801620001fb565b945060208601519150808211156200030557600080fd5b506200031486828701620001fb565b604086015190935090506001600160a01b03811681146200033457600080fd5b809150509250925092565b600181811c908216806200035457607f821691505b602082108114156200037657634e487b7160e01b600052602260045260246000fd5b50919050565b611259806200038c6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806342966c68116100b8578063a217fddf1161007c578063a217fddf146102a6578063a457c2d7146102ae578063a9059cbb146102c1578063d5391393146102d4578063d547741f146102fb578063dd62ed3e1461030e57600080fd5b806342966c681461023c57806370a082311461024f57806379cc67901461027857806391d148541461028b57806395d89b411461029e57600080fd5b8063248a9ca31161010a578063248a9ca3146101bc5780632f2ff15d146101df578063313ce567146101f457806336568abe14610203578063395093511461021657806340c10f191461022957600080fd5b806301ffc9a71461014757806306fdde031461016f578063095ea7b31461018457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015a610155366004610f37565b610321565b60405190151581526020015b60405180910390f35b610177610358565b6040516101669190610f8d565b61015a610192366004610fdc565b6103ea565b6002545b604051908152602001610166565b61015a6101b7366004611006565b610402565b61019b6101ca366004611042565b60009081526005602052604090206001015490565b6101f26101ed36600461105b565b610426565b005b60405160128152602001610166565b6101f261021136600461105b565b610450565b61015a610224366004610fdc565b6104d3565b6101f2610237366004610fdc565b6104f5565b6101f261024a366004611042565b61056b565b61019b61025d366004611087565b6001600160a01b031660009081526020819052604090205490565b6101f2610286366004610fdc565b610578565b61015a61029936600461105b565b61058d565b6101776105b8565b61019b600081565b61015a6102bc366004610fdc565b6105c7565b61015a6102cf366004610fdc565b610642565b61019b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6101f261030936600461105b565b610650565b61019b61031c3660046110a2565b610675565b60006001600160e01b03198216637965db0b60e01b148061035257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610367906110cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610393906110cc565b80156103e05780601f106103b5576101008083540402835291602001916103e0565b820191906000526020600020905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b6000336103f88185856106a0565b5060019392505050565b6000336104108582856107c4565b61041b85858561083e565b506001949350505050565b60008281526005602052604090206001015461044181610a0c565b61044b8383610a16565b505050565b6001600160a01b03811633146104c55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104cf8282610a9c565b5050565b6000336103f88185856104e68383610675565b6104f0919061111d565b6106a0565b61051f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361058d565b6105615760405162461bcd60e51b815260206004820152601360248201527221b0b63632b9103737ba10309036b4b73a32b960691b60448201526064016104bc565b6104cf8282610b03565b6105753382610be2565b50565b6105838233836107c4565b6104cf8282610be2565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610367906110cc565b600033816105d58286610675565b9050838110156106355760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104bc565b61041b82868684036106a0565b6000336103f881858561083e565b60008281526005602052604090206001015461066b81610a0c565b61044b8383610a9c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104bc565b6001600160a01b0382166107635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104bc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107d08484610675565b90506000198114610838578181101561082b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104bc565b61083884848484036106a0565b50505050565b6001600160a01b0383166108a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104bc565b6001600160a01b0382166109045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104bc565b6001600160a01b0383166000908152602081905260409020548181101561097c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104bc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109b390849061111d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ff91815260200190565b60405180910390a3610838565b6105758133610d30565b610a20828261058d565b6104cf5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610a583390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610aa6828261058d565b156104cf5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610b595760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104bc565b8060026000828254610b6b919061111d565b90915550506001600160a01b03821660009081526020819052604081208054839290610b9890849061111d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c425760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104bc565b6001600160a01b03821660009081526020819052604090205481811015610cb65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104bc565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ce5908490611135565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b610d3a828261058d565b6104cf57610d52816001600160a01b03166014610d94565b610d5d836020610d94565b604051602001610d6e92919061114c565b60408051601f198184030181529082905262461bcd60e51b82526104bc91600401610f8d565b60606000610da38360026111c1565b610dae90600261111d565b67ffffffffffffffff811115610dc657610dc66111e0565b6040519080825280601f01601f191660200182016040528015610df0576020820181803683370190505b509050600360fc1b81600081518110610e0b57610e0b6111f6565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e3a57610e3a6111f6565b60200101906001600160f81b031916908160001a9053506000610e5e8460026111c1565b610e6990600161111d565b90505b6001811115610ee1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610e9d57610e9d6111f6565b1a60f81b828281518110610eb357610eb36111f6565b60200101906001600160f81b031916908160001a90535060049490941c93610eda8161120c565b9050610e6c565b508315610f305760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104bc565b9392505050565b600060208284031215610f4957600080fd5b81356001600160e01b031981168114610f3057600080fd5b60005b83811015610f7c578181015183820152602001610f64565b838111156108385750506000910152565b6020815260008251806020840152610fac816040850160208701610f61565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610fd757600080fd5b919050565b60008060408385031215610fef57600080fd5b610ff883610fc0565b946020939093013593505050565b60008060006060848603121561101b57600080fd5b61102484610fc0565b925061103260208501610fc0565b9150604084013590509250925092565b60006020828403121561105457600080fd5b5035919050565b6000806040838503121561106e57600080fd5b8235915061107e60208401610fc0565b90509250929050565b60006020828403121561109957600080fd5b610f3082610fc0565b600080604083850312156110b557600080fd5b6110be83610fc0565b915061107e60208401610fc0565b600181811c908216806110e057607f821691505b6020821081141561110157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561113057611130611107565b500190565b60008282101561114757611147611107565b500390565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611184816017850160208801610f61565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516111b5816028840160208801610f61565b01602801949350505050565b60008160001904831182151516156111db576111db611107565b500290565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161121b5761121b611107565b50600019019056fea264697066735822122017569b018dd9c65898abb7bf5c50c26fca68d9b81b177a18f0e08a9ec35d2b1564736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007090711e2883d5b5fb6b26b0d97a0df68dbc1fbb000000000000000000000000000000000000000000000000000000000000000b5374616b6564205461696c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005785461696c000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806342966c68116100b8578063a217fddf1161007c578063a217fddf146102a6578063a457c2d7146102ae578063a9059cbb146102c1578063d5391393146102d4578063d547741f146102fb578063dd62ed3e1461030e57600080fd5b806342966c681461023c57806370a082311461024f57806379cc67901461027857806391d148541461028b57806395d89b411461029e57600080fd5b8063248a9ca31161010a578063248a9ca3146101bc5780632f2ff15d146101df578063313ce567146101f457806336568abe14610203578063395093511461021657806340c10f191461022957600080fd5b806301ffc9a71461014757806306fdde031461016f578063095ea7b31461018457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015a610155366004610f37565b610321565b60405190151581526020015b60405180910390f35b610177610358565b6040516101669190610f8d565b61015a610192366004610fdc565b6103ea565b6002545b604051908152602001610166565b61015a6101b7366004611006565b610402565b61019b6101ca366004611042565b60009081526005602052604090206001015490565b6101f26101ed36600461105b565b610426565b005b60405160128152602001610166565b6101f261021136600461105b565b610450565b61015a610224366004610fdc565b6104d3565b6101f2610237366004610fdc565b6104f5565b6101f261024a366004611042565b61056b565b61019b61025d366004611087565b6001600160a01b031660009081526020819052604090205490565b6101f2610286366004610fdc565b610578565b61015a61029936600461105b565b61058d565b6101776105b8565b61019b600081565b61015a6102bc366004610fdc565b6105c7565b61015a6102cf366004610fdc565b610642565b61019b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6101f261030936600461105b565b610650565b61019b61031c3660046110a2565b610675565b60006001600160e01b03198216637965db0b60e01b148061035257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610367906110cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610393906110cc565b80156103e05780601f106103b5576101008083540402835291602001916103e0565b820191906000526020600020905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b6000336103f88185856106a0565b5060019392505050565b6000336104108582856107c4565b61041b85858561083e565b506001949350505050565b60008281526005602052604090206001015461044181610a0c565b61044b8383610a16565b505050565b6001600160a01b03811633146104c55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104cf8282610a9c565b5050565b6000336103f88185856104e68383610675565b6104f0919061111d565b6106a0565b61051f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361058d565b6105615760405162461bcd60e51b815260206004820152601360248201527221b0b63632b9103737ba10309036b4b73a32b960691b60448201526064016104bc565b6104cf8282610b03565b6105753382610be2565b50565b6105838233836107c4565b6104cf8282610be2565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610367906110cc565b600033816105d58286610675565b9050838110156106355760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104bc565b61041b82868684036106a0565b6000336103f881858561083e565b60008281526005602052604090206001015461066b81610a0c565b61044b8383610a9c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104bc565b6001600160a01b0382166107635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104bc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107d08484610675565b90506000198114610838578181101561082b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104bc565b61083884848484036106a0565b50505050565b6001600160a01b0383166108a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104bc565b6001600160a01b0382166109045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104bc565b6001600160a01b0383166000908152602081905260409020548181101561097c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104bc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109b390849061111d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ff91815260200190565b60405180910390a3610838565b6105758133610d30565b610a20828261058d565b6104cf5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610a583390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610aa6828261058d565b156104cf5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610b595760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104bc565b8060026000828254610b6b919061111d565b90915550506001600160a01b03821660009081526020819052604081208054839290610b9890849061111d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c425760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104bc565b6001600160a01b03821660009081526020819052604090205481811015610cb65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104bc565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ce5908490611135565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b610d3a828261058d565b6104cf57610d52816001600160a01b03166014610d94565b610d5d836020610d94565b604051602001610d6e92919061114c565b60408051601f198184030181529082905262461bcd60e51b82526104bc91600401610f8d565b60606000610da38360026111c1565b610dae90600261111d565b67ffffffffffffffff811115610dc657610dc66111e0565b6040519080825280601f01601f191660200182016040528015610df0576020820181803683370190505b509050600360fc1b81600081518110610e0b57610e0b6111f6565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e3a57610e3a6111f6565b60200101906001600160f81b031916908160001a9053506000610e5e8460026111c1565b610e6990600161111d565b90505b6001811115610ee1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610e9d57610e9d6111f6565b1a60f81b828281518110610eb357610eb36111f6565b60200101906001600160f81b031916908160001a90535060049490941c93610eda8161120c565b9050610e6c565b508315610f305760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104bc565b9392505050565b600060208284031215610f4957600080fd5b81356001600160e01b031981168114610f3057600080fd5b60005b83811015610f7c578181015183820152602001610f64565b838111156108385750506000910152565b6020815260008251806020840152610fac816040850160208701610f61565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610fd757600080fd5b919050565b60008060408385031215610fef57600080fd5b610ff883610fc0565b946020939093013593505050565b60008060006060848603121561101b57600080fd5b61102484610fc0565b925061103260208501610fc0565b9150604084013590509250925092565b60006020828403121561105457600080fd5b5035919050565b6000806040838503121561106e57600080fd5b8235915061107e60208401610fc0565b90509250929050565b60006020828403121561109957600080fd5b610f3082610fc0565b600080604083850312156110b557600080fd5b6110be83610fc0565b915061107e60208401610fc0565b600181811c908216806110e057607f821691505b6020821081141561110157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561113057611130611107565b500190565b60008282101561114757611147611107565b500390565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611184816017850160208801610f61565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516111b5816028840160208801610f61565b01602801949350505050565b60008160001904831182151516156111db576111db611107565b500290565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161121b5761121b611107565b50600019019056fea264697066735822122017569b018dd9c65898abb7bf5c50c26fca68d9b81b177a18f0e08a9ec35d2b1564736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007090711e2883d5b5fb6b26b0d97a0df68dbc1fbb000000000000000000000000000000000000000000000000000000000000000b5374616b6564205461696c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005785461696c000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Staked Tail
Arg [1] : symbol (string): xTail
Arg [2] : multiSign (address): 0x7090711e2883d5b5fb6b26B0D97a0dF68DBc1fBB

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000007090711e2883d5b5fb6b26b0d97a0df68dbc1fbb
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 5374616b6564205461696c000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 785461696c000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

34570:549:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11089:204;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;11089:204:0;;;;;;;;22545:100;;;:::i;:::-;;;;;;;:::i;24896:201::-;;;;;;:::i;:::-;;:::i;23665:108::-;23753:12;;23665:108;;;1731:25:1;;;1719:2;1704:18;23665:108:0;1585:177:1;25677:295:0;;;;;;:::i;:::-;;:::i;12925:131::-;;;;;;:::i;:::-;12999:7;13026:12;;;:6;:12;;;;;:22;;;;12925:131;13366:147;;;;;;:::i;:::-;;:::i;:::-;;23507:93;;;23590:2;2868:36:1;;2856:2;2841:18;23507:93:0;2726:184:1;14510:218:0;;;;;;:::i;:::-;;:::i;26381:238::-;;;;;;:::i;:::-;;:::i;34954:162::-;;;;;;:::i;:::-;;:::i;33918:91::-;;;;;;:::i;:::-;;:::i;23836:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23937:18:0;23910:7;23937:18;;;;;;;;;;;;23836:127;34328:164;;;;;;:::i;:::-;;:::i;11385:147::-;;;;;;:::i;:::-;;:::i;22764:104::-;;;:::i;10490:49::-;;10535:4;10490:49;;27122:436;;;;;;:::i;:::-;;:::i;24169:193::-;;;;;;:::i;:::-;;:::i;34633:62::-;;34671:24;34633:62;;13806:149;;;;;;:::i;:::-;;:::i;24425:151::-;;;;;;:::i;:::-;;:::i;11089:204::-;11174:4;-1:-1:-1;;;;;;11198:47:0;;-1:-1:-1;;;11198:47:0;;:87;;-1:-1:-1;;;;;;;;;;8453:40:0;;;11249:36;11191:94;11089:204;-1:-1:-1;;11089:204:0:o;22545:100::-;22599:13;22632:5;22625:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22545:100;:::o;24896:201::-;24979:4;3915:10;25035:32;3915:10;25051:7;25060:6;25035:8;:32::i;:::-;-1:-1:-1;25085:4:0;;24896:201;-1:-1:-1;;;24896:201:0:o;25677:295::-;25808:4;3915:10;25866:38;25882:4;3915:10;25897:6;25866:15;:38::i;:::-;25915:27;25925:4;25931:2;25935:6;25915:9;:27::i;:::-;-1:-1:-1;25960:4:0;;25677:295;-1:-1:-1;;;;25677:295:0:o;13366:147::-;12999:7;13026:12;;;:6;:12;;;;;:22;;;10981:16;10992:4;10981:10;:16::i;:::-;13480:25:::1;13491:4;13497:7;13480:10;:25::i;:::-;13366:147:::0;;;:::o;14510:218::-;-1:-1:-1;;;;;14606:23:0;;3915:10;14606:23;14598:83;;;;-1:-1:-1;;;14598:83:0;;4143:2:1;14598:83:0;;;4125:21:1;4182:2;4162:18;;;4155:30;4221:34;4201:18;;;4194:62;-1:-1:-1;;;4272:18:1;;;4265:45;4327:19;;14598:83:0;;;;;;;;;14694:26;14706:4;14712:7;14694:11;:26::i;:::-;14510:218;;:::o;26381:238::-;26469:4;3915:10;26525:64;3915:10;26541:7;26578:10;26550:25;3915:10;26541:7;26550:9;:25::i;:::-;:38;;;;:::i;:::-;26525:8;:64::i;34954:162::-;35022:34;34671:24;3915:10;11385:147;:::i;35022:34::-;35014:66;;;;-1:-1:-1;;;35014:66:0;;4824:2:1;35014:66:0;;;4806:21:1;4863:2;4843:18;;;4836:30;-1:-1:-1;;;4882:18:1;;;4875:49;4941:18;;35014:66:0;4622:343:1;35014:66:0;35091:17;35097:2;35101:6;35091:5;:17::i;33918:91::-;33974:27;3915:10;33994:6;33974:5;:27::i;:::-;33918:91;:::o;34328:164::-;34405:46;34421:7;3915:10;34444:6;34405:15;:46::i;:::-;34462:22;34468:7;34477:6;34462:5;:22::i;11385:147::-;11471:4;11495:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11495:29:0;;;;;;;;;;;;;;;11385:147::o;22764:104::-;22820:13;22853:7;22846:14;;;;;:::i;27122:436::-;27215:4;3915:10;27215:4;27298:25;3915:10;27315:7;27298:9;:25::i;:::-;27271:52;;27362:15;27342:16;:35;;27334:85;;;;-1:-1:-1;;;27334:85:0;;5172:2:1;27334:85:0;;;5154:21:1;5211:2;5191:18;;;5184:30;5250:34;5230:18;;;5223:62;-1:-1:-1;;;5301:18:1;;;5294:35;5346:19;;27334:85:0;4970:401:1;27334:85:0;27455:60;27464:5;27471:7;27499:15;27480:16;:34;27455:8;:60::i;24169:193::-;24248:4;3915:10;24304:28;3915:10;24321:2;24325:6;24304:9;:28::i;13806:149::-;12999:7;13026:12;;;:6;:12;;;;;:22;;;10981:16;10992:4;10981:10;:16::i;:::-;13921:26:::1;13933:4;13939:7;13921:11;:26::i;24425:151::-:0;-1:-1:-1;;;;;24541:18:0;;;24514:7;24541:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24425:151::o;30747:380::-;-1:-1:-1;;;;;30883:19:0;;30875:68;;;;-1:-1:-1;;;30875:68:0;;5578:2:1;30875:68:0;;;5560:21:1;5617:2;5597:18;;;5590:30;5656:34;5636:18;;;5629:62;-1:-1:-1;;;5707:18:1;;;5700:34;5751:19;;30875:68:0;5376:400:1;30875:68:0;-1:-1:-1;;;;;30962:21:0;;30954:68;;;;-1:-1:-1;;;30954:68:0;;5983:2:1;30954:68:0;;;5965:21:1;6022:2;6002:18;;;5995:30;6061:34;6041:18;;;6034:62;-1:-1:-1;;;6112:18:1;;;6105:32;6154:19;;30954:68:0;5781:398:1;30954:68:0;-1:-1:-1;;;;;31035:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31087:32;;1731:25:1;;;31087:32:0;;1704:18:1;31087:32:0;;;;;;;30747:380;;;:::o;31418:453::-;31553:24;31580:25;31590:5;31597:7;31580:9;:25::i;:::-;31553:52;;-1:-1:-1;;31620:16:0;:37;31616:248;;31702:6;31682:16;:26;;31674:68;;;;-1:-1:-1;;;31674:68:0;;6386:2:1;31674:68:0;;;6368:21:1;6425:2;6405:18;;;6398:30;6464:31;6444:18;;;6437:59;6513:18;;31674:68:0;6184:353:1;31674:68:0;31786:51;31795:5;31802:7;31830:6;31811:16;:25;31786:8;:51::i;:::-;31542:329;31418:453;;;:::o;28028:671::-;-1:-1:-1;;;;;28159:18:0;;28151:68;;;;-1:-1:-1;;;28151:68:0;;6744:2:1;28151:68:0;;;6726:21:1;6783:2;6763:18;;;6756:30;6822:34;6802:18;;;6795:62;-1:-1:-1;;;6873:18:1;;;6866:35;6918:19;;28151:68:0;6542:401:1;28151:68:0;-1:-1:-1;;;;;28238:16:0;;28230:64;;;;-1:-1:-1;;;28230:64:0;;7150:2:1;28230:64:0;;;7132:21:1;7189:2;7169:18;;;7162:30;7228:34;7208:18;;;7201:62;-1:-1:-1;;;7279:18:1;;;7272:33;7322:19;;28230:64:0;6948:399:1;28230:64:0;-1:-1:-1;;;;;28380:15:0;;28358:19;28380:15;;;;;;;;;;;28414:21;;;;28406:72;;;;-1:-1:-1;;;28406:72:0;;7554:2:1;28406:72:0;;;7536:21:1;7593:2;7573:18;;;7566:30;7632:34;7612:18;;;7605:62;-1:-1:-1;;;7683:18:1;;;7676:36;7729:19;;28406:72:0;7352:402:1;28406:72:0;-1:-1:-1;;;;;28514:15:0;;;:9;:15;;;;;;;;;;;28532:20;;;28514:38;;28574:13;;;;;;;;:23;;28546:6;;28514:9;28574:23;;28546:6;;28574:23;:::i;:::-;;;;;;;;28630:2;-1:-1:-1;;;;;28615:26:0;28624:4;-1:-1:-1;;;;;28615:26:0;;28634:6;28615:26;;;;1731:25:1;;1719:2;1704:18;;1585:177;28615:26:0;;;;;;;;28654:37;13366:147;11836:105;11903:30;11914:4;3915:10;11903;:30::i;16107:238::-;16191:22;16199:4;16205:7;16191;:22::i;:::-;16186:152;;16230:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;16230:29:0;;;;;;;;;:36;;-1:-1:-1;;16230:36:0;16262:4;16230:36;;;16313:12;3915:10;;3835:98;16313:12;-1:-1:-1;;;;;16286:40:0;16304:7;-1:-1:-1;;;;;16286:40:0;16298:4;16286:40;;;;;;;;;;16107:238;;:::o;16525:239::-;16609:22;16617:4;16623:7;16609;:22::i;:::-;16605:152;;;16680:5;16648:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;16648:29:0;;;;;;;;;;:37;;-1:-1:-1;;16648:37:0;;;16705:40;3915:10;;16648:12;;16705:40;;16680:5;16705:40;16525:239;;:::o;28986:399::-;-1:-1:-1;;;;;29070:21:0;;29062:65;;;;-1:-1:-1;;;29062:65:0;;7961:2:1;29062:65:0;;;7943:21:1;8000:2;7980:18;;;7973:30;8039:33;8019:18;;;8012:61;8090:18;;29062:65:0;7759:355:1;29062:65:0;29218:6;29202:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;29235:18:0;;:9;:18;;;;;;;;;;:28;;29257:6;;29235:9;:28;;29257:6;;29235:28;:::i;:::-;;;;-1:-1:-1;;29279:37:0;;1731:25:1;;;-1:-1:-1;;;;;29279:37:0;;;29296:1;;29279:37;;1719:2:1;1704:18;29279:37:0;;;;;;;14510:218;;:::o;29718:591::-;-1:-1:-1;;;;;29802:21:0;;29794:67;;;;-1:-1:-1;;;29794:67:0;;8321:2:1;29794:67:0;;;8303:21:1;8360:2;8340:18;;;8333:30;8399:34;8379:18;;;8372:62;-1:-1:-1;;;8450:18:1;;;8443:31;8491:19;;29794:67:0;8119:397:1;29794:67:0;-1:-1:-1;;;;;29961:18:0;;29936:22;29961:18;;;;;;;;;;;29998:24;;;;29990:71;;;;-1:-1:-1;;;29990:71:0;;8723:2:1;29990:71:0;;;8705:21:1;8762:2;8742:18;;;8735:30;8801:34;8781:18;;;8774:62;-1:-1:-1;;;8852:18:1;;;8845:32;8894:19;;29990:71:0;8521:398:1;29990:71:0;-1:-1:-1;;;;;30097:18:0;;:9;:18;;;;;;;;;;30118:23;;;30097:44;;30163:12;:22;;30135:6;;30097:9;30163:22;;30135:6;;30163:22;:::i;:::-;;;;-1:-1:-1;;30203:37:0;;1731:25:1;;;30229:1:0;;-1:-1:-1;;;;;30203:37:0;;;;;1719:2:1;1704:18;30203:37:0;;;;;;;13366:147;;;:::o;12231:505::-;12320:22;12328:4;12334:7;12320;:22::i;:::-;12315:414;;12508:41;12536:7;-1:-1:-1;;;;;12508:41:0;12546:2;12508:19;:41::i;:::-;12622:38;12650:4;12657:2;12622:19;:38::i;:::-;12413:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12413:270:0;;;;;;;;;;-1:-1:-1;;;12359:358:0;;;;;;;:::i;5786:451::-;5861:13;5887:19;5919:10;5923:6;5919:1;:10;:::i;:::-;:14;;5932:1;5919:14;:::i;:::-;5909:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5909:25:0;;5887:47;;-1:-1:-1;;;5945:6:0;5952:1;5945:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5945:15:0;;;;;;;;;-1:-1:-1;;;5971:6:0;5978:1;5971:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5971:15:0;;;;;;;;-1:-1:-1;6002:9:0;6014:10;6018:6;6014:1;:10;:::i;:::-;:14;;6027:1;6014:14;:::i;:::-;6002:26;;5997:135;6034:1;6030;:5;5997:135;;;-1:-1:-1;;;6082:5:0;6090:3;6082:11;6069:25;;;;;;;:::i;:::-;;;;6057:6;6064:1;6057:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;6057:37:0;;;;;;;;-1:-1:-1;6119:1:0;6109:11;;;;;6037:3;;;:::i;:::-;;;5997:135;;;-1:-1:-1;6150:10:0;;6142:55;;;;-1:-1:-1;;;6142:55:0;;10625:2:1;6142:55:0;;;10607:21:1;;;10644:18;;;10637:30;10703:34;10683:18;;;10676:62;10755:18;;6142:55:0;10423:356:1;6142:55:0;6222:6;5786:451;-1:-1:-1;;;5786:451:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:258;569:1;579:113;593:6;590:1;587:13;579:113;;;669:11;;;663:18;650:11;;;643:39;615:2;608:10;579:113;;;710:6;707:1;704:13;701:48;;;-1:-1:-1;;745:1:1;727:16;;720:27;497:258::o;760:383::-;909:2;898:9;891:21;872:4;941:6;935:13;984:6;979:2;968:9;964:18;957:34;1000:66;1059:6;1054:2;1043:9;1039:18;1034:2;1026:6;1022:15;1000:66;:::i;:::-;1127:2;1106:15;-1:-1:-1;;1102:29:1;1087:45;;;;1134:2;1083:54;;760:383;-1:-1:-1;;760:383:1:o;1148:173::-;1216:20;;-1:-1:-1;;;;;1265:31:1;;1255:42;;1245:70;;1311:1;1308;1301:12;1245:70;1148:173;;;:::o;1326:254::-;1394:6;1402;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;1494:29;1513:9;1494:29;:::i;:::-;1484:39;1570:2;1555:18;;;;1542:32;;-1:-1:-1;;;1326:254:1:o;1767:328::-;1844:6;1852;1860;1913:2;1901:9;1892:7;1888:23;1884:32;1881:52;;;1929:1;1926;1919:12;1881:52;1952:29;1971:9;1952:29;:::i;:::-;1942:39;;2000:38;2034:2;2023:9;2019:18;2000:38;:::i;:::-;1990:48;;2085:2;2074:9;2070:18;2057:32;2047:42;;1767:328;;;;;:::o;2100:180::-;2159:6;2212:2;2200:9;2191:7;2187:23;2183:32;2180:52;;;2228:1;2225;2218:12;2180:52;-1:-1:-1;2251:23:1;;2100:180;-1:-1:-1;2100:180:1:o;2467:254::-;2535:6;2543;2596:2;2584:9;2575:7;2571:23;2567:32;2564:52;;;2612:1;2609;2602:12;2564:52;2648:9;2635:23;2625:33;;2677:38;2711:2;2700:9;2696:18;2677:38;:::i;:::-;2667:48;;2467:254;;;;;:::o;3100:186::-;3159:6;3212:2;3200:9;3191:7;3187:23;3183:32;3180:52;;;3228:1;3225;3218:12;3180:52;3251:29;3270:9;3251:29;:::i;3291:260::-;3359:6;3367;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;3459:29;3478:9;3459:29;:::i;:::-;3449:39;;3507:38;3541:2;3530:9;3526:18;3507:38;:::i;3556:380::-;3635:1;3631:12;;;;3678;;;3699:61;;3753:4;3745:6;3741:17;3731:27;;3699:61;3806:2;3798:6;3795:14;3775:18;3772:38;3769:161;;;3852:10;3847:3;3843:20;3840:1;3833:31;3887:4;3884:1;3877:15;3915:4;3912:1;3905:15;3769:161;;3556:380;;;:::o;4357:127::-;4418:10;4413:3;4409:20;4406:1;4399:31;4449:4;4446:1;4439:15;4473:4;4470:1;4463:15;4489:128;4529:3;4560:1;4556:6;4553:1;4550:13;4547:39;;;4566:18;;:::i;:::-;-1:-1:-1;4602:9:1;;4489:128::o;8924:125::-;8964:4;8992:1;8989;8986:8;8983:34;;;8997:18;;:::i;:::-;-1:-1:-1;9034:9:1;;8924:125::o;9054:786::-;9465:25;9460:3;9453:38;9435:3;9520:6;9514:13;9536:62;9591:6;9586:2;9581:3;9577:12;9570:4;9562:6;9558:17;9536:62;:::i;:::-;-1:-1:-1;;;9657:2:1;9617:16;;;9649:11;;;9642:40;9707:13;;9729:63;9707:13;9778:2;9770:11;;9763:4;9751:17;;9729:63;:::i;:::-;9812:17;9831:2;9808:26;;9054:786;-1:-1:-1;;;;9054:786:1:o;9845:168::-;9885:7;9951:1;9947;9943:6;9939:14;9936:1;9933:21;9928:1;9921:9;9914:17;9910:45;9907:71;;;9958:18;;:::i;:::-;-1:-1:-1;9998:9:1;;9845:168::o;10018:127::-;10079:10;10074:3;10070:20;10067:1;10060:31;10110:4;10107:1;10100:15;10134:4;10131:1;10124:15;10150:127;10211:10;10206:3;10202:20;10199:1;10192:31;10242:4;10239:1;10232:15;10266:4;10263:1;10256:15;10282:136;10321:3;10349:5;10339:39;;10358:18;;:::i;:::-;-1:-1:-1;;;10394:18:1;;10282:136::o

Swarm Source

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