ETH Price: $2,346.95 (+2.46%)

Token

COQNOT (COQNOT)
 

Overview

Max Total Supply

1,000,000,000 COQNOT

Holders

42

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
COQNOT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : standard.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract COQNOT is ERC20, ReentrancyGuard, Ownable {
    uint256 public feePercent = 10;
    uint256 public MAX_HOLDING = 2000000 * (10 ** decimals());
    bool public limitEnabled = true;
    uint256 private initialSupply = 1000000000 * (10 ** decimals());
    address private feeDestination = 0xca33f892E1EbAeA9B590Aa1c979ABC44612e718a;
    mapping(address => bool) public isLimitExempt;
    mapping(address => bool) public isFeeExempt;

    address[4] private distributionWallets = [
        0xC9E5056713C0eE67B479178Fc086c71065Da6d36, 
        0x2d0351345699f10caE0250CAC72A9bbd378df337,
        0xb30C895D67bb93a5E1779ed6d7DF4370b2848668,
        0xe56F2aFC852ba7491CDaDb58E0A702c3eb25C7F6
    ];

    event FeeTaken(address from, address to, uint256 amount);

    constructor() ERC20("COQNOT", "COQNOT") Ownable(msg.sender) {
        uint256 distributionAmount = (initialSupply * 15) / 1000;
        uint256 totalDistribution = distributionAmount * 4;
        require(initialSupply > totalDistribution, "Distribution exceeds supply");
        _mint(msg.sender, initialSupply - totalDistribution);
        for (uint i = 0; i < distributionWallets.length; i++) {
            _mint(distributionWallets[i], distributionAmount);
        }

        isLimitExempt[msg.sender] = true;
        isLimitExempt[address(this)] = true;
        isLimitExempt[feeDestination] = true;
        isFeeExempt[msg.sender] = true;
        isFeeExempt[address(this)] = true;
        isFeeExempt[feeDestination] = true;
    }

    function setFeeDestination(address _newFeeDestination) public onlyOwner {
        require(_newFeeDestination != address(0), "New fee destination cannot be the zero address");
        feeDestination = _newFeeDestination;
        isLimitExempt[feeDestination] = true;
        isFeeExempt[feeDestination] = true;
    }

    function setFeePercent(uint256 _newFeePercent) public onlyOwner {
        require(_newFeePercent <= 100, "Fee percent cannot exceed 100");
        feePercent = _newFeePercent;
    }

    function _takeFee(address from, uint256 amount) internal returns (uint256) {
        if (!isFeeExempt[from]) {
            uint256 feeAmount = (amount * feePercent) / 100;
            _transfer(from, feeDestination, feeAmount);
            emit FeeTaken(from, feeDestination, feeAmount);
            return amount - feeAmount;
        } else {
            return amount;
        }
    }

    function setLimitExemption(address account, bool exempt) public onlyOwner {
        isLimitExempt[account] = exempt;
    }

    function setFeeExemption(address account, bool exempt) public onlyOwner {
        isFeeExempt[account] = exempt;
    }

    function enableLimit(bool _limitEnabled) public onlyOwner {
        limitEnabled = _limitEnabled;
    }

    function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) {
        if (limitEnabled && !isLimitExempt[recipient]) {
            require(balanceOf(recipient) + amount <= MAX_HOLDING, "Recipient exceeds holding limit");
        }
        uint256 amountAfterFee = _takeFee(_msgSender(), amount);
        return super.transfer(recipient, amountAfterFee);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) {
        uint256 currentAllowance = allowance(sender, _msgSender());
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        if (limitEnabled && !isLimitExempt[recipient]) {
            require(balanceOf(recipient) + amount <= MAX_HOLDING, "Recipient exceeds holding limit");
        }
        uint256 amountAfterFee = _takeFee(sender, amount);
        _approve(sender, _msgSender(), currentAllowance - amount);
        return super.transferFrom(sender, recipient, amountAfterFee);
    }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 3 of 8 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 4 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 5 of 8 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 6 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 7 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 8 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeeTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_HOLDING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitEnabled","type":"bool"}],"name":"enableLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeDestination","type":"address"}],"name":"setFeeDestination","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setFeeExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFeePercent","type":"uint256"}],"name":"setFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setLimitExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a600755620000196200068c60201b60201c565b600a62000027919062000c35565b621e848062000037919062000c85565b600855600160095f6101000a81548160ff021916908315150217905550620000646200068c60201b60201c565b600a62000072919062000c35565b633b9aca0062000083919062000c85565b600a5573ca33f892e1ebaea9b590aa1c979abc44612e718a600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806080016040528073c9e5056713c0ee67b479178fc086c71065da6d3673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001732d0351345699f10cae0250cac72a9bbd378df33773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173b30c895d67bb93a5e1779ed6d7df4370b284866873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173e56f2afc852ba7491cdadb58e0a702c3eb25c7f673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600e9060046200020d92919062000a05565b503480156200021a575f80fd5b50336040518060400160405280600681526020017f434f514e4f5400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f434f514e4f540000000000000000000000000000000000000000000000000000815250816003908162000299919062000f2a565b508060049081620002ab919062000f2a565b50505060016005819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000329575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000320919062001051565b60405180910390fd5b6200033a816200069460201b60201c565b505f6103e8600f600a5462000350919062000c85565b6200035c919062001099565b90505f6004826200036e919062000c85565b905080600a5411620003b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ae906200112e565b60405180910390fd5b620003d83382600a54620003cc91906200114e565b6200075760201b60201c565b5f5b600481101562000443576200042d600e8260048110620003ff57620003fe62001188565b5b015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200075760201b60201c565b80806200043a90620011b5565b915050620003da565b506001600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050620012a2565b5f6012905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007ca575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620007c1919062001051565b60405180910390fd5b620007dd5f8383620007e160201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000835578060025f82825462000828919062001201565b9250508190555062000906565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620008c1578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620008b8939291906200124c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200094f578060025f828254039250508190555062000999565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009f8919062001287565b60405180910390a3505050565b826004810192821562000a73579160200282015b8281111562000a72578251825f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000a19565b5b50905062000a82919062000a86565b5090565b5b8082111562000a9f575f815f90555060010162000a87565b5090565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b2d5780860481111562000b055762000b0462000aa3565b5b600185161562000b155780820291505b808102905062000b258562000ad0565b945062000ae5565b94509492505050565b5f8262000b47576001905062000c19565b8162000b56575f905062000c19565b816001811462000b6f576002811462000b7a5762000bb0565b600191505062000c19565b60ff84111562000b8f5762000b8e62000aa3565b5b8360020a91508482111562000ba95762000ba862000aa3565b5b5062000c19565b5060208310610133831016604e8410600b841016171562000bea5782820a90508381111562000be45762000be362000aa3565b5b62000c19565b62000bf9848484600162000adc565b9250905081840481111562000c135762000c1262000aa3565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f62000c418262000c20565b915062000c4e8362000c29565b925062000c7d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b36565b905092915050565b5f62000c918262000c20565b915062000c9e8362000c20565b925082820262000cae8162000c20565b9150828204841483151762000cc85762000cc762000aa3565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000d4b57607f821691505b60208210810362000d615762000d6062000d06565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000dc57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d88565b62000dd1868362000d88565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000e1262000e0c62000e068462000c20565b62000de9565b62000c20565b9050919050565b5f819050919050565b62000e2d8362000df2565b62000e4562000e3c8262000e19565b84845462000d94565b825550505050565b5f90565b62000e5b62000e4d565b62000e6881848462000e22565b505050565b5b8181101562000e8f5762000e835f8262000e51565b60018101905062000e6e565b5050565b601f82111562000ede5762000ea88162000d67565b62000eb38462000d79565b8101602085101562000ec3578190505b62000edb62000ed28562000d79565b83018262000e6d565b50505b505050565b5f82821c905092915050565b5f62000f005f198460080262000ee3565b1980831691505092915050565b5f62000f1a838362000eef565b9150826002028217905092915050565b62000f358262000ccf565b67ffffffffffffffff81111562000f515762000f5062000cd9565b5b62000f5d825462000d33565b62000f6a82828562000e93565b5f60209050601f83116001811462000fa0575f841562000f8b578287015190505b62000f97858262000f0d565b86555062001006565b601f19841662000fb08662000d67565b5f5b8281101562000fd95784890151825560018201915060208501945060208101905062000fb2565b8683101562000ff9578489015162000ff5601f89168262000eef565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62001039826200100e565b9050919050565b6200104b816200102d565b82525050565b5f602082019050620010665f83018462001040565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620010a58262000c20565b9150620010b28362000c20565b925082620010c557620010c46200106c565b5b828204905092915050565b5f82825260208201905092915050565b7f446973747269627574696f6e206578636565647320737570706c7900000000005f82015250565b5f62001116601b83620010d0565b91506200112382620010e0565b602082019050919050565b5f6020820190508181035f830152620011478162001108565b9050919050565b5f6200115a8262000c20565b9150620011678362000c20565b925082820390508181111562001182576200118162000aa3565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f620011c18262000c20565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620011f657620011f562000aa3565b5b600182019050919050565b5f6200120d8262000c20565b91506200121a8362000c20565b925082820190508082111562001235576200123462000aa3565b5b92915050565b620012468162000c20565b82525050565b5f606082019050620012615f83018662001040565b6200127060208301856200123b565b6200127f60408301846200123b565b949350505050565b5f6020820190506200129c5f8301846200123b565b92915050565b611d5780620012b05f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c8063751fd179116100b6578063a9059cbb1161007a578063a9059cbb14610350578063b0c150af14610380578063d108e2a6146103b0578063dd62ed3e146103ce578063f2fde38b146103fe578063fbe532341461041a57610140565b8063751fd179146102be5780637ce3489b146102da5780637fd6f15c146102f65780638da5cb5b1461031457806395d89b411461033257610140565b80633f4218e0116101085780633f4218e0146101fe5780634463c1b21461022e5780635fcd7e501461024a5780636d800a3c1461026657806370a0823114610284578063715018a6146102b457610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b0578063313ce567146101e0575b5f80fd5b61014c610436565b60405161015991906115b8565b60405180910390f35b61017c60048036038101906101779190611669565b6104c6565b60405161018991906116c1565b60405180910390f35b61019a6104e8565b6040516101a791906116e9565b60405180910390f35b6101ca60048036038101906101c59190611702565b6104f1565b6040516101d791906116c1565b60405180910390f35b6101e8610659565b6040516101f5919061176d565b60405180910390f35b61021860048036038101906102139190611786565b610661565b60405161022591906116c1565b60405180910390f35b610248600480360381019061024391906117db565b61067e565b005b610264600480360381019061025f9190611819565b6106de565b005b61026e610702565b60405161027b91906116c1565b60405180910390f35b61029e60048036038101906102999190611786565b610714565b6040516102ab91906116e9565b60405180910390f35b6102bc610759565b005b6102d860048036038101906102d391906117db565b61076c565b005b6102f460048036038101906102ef9190611844565b6107cc565b005b6102fe610822565b60405161030b91906116e9565b60405180910390f35b61031c610828565b604051610329919061187e565b60405180910390f35b61033a610850565b60405161034791906115b8565b60405180910390f35b61036a60048036038101906103659190611669565b6108e0565b60405161037791906116c1565b60405180910390f35b61039a60048036038101906103959190611786565b6109d8565b6040516103a791906116c1565b60405180910390f35b6103b86109f5565b6040516103c591906116e9565b60405180910390f35b6103e860048036038101906103e39190611897565b6109fb565b6040516103f591906116e9565b60405180910390f35b61041860048036038101906104139190611786565b610a7d565b005b610434600480360381019061042f9190611786565b610b01565b005b60606003805461044590611902565b80601f016020809104026020016040519081016040528092919081815260200182805461047190611902565b80156104bc5780601f10610493576101008083540402835291602001916104bc565b820191905f5260205f20905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b5f806104d0610ca6565b90506104dd818585610cad565b600191505092915050565b5f600254905090565b5f6104fa610cbf565b5f61050c85610507610ca6565b6109fb565b905082811015610551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610548906119a2565b60405180910390fd5b60095f9054906101000a900460ff1680156105b35750600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561061157600854836105c586610714565b6105cf91906119ed565b1115610610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060790611a6a565b60405180910390fd5b5b5f61061c8685610d0e565b905061063b8661062a610ca6565b86856106369190611a88565b610cad565b610646868683610e20565b92505050610652610e4e565b9392505050565b5f6012905090565b600d602052805f5260405f205f915054906101000a900460ff1681565b610686610e58565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6106e6610e58565b8060095f6101000a81548160ff02191690831515021790555050565b60095f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610761610e58565b61076a5f610edf565b565b610774610e58565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6107d4610e58565b6064811115610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90611b05565b60405180910390fd5b8060078190555050565b60075481565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461085f90611902565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90611902565b80156108d65780601f106108ad576101008083540402835291602001916108d6565b820191905f5260205f20905b8154815290600101906020018083116108b957829003601f168201915b5050505050905090565b5f6108e9610cbf565b60095f9054906101000a900460ff16801561094b5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156109a9576008548261095d85610714565b61096791906119ed565b11156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611a6a565b60405180910390fd5b5b5f6109bb6109b5610ca6565b84610d0e565b90506109c78482610fa2565b9150506109d2610e4e565b92915050565b600c602052805f5260405f205f915054906101000a900460ff1681565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a85610e58565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aec919061187e565b60405180910390fd5b610afe81610edf565b50565b610b09610e58565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611b93565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f33905090565b610cba8383836001610fc4565b505050565b600260055403610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90611bfb565b60405180910390fd5b6002600581905550565b5f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610e16575f606460075484610d6e9190611c19565b610d789190611c87565b9050610da684600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611193565b7fe0e765ab26c1caf691c510426951246128b96830e49cc81d8c093fd551abac3584600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051610dfa93929190611cb7565b60405180910390a18083610e0e9190611a88565b915050610e1a565b8190505b92915050565b5f80610e2a610ca6565b9050610e37858285611283565b610e42858585611193565b60019150509392505050565b6001600581905550565b610e60610ca6565b73ffffffffffffffffffffffffffffffffffffffff16610e7e610828565b73ffffffffffffffffffffffffffffffffffffffff1614610edd57610ea1610ca6565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ed4919061187e565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80610fac610ca6565b9050610fb9818585611193565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611034575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161102b919061187e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a4575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161109b919061187e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561118d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161118491906116e9565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611203575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111fa919061187e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611273575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161126a919061187e565b60405180910390fd5b61127e838383611315565b505050565b5f61128e84846109fb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130f5781811015611300578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112f793929190611cec565b60405180910390fd5b61130e84848484035f610fc4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611365578060025f82825461135991906119ed565b92505081905550611433565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113ee578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113e593929190611cec565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147a578060025f82825403925050819055506114c4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152191906116e9565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561156557808201518184015260208101905061154a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61158a8261152e565b6115948185611538565b93506115a4818560208601611548565b6115ad81611570565b840191505092915050565b5f6020820190508181035f8301526115d08184611580565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611605826115dc565b9050919050565b611615816115fb565b811461161f575f80fd5b50565b5f813590506116308161160c565b92915050565b5f819050919050565b61164881611636565b8114611652575f80fd5b50565b5f813590506116638161163f565b92915050565b5f806040838503121561167f5761167e6115d8565b5b5f61168c85828601611622565b925050602061169d85828601611655565b9150509250929050565b5f8115159050919050565b6116bb816116a7565b82525050565b5f6020820190506116d45f8301846116b2565b92915050565b6116e381611636565b82525050565b5f6020820190506116fc5f8301846116da565b92915050565b5f805f60608486031215611719576117186115d8565b5b5f61172686828701611622565b935050602061173786828701611622565b925050604061174886828701611655565b9150509250925092565b5f60ff82169050919050565b61176781611752565b82525050565b5f6020820190506117805f83018461175e565b92915050565b5f6020828403121561179b5761179a6115d8565b5b5f6117a884828501611622565b91505092915050565b6117ba816116a7565b81146117c4575f80fd5b50565b5f813590506117d5816117b1565b92915050565b5f80604083850312156117f1576117f06115d8565b5b5f6117fe85828601611622565b925050602061180f858286016117c7565b9150509250929050565b5f6020828403121561182e5761182d6115d8565b5b5f61183b848285016117c7565b91505092915050565b5f60208284031215611859576118586115d8565b5b5f61186684828501611655565b91505092915050565b611878816115fb565b82525050565b5f6020820190506118915f83018461186f565b92915050565b5f80604083850312156118ad576118ac6115d8565b5b5f6118ba85828601611622565b92505060206118cb85828601611622565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061191957607f821691505b60208210810361192c5761192b6118d5565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61198c602883611538565b915061199782611932565b604082019050919050565b5f6020820190508181035f8301526119b981611980565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119f782611636565b9150611a0283611636565b9250828201905080821115611a1a57611a196119c0565b5b92915050565b7f526563697069656e74206578636565647320686f6c64696e67206c696d6974005f82015250565b5f611a54601f83611538565b9150611a5f82611a20565b602082019050919050565b5f6020820190508181035f830152611a8181611a48565b9050919050565b5f611a9282611636565b9150611a9d83611636565b9250828203905081811115611ab557611ab46119c0565b5b92915050565b7f4665652070657263656e742063616e6e6f7420657863656564203130300000005f82015250565b5f611aef601d83611538565b9150611afa82611abb565b602082019050919050565b5f6020820190508181035f830152611b1c81611ae3565b9050919050565b7f4e6577206665652064657374696e6174696f6e2063616e6e6f742062652074685f8201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b5f611b7d602e83611538565b9150611b8882611b23565b604082019050919050565b5f6020820190508181035f830152611baa81611b71565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f611be5601f83611538565b9150611bf082611bb1565b602082019050919050565b5f6020820190508181035f830152611c1281611bd9565b9050919050565b5f611c2382611636565b9150611c2e83611636565b9250828202611c3c81611636565b91508282048414831517611c5357611c526119c0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611c9182611636565b9150611c9c83611636565b925082611cac57611cab611c5a565b5b828204905092915050565b5f606082019050611cca5f83018661186f565b611cd7602083018561186f565b611ce460408301846116da565b949350505050565b5f606082019050611cff5f83018661186f565b611d0c60208301856116da565b611d1960408301846116da565b94935050505056fea264697066735822122047c6f990998e4447be3b9c8bc364deec23ee4833d134b9d0a48973156af36f7564736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c8063751fd179116100b6578063a9059cbb1161007a578063a9059cbb14610350578063b0c150af14610380578063d108e2a6146103b0578063dd62ed3e146103ce578063f2fde38b146103fe578063fbe532341461041a57610140565b8063751fd179146102be5780637ce3489b146102da5780637fd6f15c146102f65780638da5cb5b1461031457806395d89b411461033257610140565b80633f4218e0116101085780633f4218e0146101fe5780634463c1b21461022e5780635fcd7e501461024a5780636d800a3c1461026657806370a0823114610284578063715018a6146102b457610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b0578063313ce567146101e0575b5f80fd5b61014c610436565b60405161015991906115b8565b60405180910390f35b61017c60048036038101906101779190611669565b6104c6565b60405161018991906116c1565b60405180910390f35b61019a6104e8565b6040516101a791906116e9565b60405180910390f35b6101ca60048036038101906101c59190611702565b6104f1565b6040516101d791906116c1565b60405180910390f35b6101e8610659565b6040516101f5919061176d565b60405180910390f35b61021860048036038101906102139190611786565b610661565b60405161022591906116c1565b60405180910390f35b610248600480360381019061024391906117db565b61067e565b005b610264600480360381019061025f9190611819565b6106de565b005b61026e610702565b60405161027b91906116c1565b60405180910390f35b61029e60048036038101906102999190611786565b610714565b6040516102ab91906116e9565b60405180910390f35b6102bc610759565b005b6102d860048036038101906102d391906117db565b61076c565b005b6102f460048036038101906102ef9190611844565b6107cc565b005b6102fe610822565b60405161030b91906116e9565b60405180910390f35b61031c610828565b604051610329919061187e565b60405180910390f35b61033a610850565b60405161034791906115b8565b60405180910390f35b61036a60048036038101906103659190611669565b6108e0565b60405161037791906116c1565b60405180910390f35b61039a60048036038101906103959190611786565b6109d8565b6040516103a791906116c1565b60405180910390f35b6103b86109f5565b6040516103c591906116e9565b60405180910390f35b6103e860048036038101906103e39190611897565b6109fb565b6040516103f591906116e9565b60405180910390f35b61041860048036038101906104139190611786565b610a7d565b005b610434600480360381019061042f9190611786565b610b01565b005b60606003805461044590611902565b80601f016020809104026020016040519081016040528092919081815260200182805461047190611902565b80156104bc5780601f10610493576101008083540402835291602001916104bc565b820191905f5260205f20905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b5f806104d0610ca6565b90506104dd818585610cad565b600191505092915050565b5f600254905090565b5f6104fa610cbf565b5f61050c85610507610ca6565b6109fb565b905082811015610551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610548906119a2565b60405180910390fd5b60095f9054906101000a900460ff1680156105b35750600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561061157600854836105c586610714565b6105cf91906119ed565b1115610610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060790611a6a565b60405180910390fd5b5b5f61061c8685610d0e565b905061063b8661062a610ca6565b86856106369190611a88565b610cad565b610646868683610e20565b92505050610652610e4e565b9392505050565b5f6012905090565b600d602052805f5260405f205f915054906101000a900460ff1681565b610686610e58565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6106e6610e58565b8060095f6101000a81548160ff02191690831515021790555050565b60095f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610761610e58565b61076a5f610edf565b565b610774610e58565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6107d4610e58565b6064811115610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90611b05565b60405180910390fd5b8060078190555050565b60075481565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461085f90611902565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90611902565b80156108d65780601f106108ad576101008083540402835291602001916108d6565b820191905f5260205f20905b8154815290600101906020018083116108b957829003601f168201915b5050505050905090565b5f6108e9610cbf565b60095f9054906101000a900460ff16801561094b5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156109a9576008548261095d85610714565b61096791906119ed565b11156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611a6a565b60405180910390fd5b5b5f6109bb6109b5610ca6565b84610d0e565b90506109c78482610fa2565b9150506109d2610e4e565b92915050565b600c602052805f5260405f205f915054906101000a900460ff1681565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a85610e58565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aec919061187e565b60405180910390fd5b610afe81610edf565b50565b610b09610e58565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611b93565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f33905090565b610cba8383836001610fc4565b505050565b600260055403610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90611bfb565b60405180910390fd5b6002600581905550565b5f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610e16575f606460075484610d6e9190611c19565b610d789190611c87565b9050610da684600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611193565b7fe0e765ab26c1caf691c510426951246128b96830e49cc81d8c093fd551abac3584600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051610dfa93929190611cb7565b60405180910390a18083610e0e9190611a88565b915050610e1a565b8190505b92915050565b5f80610e2a610ca6565b9050610e37858285611283565b610e42858585611193565b60019150509392505050565b6001600581905550565b610e60610ca6565b73ffffffffffffffffffffffffffffffffffffffff16610e7e610828565b73ffffffffffffffffffffffffffffffffffffffff1614610edd57610ea1610ca6565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ed4919061187e565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80610fac610ca6565b9050610fb9818585611193565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611034575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161102b919061187e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a4575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161109b919061187e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561118d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161118491906116e9565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611203575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111fa919061187e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611273575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161126a919061187e565b60405180910390fd5b61127e838383611315565b505050565b5f61128e84846109fb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130f5781811015611300578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112f793929190611cec565b60405180910390fd5b61130e84848484035f610fc4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611365578060025f82825461135991906119ed565b92505081905550611433565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113ee578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113e593929190611cec565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147a578060025f82825403925050819055506114c4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152191906116e9565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561156557808201518184015260208101905061154a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61158a8261152e565b6115948185611538565b93506115a4818560208601611548565b6115ad81611570565b840191505092915050565b5f6020820190508181035f8301526115d08184611580565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611605826115dc565b9050919050565b611615816115fb565b811461161f575f80fd5b50565b5f813590506116308161160c565b92915050565b5f819050919050565b61164881611636565b8114611652575f80fd5b50565b5f813590506116638161163f565b92915050565b5f806040838503121561167f5761167e6115d8565b5b5f61168c85828601611622565b925050602061169d85828601611655565b9150509250929050565b5f8115159050919050565b6116bb816116a7565b82525050565b5f6020820190506116d45f8301846116b2565b92915050565b6116e381611636565b82525050565b5f6020820190506116fc5f8301846116da565b92915050565b5f805f60608486031215611719576117186115d8565b5b5f61172686828701611622565b935050602061173786828701611622565b925050604061174886828701611655565b9150509250925092565b5f60ff82169050919050565b61176781611752565b82525050565b5f6020820190506117805f83018461175e565b92915050565b5f6020828403121561179b5761179a6115d8565b5b5f6117a884828501611622565b91505092915050565b6117ba816116a7565b81146117c4575f80fd5b50565b5f813590506117d5816117b1565b92915050565b5f80604083850312156117f1576117f06115d8565b5b5f6117fe85828601611622565b925050602061180f858286016117c7565b9150509250929050565b5f6020828403121561182e5761182d6115d8565b5b5f61183b848285016117c7565b91505092915050565b5f60208284031215611859576118586115d8565b5b5f61186684828501611655565b91505092915050565b611878816115fb565b82525050565b5f6020820190506118915f83018461186f565b92915050565b5f80604083850312156118ad576118ac6115d8565b5b5f6118ba85828601611622565b92505060206118cb85828601611622565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061191957607f821691505b60208210810361192c5761192b6118d5565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61198c602883611538565b915061199782611932565b604082019050919050565b5f6020820190508181035f8301526119b981611980565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119f782611636565b9150611a0283611636565b9250828201905080821115611a1a57611a196119c0565b5b92915050565b7f526563697069656e74206578636565647320686f6c64696e67206c696d6974005f82015250565b5f611a54601f83611538565b9150611a5f82611a20565b602082019050919050565b5f6020820190508181035f830152611a8181611a48565b9050919050565b5f611a9282611636565b9150611a9d83611636565b9250828203905081811115611ab557611ab46119c0565b5b92915050565b7f4665652070657263656e742063616e6e6f7420657863656564203130300000005f82015250565b5f611aef601d83611538565b9150611afa82611abb565b602082019050919050565b5f6020820190508181035f830152611b1c81611ae3565b9050919050565b7f4e6577206665652064657374696e6174696f6e2063616e6e6f742062652074685f8201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b5f611b7d602e83611538565b9150611b8882611b23565b604082019050919050565b5f6020820190508181035f830152611baa81611b71565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f611be5601f83611538565b9150611bf082611bb1565b602082019050919050565b5f6020820190508181035f830152611c1281611bd9565b9050919050565b5f611c2382611636565b9150611c2e83611636565b9250828202611c3c81611636565b91508282048414831517611c5357611c526119c0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611c9182611636565b9150611c9c83611636565b925082611cac57611cab611c5a565b5b828204905092915050565b5f606082019050611cca5f83018661186f565b611cd7602083018561186f565b611ce460408301846116da565b949350505050565b5f606082019050611cff5f83018661186f565b611d0c60208301856116da565b611d1960408301846116da565b94935050505056fea264697066735822122047c6f990998e4447be3b9c8bc364deec23ee4833d134b9d0a48973156af36f7564736f6c63430008140033

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.