ETH Price: $1,970.46 (-0.55%)
Gas: 0.03 Gwei

Token

Coatl (CTL)
 

Overview

Max Total Supply

875,000,000 CTL

Holders

25,065 (0.00%)

Transfers

-
0

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

COATL is a sustainable real estate and conservation project. Backed by the COATL cryptocurrency, the project integrates eco-friendly housing, a protected natural reserve, and a blockchain financial ecosystem to generate value for investors while promoting environmental and social impact

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Coatl

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
// contracts/Coatl.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title Coatl Token
 * @dev ERC20 token with burn and fee mechanisms.
 * Includes whitelist and blacklist functionality.
 * Main token for COatl One developments
 * @custom:security-contact security@coatl.one
 */
contract Coatl is ERC20, ERC20Burnable, Ownable {
    // Custom Errors
    error AccountBlacklisted(address account);
    error AccountAlreadyWhitelisted(address account);
    error AccountNotWhitelisted(address account);
    error AccountAlreadyBlacklisted(address account);
    error AccountNotBlacklisted(address account);
    error FeeTooHigh(uint256 fee);
    error ZeroAddressNotAllowed();
    error SenderBlacklisted(address sender);
    error RecipientBlacklisted(address recipient);
    error UnauthorizedCaller();
    error BurnFeeTooHigh(uint256 fee);

    // White and Blacklist mapping
    mapping(address account => uint8 status) private _listStatus; // 0 = none, 1 = whitelisted, 2 = blacklisted

    // Burn fee exceptions mapping
    mapping(address account => bool isExempt) private _burnFeeExceptions;

    // MultiSig wallet address
    address public multiSigWallet;

    // Constants for readability
    uint8 private constant WHITELISTED = 1;
    uint8 private constant BLACKLISTED = 2;

    // Transfer commission (percentage)
    /**
     * @notice The percentage fee applied to token transfers.
     * @dev The fee is deducted from the transfer amount and sent to the fee receiver.
     * fees are used for environment and regional or local community development.
     * @return The current transfer fee percentage (e.g., 1 for 1%).
     */
    uint256 public transferFee = 0; // start with 0% commission

    // Address to receive the commission
    /**
     * @notice The address that receives the transfer fee.
     * @dev By default, this is set to to a multi-signature wallet address dedicated to the fees.
     * @return The current fee receiver address.
     */
    address public feeReceiver; // Address to receive the commission

    // Burn fee (percentage)
    /**
     * @notice The percentage fee applied when tokens are burned.
     * @dev The fee is deducted from the burn amount and sent to the fee receiver.
     * @return The current burn fee percentage (e.g., 1 for 1%).
     */
    uint256 public burnFee = 2; // 2% burn fee

    // Events
    /**
     * @dev Emitted when an account's whitelist or blacklist status is updated.
     */
    event ListStatusUpdated(
        address indexed account, // Indexed for filtering by account
        bool whitelisted,
        bool blacklisted
    );

    /**
     * @dev Emitted when the transfer fee is updated.
     */
    event FeeUpdated(uint256 indexed newFee); // Indexed for filtering by fee

    /**
     * @dev Emitted when the burn fee is updated.
     */
    event BurnFeeUpdated(uint256 indexed newFee); // Indexed for filtering by burn fee

    /**
     * @dev Emitted when the fee receiver address is updated.
     */
    event FeeReceiverUpdated(address indexed newReceiver); // Indexed for filtering by receiver

    /**
     * @dev Emitted when the contract is initialized.
     */
    event ContractInitialized(address indexed owner, uint256 initialSupply);

    /**
     * @dev Emitted when an account is added to the burn fee exception list.
     */
    event BurnFeeExceptionUpdated(address indexed account, bool isExempt);

    /**
     * @dev Emitted when a transfer occurs with fees.
     */
    event TransferWithFee(address indexed sender, address indexed recipient, uint256 amount, uint256 fee);

    /**
     * @dev Emitted when tokens are burned with fees.
     */
    event BurnWithFee(address indexed sender, uint256 burnAmount, uint256 feeAmount);

    /**
     * @dev Emitted when the MultiSig wallet address is updated.
     */
    event MultiSigWalletUpdated(address indexed newWallet);

    /**
     * @notice Constructor to initialize the Coatl token.
     * @param initialSupply The initial supply of tokens to mint.
     * @param _multiSigWallet The address of the MultiSig wallet for administrative purposes.
     * @param _feeReceiver The address of the MultiSig wallet for receiving fees.
     * @param initialWhitelistedAccounts An array of accounts to be whitelisted during deployment.
     */
    constructor(
        uint256 initialSupply,
        address _multiSigWallet,
        address _feeReceiver,
        address[] memory initialWhitelistedAccounts
    ) ERC20("Coatl", "CTL") Ownable(msg.sender) {
        if (_multiSigWallet == address(0)) revert ZeroAddressNotAllowed();
        if (_feeReceiver == address(0)) revert ZeroAddressNotAllowed();

        multiSigWallet = _multiSigWallet;
        feeReceiver = _feeReceiver; // Set the fee receiver to the specified address
        _mint(multiSigWallet, initialSupply); // Mint initial supply to the multi-signature wallet

        // Add initial accounts to the whitelist
        for (uint256 i = 0; i < initialWhitelistedAccounts.length; i++) {
            address account = initialWhitelistedAccounts[i];
            if (account == address(0)) revert ZeroAddressNotAllowed();
            _listStatus[account] = WHITELISTED;
            emit ListStatusUpdated(account, true, false); // Emit event for each whitelisted account
        }

        emit ContractInitialized(multiSigWallet, initialSupply); // Emit event
    }

    /**
     * @notice Updates the MultiSig wallet address.
     * @dev Only callable by the current MultiSig wallet.
     * @param newWallet The new MultiSig wallet address.
     * @custom:throws UnauthorizedCaller If the caller is not the current MultiSig wallet.
     * @custom:throws ZeroAddressNotAllowed If the new wallet address is the zero address.
     */
    function updateMultiSigWallet(address newWallet) external onlyMultiSig {
        require(newWallet != address(0), "Invalid MultiSig wallet address");
        multiSigWallet = newWallet;
        emit MultiSigWalletUpdated(newWallet);
    }

    /**
     * @dev Modifier to restrict access to the MultiSig wallet.
     */
    modifier onlyMultiSig() {
        if (msg.sender != multiSigWallet) revert UnauthorizedCaller();
        _;
    }

    // Whitelist functions

    /**
     * @notice Adds an account to the whitelist.
     * @dev Only callable by the MultiSig wallet.
     * whitelisted accounts are excluded from transfer fees.
     * @param account The address to be added to the whitelist.
     */
    function addWhitelist(address account) external onlyMultiSig {
        if (_listStatus[account] == BLACKLISTED)
            revert AccountBlacklisted(account);
        if (_listStatus[account] == WHITELISTED)
            revert AccountAlreadyWhitelisted(account);

        _listStatus[account] = WHITELISTED;
        emit ListStatusUpdated(account, true, false); // Emit event
    }

    /**
     * @notice Removes an account from the whitelist.
     * @dev Only callable by the MultiSig wallet.
     * @param account The address to be removed from the whitelist.
     */
    function removeWhitelist(address account) external onlyMultiSig {
        if (_listStatus[account] != WHITELISTED)
            revert AccountNotWhitelisted(account);

        _listStatus[account] = 0;
        emit ListStatusUpdated(account, false, false); // Emit event
    }

    /**
     * @notice Checks if an account is whitelisted.
     * @param account The address to check.
     * @return True if the account is whitelisted, false otherwise.
     */
    function isWhitelisted(address account) external view returns (bool) {
        return _listStatus[account] == WHITELISTED;
    }

    // Blacklist functions

    /**
     * @notice Adds an account to the blacklist.
     * @dev Only callable by the MultiSig wallet.
     * @param account The address to be added to the blacklist.
     */
    function addBlacklist(address account) external onlyMultiSig {
        if (_listStatus[account] == BLACKLISTED)
            revert AccountAlreadyBlacklisted(account);

        // If the account is whitelisted, remove it from the whitelist
        if (_listStatus[account] == WHITELISTED) {
            _listStatus[account] = 0; // Remove from whitelist
            emit ListStatusUpdated(account, false, false); // Emit event
        }

        _listStatus[account] = BLACKLISTED;
        emit ListStatusUpdated(account, false, true); // Emit event
    }

    /**
     * @notice Removes an account from the blacklist.
     * @dev Only callable by the MultiSig wallet.
     * @param account The address to be removed from the blacklist.
     */
    function removeBlacklist(address account) external onlyMultiSig {
        if (_listStatus[account] != BLACKLISTED)
            revert AccountNotBlacklisted(account);

        _listStatus[account] = 0;
        emit ListStatusUpdated(account, false, false); // Emit event
    }

    /**
     * @notice Checks if an account is blacklisted.
     * @param account The address to check.
     * @return True if the account is blacklisted, false otherwise.
     */
    function isBlacklisted(address account) external view returns (bool) {
        return _listStatus[account] == BLACKLISTED;
    }

    // Add burn exceptions

    /**
     * @notice Adds an account to the burn fee exception list.
     * @dev Only callable by the contract owner.
     * @param account The address to be added to the exception list.
     */
    function addBurnFeeException(address account) external onlyOwner {
        _burnFeeExceptions[account] = true;
        emit BurnFeeExceptionUpdated(account, true); // Emit event
    }

    /**
     * @notice Removes an account from the burn fee exception list.
     * @dev Only callable by the contract owner.
     * @param account The address to be removed from the exception list.
     */
    function removeBurnFeeException(address account) external onlyOwner {
        _burnFeeExceptions[account] = false;
        emit BurnFeeExceptionUpdated(account, false); // Emit event
    }

    /**
     * @notice Checks if an account is exempt from the burn fee.
     * @param account The address to check.
     * @return True if the account is exempt, false otherwise.
     */
    function isBurnFeeException(address account) external view returns (bool) {
        return _burnFeeExceptions[account];
    }

    // Transfer commission functions

    /**
     * @notice Updates the transfer fee percentage.
     * @dev Only callable by the contract owner. The fee is capped at 5%.
     * @param newFee The new transfer fee percentage.
     * @custom:throws FeeTooHigh If the new fee exceeds 5%.
     */
    function updateFee(uint256 newFee) external onlyOwner {
        if (newFee > 5) revert FeeTooHigh(newFee);

        if (newFee == transferFee) {
            return;
        }

        transferFee = newFee;
        emit FeeUpdated(newFee);
    }

    // Burn fee functions

    /**
     * @notice Updates the burn fee percentage.
     * @dev Only callable by the contract owner. The fee is capped at 5%.
     * @param newFee The new burn fee percentage.
     * @custom:throws BurnFeeTooHigh If the new fee exceeds 5%.
     */
    function updateBurnFee(uint256 newFee) external onlyOwner {
        if (newFee > 5) revert BurnFeeTooHigh(newFee);

        if (newFee == burnFee) {
            return;
        }

        burnFee = newFee;
        emit BurnFeeUpdated(newFee);
    }

    /**
     * @notice Updates the fee receiver address.
     * @dev Only callable by the MultiSig wallet.
     * @param newReceiver The new fee receiver address.
     * @custom:throws ZeroAddressNotAllowed If the new receiver address is the zero address.
     */
    function updateFeeReceiver(address newReceiver) external onlyMultiSig {
        if (newReceiver == address(0)) revert ZeroAddressNotAllowed();

        feeReceiver = newReceiver;
        emit FeeReceiverUpdated(newReceiver);
    }

    // Overrides

    /**
     * @dev Internal function to handle token transfers with fee and blacklist checks.
     * @param sender The address sending the tokens.
     * @param recipient The address receiving the tokens.
     * @param amount The amount of tokens to transfer.
     */
    function _update(
        address sender,
        address recipient,
        uint256 amount
    ) internal override(ERC20) {
        if (_listStatus[sender] == BLACKLISTED)
            revert SenderBlacklisted(sender);
        if (_listStatus[recipient] == BLACKLISTED)
            revert RecipientBlacklisted(recipient);

        bool isExemptFromFee = sender == address(0) || // Minting
            sender == feeReceiver ||
            _listStatus[sender] == WHITELISTED ||
            _listStatus[recipient] == WHITELISTED ||
            transferFee == 0;

        if (isExemptFromFee) {
            super._update(sender, recipient, amount);
        } else {
            uint256 feeAmount = (amount * transferFee) / 100;
            uint256 transferAmount = amount - feeAmount;

            super._update(sender, recipient, transferAmount);
            super._update(sender, feeReceiver, feeAmount);
            emit TransferWithFee(sender, recipient, transferAmount, feeAmount); // Emit event
        }
    }

    /**
     * @notice Burns a specified amount of tokens.
     * @dev Applies a burn fee unless the sender is exempt.
     * @param amount The amount of tokens to burn.
     * @custom:throws SenderBlacklisted If the sender is blacklisted.
     */
    function burn(uint256 amount) public override {
        address sender = _msgSender(); // Use _msgSender() for consistency

        bool isExemptFromBurnFee = _burnFeeExceptions[sender] ||
            sender == owner() ||
            burnFee == 0;

        if (isExemptFromBurnFee) {
            super.burn(amount);
        } else {
            uint256 feeAmount = (amount * burnFee) / 100;
            uint256 burnAmount = amount - feeAmount;

            super.burn(burnAmount);
            super._update(sender, feeReceiver, feeAmount);
            emit BurnWithFee(sender, burnAmount, feeAmount); // Emit event
        }
    }
}

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

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

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.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 ERC-20
 * applications.
 */
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}.
     *
     * Both 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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

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

/**
 * @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 a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of 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
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.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 ERC-20 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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_multiSigWallet","type":"address"},{"internalType":"address","name":"_feeReceiver","type":"address"},{"internalType":"address[]","name":"initialWhitelistedAccounts","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AccountAlreadyBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AccountAlreadyWhitelisted","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AccountBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AccountNotBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AccountNotWhitelisted","type":"error"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"BurnFeeTooHigh","type":"error"},{"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":"uint256","name":"fee","type":"uint256"}],"name":"FeeTooHigh","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"RecipientBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderBlacklisted","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExempt","type":"bool"}],"name":"BurnFeeExceptionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"BurnFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"burnAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"BurnWithFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"initialSupply","type":"uint256"}],"name":"ContractInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newReceiver","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelisted","type":"bool"},{"indexed":false,"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"ListStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"MultiSigWalletUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"TransferWithFee","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBurnFeeException","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBurnFeeException","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multiSigWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBurnFeeException","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"updateBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newReceiver","type":"address"}],"name":"updateFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMultiSigWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009556002600b5534801561001a57600080fd5b50604051613eb8380380613eb8833981810160405281019061003c9190610d83565b336040518060400160405280600581526020017f436f61746c0000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43544c000000000000000000000000000000000000000000000000000000000081525081600390816100b8919061101d565b5080600490816100c8919061101d565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361013d5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161013491906110fe565b60405180910390fd5b61014c8161049160201b60201c565b50600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036101b3576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610219576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102cd600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561055760201b60201c565b60005b81518110156104175760008282815181106102ee576102ed611119565b5b60200260200101519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361035e576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad8060016000604051610401929190611163565b60405180910390a25080806001019150506102d0565b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f290a9d1bd9a992a26d178f5f8d2514edd099295c4ce6340dc3b7f441530cf3e885604051610480919061119b565b60405180910390a25050505061134f565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105c95760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016105c091906110fe565b60405180910390fd5b6105db600083836105df60201b60201c565b5050565b600260ff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361067657826040517f578f3e1300000000000000000000000000000000000000000000000000000000815260040161066d91906110fe565b60405180910390fd5b600260ff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361070d57816040517fcb8e2bcc00000000000000000000000000000000000000000000000000000000815260040161070491906110fe565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806107965750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806107f35750600160ff16600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16145b806108505750600160ff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16145b8061085d57506000600954145b9050801561087b5761087684848461095d60201b60201c565b610957565b600060646009548461088d91906111e5565b6108979190611256565b9050600081846108a79190611287565b90506108ba86868361095d60201b60201c565b6108ed86600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461095d60201b60201c565b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f98bc3fe7d138931a49691b623c256b8812f2a3d7f9b25ba7098c82538977a5d0838560405161094c9291906112bb565b60405180910390a350505b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109af5780600260008282546109a391906112e4565b92505081905550610a82565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a3b578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a3293929190611318565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610acb5780600260008282540392505081905550610b18565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b75919061119b565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b610ba981610b96565b8114610bb457600080fd5b50565b600081519050610bc681610ba0565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610bf782610bcc565b9050919050565b610c0781610bec565b8114610c1257600080fd5b50565b600081519050610c2481610bfe565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610c7882610c2f565b810181811067ffffffffffffffff82111715610c9757610c96610c40565b5b80604052505050565b6000610caa610b82565b9050610cb68282610c6f565b919050565b600067ffffffffffffffff821115610cd657610cd5610c40565b5b602082029050602081019050919050565b600080fd5b6000610cff610cfa84610cbb565b610ca0565b90508083825260208201905060208402830185811115610d2257610d21610ce7565b5b835b81811015610d4b5780610d378882610c15565b845260208401935050602081019050610d24565b5050509392505050565b600082601f830112610d6a57610d69610c2a565b5b8151610d7a848260208601610cec565b91505092915050565b60008060008060808587031215610d9d57610d9c610b8c565b5b6000610dab87828801610bb7565b9450506020610dbc87828801610c15565b9350506040610dcd87828801610c15565b925050606085015167ffffffffffffffff811115610dee57610ded610b91565b5b610dfa87828801610d55565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e5857607f821691505b602082108103610e6b57610e6a610e11565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302610ed37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610e96565b610edd8683610e96565b95508019841693508086168417925050509392505050565b6000819050919050565b6000610f1a610f15610f1084610b96565b610ef5565b610b96565b9050919050565b6000819050919050565b610f3483610eff565b610f48610f4082610f21565b848454610ea3565b825550505050565b600090565b610f5d610f50565b610f68818484610f2b565b505050565b5b81811015610f8c57610f81600082610f55565b600181019050610f6e565b5050565b601f821115610fd157610fa281610e71565b610fab84610e86565b81016020851015610fba578190505b610fce610fc685610e86565b830182610f6d565b50505b505050565b600082821c905092915050565b6000610ff460001984600802610fd6565b1980831691505092915050565b600061100d8383610fe3565b9150826002028217905092915050565b61102682610e06565b67ffffffffffffffff81111561103f5761103e610c40565b5b6110498254610e40565b611054828285610f90565b600060209050601f8311600181146110875760008415611075578287015190505b61107f8582611001565b8655506110e7565b601f19841661109586610e71565b60005b828110156110bd57848901518255600182019150602085019450602081019050611098565b868310156110da57848901516110d6601f891682610fe3565b8355505b6001600288020188555050505b505050505050565b6110f881610bec565b82525050565b600060208201905061111360008301846110ef565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008115159050919050565b61115d81611148565b82525050565b60006040820190506111786000830185611154565b6111856020830184611154565b9392505050565b61119581610b96565b82525050565b60006020820190506111b0600083018461118c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111f082610b96565b91506111fb83610b96565b925082820261120981610b96565b915082820484148315176112205761121f6111b6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061126182610b96565b915061126c83610b96565b92508261127c5761127b611227565b5b828204905092915050565b600061129282610b96565b915061129d83610b96565b92508282039050818111156112b5576112b46111b6565b5b92915050565b60006040820190506112d0600083018561118c565b6112dd602083018461118c565b9392505050565b60006112ef82610b96565b91506112fa83610b96565b9250828201905080821115611312576113116111b6565b5b92915050565b600060608201905061132d60008301866110ef565b61133a602083018561118c565b611347604083018461118c565b949350505050565b612b5a8061135e6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80638da5cb5b1161010f578063c69bebe4116100a2578063f2fde38b11610071578063f2fde38b14610568578063f80f5dd514610584578063fce589d8146105a0578063fe575a87146105be576101e5565b8063c69bebe4146104e4578063ccb44d3314610500578063dd62ed3e1461051c578063eb91e6511461054c576101e5565b8063a9059cbb116100de578063a9059cbb14610448578063acb2ad6f14610478578063b1ad633514610496578063b3f00674146104c6576101e5565b80638da5cb5b146103d45780639012c4a8146103f257806395d89b411461040e5780639cfe42da1461042c576101e5565b80634b8feb4f1161018757806371e367531161015657806371e367531461036457806378c8cda71461038057806379cc67901461039c5780637fd52f48146103b8576101e5565b80634b8feb4f146102f05780636ad7430c1461030e57806370a082311461032a578063715018a61461035a576101e5565b806323b872dd116101c357806323b872dd14610256578063313ce567146102865780633af32abf146102a457806342966c68146102d4576101e5565b806306fdde03146101ea578063095ea7b31461020857806318160ddd14610238575b600080fd5b6101f26105ee565b6040516101ff91906125ed565b60405180910390f35b610222600480360381019061021d91906126a8565b610680565b60405161022f9190612703565b60405180910390f35b6102406106a3565b60405161024d919061272d565b60405180910390f35b610270600480360381019061026b9190612748565b6106ad565b60405161027d9190612703565b60405180910390f35b61028e6106dc565b60405161029b91906127b7565b60405180910390f35b6102be60048036038101906102b991906127d2565b6106e5565b6040516102cb9190612703565b60405180910390f35b6102ee60048036038101906102e991906127ff565b610744565b005b6102f86108bb565b604051610305919061283b565b60405180910390f35b610328600480360381019061032391906127d2565b6108e1565b005b610344600480360381019061033f91906127d2565b610993565b604051610351919061272d565b60405180910390f35b6103626109db565b005b61037e600480360381019061037991906127ff565b6109ef565b005b61039a600480360381019061039591906127d2565b610a7f565b005b6103b660048036038101906103b191906126a8565b610c4a565b005b6103d260048036038101906103cd91906127d2565b610c6a565b005b6103dc610de7565b6040516103e9919061283b565b60405180910390f35b61040c600480360381019061040791906127ff565b610e11565b005b610416610ea1565b60405161042391906125ed565b60405180910390f35b610446600480360381019061044191906127d2565b610f33565b005b610462600480360381019061045d91906126a8565b611204565b60405161046f9190612703565b60405180910390f35b610480611227565b60405161048d919061272d565b60405180910390f35b6104b060048036038101906104ab91906127d2565b61122d565b6040516104bd9190612703565b60405180910390f35b6104ce611283565b6040516104db919061283b565b60405180910390f35b6104fe60048036038101906104f991906127d2565b6112a9565b005b61051a600480360381019061051591906127d2565b61141d565b005b61053660048036038101906105319190612856565b6114cf565b604051610543919061272d565b60405180910390f35b610566600480360381019061056191906127d2565b611556565b005b610582600480360381019061057d91906127d2565b611721565b005b61059e600480360381019061059991906127d2565b6117a7565b005b6105a8611a0a565b6040516105b5919061272d565b60405180910390f35b6105d860048036038101906105d391906127d2565b611a10565b6040516105e59190612703565b60405180910390f35b6060600380546105fd906128c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610629906128c5565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b60008061068b611a6f565b9050610698818585611a77565b600191505092915050565b6000600254905090565b6000806106b8611a6f565b90506106c5858285611a89565b6106d0858585611b1e565b60019150509392505050565b60006012905090565b6000600160ff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16149050919050565b600061074e611a6f565b90506000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806107dc57506107ad610de7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806107e957506000600b54145b905080156107ff576107fa83611c12565b6108b6565b60006064600b54856108119190612925565b61081b9190612996565b90506000818561082b91906129c7565b905061083681611c12565b61086384600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611c26565b8373ffffffffffffffffffffffffffffffffffffffff167fbcda0886576e1aa5c912c9559344b19e7065464c0e7fae2c19383a2680ece60082846040516108ab9291906129fb565b60405180910390a250505b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108e9611e4b565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fd9b675e28f449c9ade98c1882422e29dd4ec172c3e425081cab5c8f5697d236e60016040516109889190612703565b60405180910390a250565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e3611e4b565b6109ed6000611ed2565b565b6109f7611e4b565b6005811115610a3d57806040517fb9b484c7000000000000000000000000000000000000000000000000000000008152600401610a34919061272d565b60405180910390fd5b600b54810315610a7c5780600b81905550807fd54296e32811a7f2da2c1f6e8b39cb815ce208595da09bb98b034ccca6dffc6960405160405180910390a25b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b06576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614610b9d57806040517fd52b8d2e000000000000000000000000000000000000000000000000000000008152600401610b94919061283b565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad80600080604051610c3f929190612a24565b60405180910390a250565b610c5c82610c56611a6f565b83611a89565b610c668282611f98565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790612a99565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fb47ff16b5bae9457ad1554c677eb38ef82abc443a3e3f78c8bce69830b1b64a160405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e19611e4b565b6005811115610e5f57806040517f7b931420000000000000000000000000000000000000000000000000000000008152600401610e56919061272d565b60405180910390fd5b600954810315610e9e5780600981905550807f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c7660405160405180910390a25b50565b606060048054610eb0906128c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610edc906128c5565b8015610f295780601f10610efe57610100808354040283529160200191610f29565b820191906000526020600020905b815481529060010190602001808311610f0c57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361105157806040517fd40e1aa5000000000000000000000000000000000000000000000000000000008152600401611048919061283b565b60405180910390fd5b600160ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1603611156576000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad8060008060405161114d929190612a24565b60405180910390a25b6002600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad80600060016040516111f9929190612a24565b60405180910390a250565b60008061120f611a6f565b905061121c818585611b1e565b600191505092915050565b60095481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611330576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611396576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee60405160405180910390a250565b611425611e4b565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fd9b675e28f449c9ade98c1882422e29dd4ec172c3e425081cab5c8f5697d236e60006040516114c49190612703565b60405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161461167457806040517fe0b7a22800000000000000000000000000000000000000000000000000000000815260040161166b919061283b565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad80600080604051611716929190612a24565b60405180910390a250565b611729611e4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361179b5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611792919061283b565b60405180910390fd5b6117a481611ed2565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461182e576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16036118c557806040517f571f7b490000000000000000000000000000000000000000000000000000000081526004016118bc919061283b565b60405180910390fd5b600160ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361195c57806040517f76a36b94000000000000000000000000000000000000000000000000000000008152600401611953919061283b565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad80600160006040516119ff929190612a24565b60405180910390a250565b600b5481565b6000600260ff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16149050919050565b600033905090565b611a84838383600161201a565b505050565b6000611a9584846114cf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015611b185781811015611b08578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611aff93929190612ab9565b60405180910390fd5b611b178484848403600061201a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b905760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611b87919061283b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c025760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611bf9919061283b565b60405180910390fd5b611c0d8383836121f1565b505050565b611c23611c1d611a6f565b82611f98565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c78578060026000828254611c6c9190612af0565b92505081905550611d4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d04578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611cfb93929190612ab9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d945780600260008282540392505081905550611de1565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611e3e919061272d565b60405180910390a3505050565b611e53611a6f565b73ffffffffffffffffffffffffffffffffffffffff16611e71610de7565b73ffffffffffffffffffffffffffffffffffffffff1614611ed057611e94611a6f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611ec7919061283b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361200a5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401612001919061283b565b60405180910390fd5b612016826000836121f1565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361208c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401612083919061283b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120fe5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016120f5919061283b565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156121eb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516121e2919061272d565b60405180910390a35b50505050565b600260ff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361228857826040517f578f3e1300000000000000000000000000000000000000000000000000000000815260040161227f919061283b565b60405180910390fd5b600260ff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361231f57816040517fcb8e2bcc000000000000000000000000000000000000000000000000000000008152600401612316919061283b565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123a85750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806124055750600160ff16600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16145b806124625750600160ff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16145b8061246f57506000600954145b9050801561248757612482848484611c26565b612557565b60006064600954846124999190612925565b6124a39190612996565b9050600081846124b391906129c7565b90506124c0868683611c26565b6124ed86600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611c26565b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f98bc3fe7d138931a49691b623c256b8812f2a3d7f9b25ba7098c82538977a5d0838560405161254c9291906129fb565b60405180910390a350505b50505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561259757808201518184015260208101905061257c565b60008484015250505050565b6000601f19601f8301169050919050565b60006125bf8261255d565b6125c98185612568565b93506125d9818560208601612579565b6125e2816125a3565b840191505092915050565b6000602082019050818103600083015261260781846125b4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061263f82612614565b9050919050565b61264f81612634565b811461265a57600080fd5b50565b60008135905061266c81612646565b92915050565b6000819050919050565b61268581612672565b811461269057600080fd5b50565b6000813590506126a28161267c565b92915050565b600080604083850312156126bf576126be61260f565b5b60006126cd8582860161265d565b92505060206126de85828601612693565b9150509250929050565b60008115159050919050565b6126fd816126e8565b82525050565b600060208201905061271860008301846126f4565b92915050565b61272781612672565b82525050565b6000602082019050612742600083018461271e565b92915050565b6000806000606084860312156127615761276061260f565b5b600061276f8682870161265d565b93505060206127808682870161265d565b925050604061279186828701612693565b9150509250925092565b600060ff82169050919050565b6127b18161279b565b82525050565b60006020820190506127cc60008301846127a8565b92915050565b6000602082840312156127e8576127e761260f565b5b60006127f68482850161265d565b91505092915050565b6000602082840312156128155761281461260f565b5b600061282384828501612693565b91505092915050565b61283581612634565b82525050565b6000602082019050612850600083018461282c565b92915050565b6000806040838503121561286d5761286c61260f565b5b600061287b8582860161265d565b925050602061288c8582860161265d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128dd57607f821691505b6020821081036128f0576128ef612896565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061293082612672565b915061293b83612672565b925082820261294981612672565b915082820484148315176129605761295f6128f6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006129a182612672565b91506129ac83612672565b9250826129bc576129bb612967565b5b828204905092915050565b60006129d282612672565b91506129dd83612672565b92508282039050818111156129f5576129f46128f6565b5b92915050565b6000604082019050612a10600083018561271e565b612a1d602083018461271e565b9392505050565b6000604082019050612a3960008301856126f4565b612a4660208301846126f4565b9392505050565b7f496e76616c6964204d756c74695369672077616c6c6574206164647265737300600082015250565b6000612a83601f83612568565b9150612a8e82612a4d565b602082019050919050565b60006020820190508181036000830152612ab281612a76565b9050919050565b6000606082019050612ace600083018661282c565b612adb602083018561271e565b612ae8604083018461271e565b949350505050565b6000612afb82612672565b9150612b0683612672565b9250828201905080821115612b1e57612b1d6128f6565b5b9291505056fea26469706673582212209eac332f7b41baca83846053408ba1fc8d9f2c21dcb91de1e41b3834934745b264736f6c634300081c0033000000000000000000000000000000000000000002d3c8750bd670354b0000000000000000000000000000002c3f8ca14707bbbbbdfe815f810f22cc7b1b8c34000000000000000000000000ee1f89f8cc7690ec50f48990c199d6a0d6b2806a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000030000000000000000000000004c1921e6577fc9857533824d46866fafd05c32d0000000000000000000000000d6b1eba32957b58832dc3cbb9a5e8157b412e3460000000000000000000000004ce2859327e2f672d541f44a520ff1892996a41f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80638da5cb5b1161010f578063c69bebe4116100a2578063f2fde38b11610071578063f2fde38b14610568578063f80f5dd514610584578063fce589d8146105a0578063fe575a87146105be576101e5565b8063c69bebe4146104e4578063ccb44d3314610500578063dd62ed3e1461051c578063eb91e6511461054c576101e5565b8063a9059cbb116100de578063a9059cbb14610448578063acb2ad6f14610478578063b1ad633514610496578063b3f00674146104c6576101e5565b80638da5cb5b146103d45780639012c4a8146103f257806395d89b411461040e5780639cfe42da1461042c576101e5565b80634b8feb4f1161018757806371e367531161015657806371e367531461036457806378c8cda71461038057806379cc67901461039c5780637fd52f48146103b8576101e5565b80634b8feb4f146102f05780636ad7430c1461030e57806370a082311461032a578063715018a61461035a576101e5565b806323b872dd116101c357806323b872dd14610256578063313ce567146102865780633af32abf146102a457806342966c68146102d4576101e5565b806306fdde03146101ea578063095ea7b31461020857806318160ddd14610238575b600080fd5b6101f26105ee565b6040516101ff91906125ed565b60405180910390f35b610222600480360381019061021d91906126a8565b610680565b60405161022f9190612703565b60405180910390f35b6102406106a3565b60405161024d919061272d565b60405180910390f35b610270600480360381019061026b9190612748565b6106ad565b60405161027d9190612703565b60405180910390f35b61028e6106dc565b60405161029b91906127b7565b60405180910390f35b6102be60048036038101906102b991906127d2565b6106e5565b6040516102cb9190612703565b60405180910390f35b6102ee60048036038101906102e991906127ff565b610744565b005b6102f86108bb565b604051610305919061283b565b60405180910390f35b610328600480360381019061032391906127d2565b6108e1565b005b610344600480360381019061033f91906127d2565b610993565b604051610351919061272d565b60405180910390f35b6103626109db565b005b61037e600480360381019061037991906127ff565b6109ef565b005b61039a600480360381019061039591906127d2565b610a7f565b005b6103b660048036038101906103b191906126a8565b610c4a565b005b6103d260048036038101906103cd91906127d2565b610c6a565b005b6103dc610de7565b6040516103e9919061283b565b60405180910390f35b61040c600480360381019061040791906127ff565b610e11565b005b610416610ea1565b60405161042391906125ed565b60405180910390f35b610446600480360381019061044191906127d2565b610f33565b005b610462600480360381019061045d91906126a8565b611204565b60405161046f9190612703565b60405180910390f35b610480611227565b60405161048d919061272d565b60405180910390f35b6104b060048036038101906104ab91906127d2565b61122d565b6040516104bd9190612703565b60405180910390f35b6104ce611283565b6040516104db919061283b565b60405180910390f35b6104fe60048036038101906104f991906127d2565b6112a9565b005b61051a600480360381019061051591906127d2565b61141d565b005b61053660048036038101906105319190612856565b6114cf565b604051610543919061272d565b60405180910390f35b610566600480360381019061056191906127d2565b611556565b005b610582600480360381019061057d91906127d2565b611721565b005b61059e600480360381019061059991906127d2565b6117a7565b005b6105a8611a0a565b6040516105b5919061272d565b60405180910390f35b6105d860048036038101906105d391906127d2565b611a10565b6040516105e59190612703565b60405180910390f35b6060600380546105fd906128c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610629906128c5565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b60008061068b611a6f565b9050610698818585611a77565b600191505092915050565b6000600254905090565b6000806106b8611a6f565b90506106c5858285611a89565b6106d0858585611b1e565b60019150509392505050565b60006012905090565b6000600160ff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16149050919050565b600061074e611a6f565b90506000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806107dc57506107ad610de7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806107e957506000600b54145b905080156107ff576107fa83611c12565b6108b6565b60006064600b54856108119190612925565b61081b9190612996565b90506000818561082b91906129c7565b905061083681611c12565b61086384600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611c26565b8373ffffffffffffffffffffffffffffffffffffffff167fbcda0886576e1aa5c912c9559344b19e7065464c0e7fae2c19383a2680ece60082846040516108ab9291906129fb565b60405180910390a250505b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108e9611e4b565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fd9b675e28f449c9ade98c1882422e29dd4ec172c3e425081cab5c8f5697d236e60016040516109889190612703565b60405180910390a250565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e3611e4b565b6109ed6000611ed2565b565b6109f7611e4b565b6005811115610a3d57806040517fb9b484c7000000000000000000000000000000000000000000000000000000008152600401610a34919061272d565b60405180910390fd5b600b54810315610a7c5780600b81905550807fd54296e32811a7f2da2c1f6e8b39cb815ce208595da09bb98b034ccca6dffc6960405160405180910390a25b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b06576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614610b9d57806040517fd52b8d2e000000000000000000000000000000000000000000000000000000008152600401610b94919061283b565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad80600080604051610c3f929190612a24565b60405180910390a250565b610c5c82610c56611a6f565b83611a89565b610c668282611f98565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790612a99565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fb47ff16b5bae9457ad1554c677eb38ef82abc443a3e3f78c8bce69830b1b64a160405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e19611e4b565b6005811115610e5f57806040517f7b931420000000000000000000000000000000000000000000000000000000008152600401610e56919061272d565b60405180910390fd5b600954810315610e9e5780600981905550807f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c7660405160405180910390a25b50565b606060048054610eb0906128c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610edc906128c5565b8015610f295780601f10610efe57610100808354040283529160200191610f29565b820191906000526020600020905b815481529060010190602001808311610f0c57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361105157806040517fd40e1aa5000000000000000000000000000000000000000000000000000000008152600401611048919061283b565b60405180910390fd5b600160ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1603611156576000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad8060008060405161114d929190612a24565b60405180910390a25b6002600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad80600060016040516111f9929190612a24565b60405180910390a250565b60008061120f611a6f565b905061121c818585611b1e565b600191505092915050565b60095481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611330576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611396576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee60405160405180910390a250565b611425611e4b565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fd9b675e28f449c9ade98c1882422e29dd4ec172c3e425081cab5c8f5697d236e60006040516114c49190612703565b60405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161461167457806040517fe0b7a22800000000000000000000000000000000000000000000000000000000815260040161166b919061283b565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad80600080604051611716929190612a24565b60405180910390a250565b611729611e4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361179b5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611792919061283b565b60405180910390fd5b6117a481611ed2565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461182e576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16036118c557806040517f571f7b490000000000000000000000000000000000000000000000000000000081526004016118bc919061283b565b60405180910390fd5b600160ff16600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361195c57806040517f76a36b94000000000000000000000000000000000000000000000000000000008152600401611953919061283b565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f8d38c6941203509739fc2e0c50736cfe4ad0c54554a77a0f3b9ba7412aabad80600160006040516119ff929190612a24565b60405180910390a250565b600b5481565b6000600260ff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16149050919050565b600033905090565b611a84838383600161201a565b505050565b6000611a9584846114cf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015611b185781811015611b08578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611aff93929190612ab9565b60405180910390fd5b611b178484848403600061201a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b905760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611b87919061283b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c025760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611bf9919061283b565b60405180910390fd5b611c0d8383836121f1565b505050565b611c23611c1d611a6f565b82611f98565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c78578060026000828254611c6c9190612af0565b92505081905550611d4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d04578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611cfb93929190612ab9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d945780600260008282540392505081905550611de1565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611e3e919061272d565b60405180910390a3505050565b611e53611a6f565b73ffffffffffffffffffffffffffffffffffffffff16611e71610de7565b73ffffffffffffffffffffffffffffffffffffffff1614611ed057611e94611a6f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611ec7919061283b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361200a5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401612001919061283b565b60405180910390fd5b612016826000836121f1565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361208c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401612083919061283b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120fe5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016120f5919061283b565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156121eb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516121e2919061272d565b60405180910390a35b50505050565b600260ff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361228857826040517f578f3e1300000000000000000000000000000000000000000000000000000000815260040161227f919061283b565b60405180910390fd5b600260ff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361231f57816040517fcb8e2bcc000000000000000000000000000000000000000000000000000000008152600401612316919061283b565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123a85750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806124055750600160ff16600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16145b806124625750600160ff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16145b8061246f57506000600954145b9050801561248757612482848484611c26565b612557565b60006064600954846124999190612925565b6124a39190612996565b9050600081846124b391906129c7565b90506124c0868683611c26565b6124ed86600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611c26565b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f98bc3fe7d138931a49691b623c256b8812f2a3d7f9b25ba7098c82538977a5d0838560405161254c9291906129fb565b60405180910390a350505b50505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561259757808201518184015260208101905061257c565b60008484015250505050565b6000601f19601f8301169050919050565b60006125bf8261255d565b6125c98185612568565b93506125d9818560208601612579565b6125e2816125a3565b840191505092915050565b6000602082019050818103600083015261260781846125b4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061263f82612614565b9050919050565b61264f81612634565b811461265a57600080fd5b50565b60008135905061266c81612646565b92915050565b6000819050919050565b61268581612672565b811461269057600080fd5b50565b6000813590506126a28161267c565b92915050565b600080604083850312156126bf576126be61260f565b5b60006126cd8582860161265d565b92505060206126de85828601612693565b9150509250929050565b60008115159050919050565b6126fd816126e8565b82525050565b600060208201905061271860008301846126f4565b92915050565b61272781612672565b82525050565b6000602082019050612742600083018461271e565b92915050565b6000806000606084860312156127615761276061260f565b5b600061276f8682870161265d565b93505060206127808682870161265d565b925050604061279186828701612693565b9150509250925092565b600060ff82169050919050565b6127b18161279b565b82525050565b60006020820190506127cc60008301846127a8565b92915050565b6000602082840312156127e8576127e761260f565b5b60006127f68482850161265d565b91505092915050565b6000602082840312156128155761281461260f565b5b600061282384828501612693565b91505092915050565b61283581612634565b82525050565b6000602082019050612850600083018461282c565b92915050565b6000806040838503121561286d5761286c61260f565b5b600061287b8582860161265d565b925050602061288c8582860161265d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128dd57607f821691505b6020821081036128f0576128ef612896565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061293082612672565b915061293b83612672565b925082820261294981612672565b915082820484148315176129605761295f6128f6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006129a182612672565b91506129ac83612672565b9250826129bc576129bb612967565b5b828204905092915050565b60006129d282612672565b91506129dd83612672565b92508282039050818111156129f5576129f46128f6565b5b92915050565b6000604082019050612a10600083018561271e565b612a1d602083018461271e565b9392505050565b6000604082019050612a3960008301856126f4565b612a4660208301846126f4565b9392505050565b7f496e76616c6964204d756c74695369672077616c6c6574206164647265737300600082015250565b6000612a83601f83612568565b9150612a8e82612a4d565b602082019050919050565b60006020820190508181036000830152612ab281612a76565b9050919050565b6000606082019050612ace600083018661282c565b612adb602083018561271e565b612ae8604083018461271e565b949350505050565b6000612afb82612672565b9150612b0683612672565b9250828201905080821115612b1e57612b1d6128f6565b5b9291505056fea26469706673582212209eac332f7b41baca83846053408ba1fc8d9f2c21dcb91de1e41b3834934745b264736f6c634300081c0033

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

000000000000000000000000000000000000000002d3c8750bd670354b0000000000000000000000000000002c3f8ca14707bbbbbdfe815f810f22cc7b1b8c34000000000000000000000000ee1f89f8cc7690ec50f48990c199d6a0d6b2806a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000030000000000000000000000004c1921e6577fc9857533824d46866fafd05c32d0000000000000000000000000d6b1eba32957b58832dc3cbb9a5e8157b412e3460000000000000000000000004ce2859327e2f672d541f44a520ff1892996a41f

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 875000000000000000000000000
Arg [1] : _multiSigWallet (address): 0x2C3F8ca14707BbbbbdFe815F810F22CC7B1b8C34
Arg [2] : _feeReceiver (address): 0xEe1f89F8cc7690eC50F48990C199D6a0D6b2806A
Arg [3] : initialWhitelistedAccounts (address[]): 0x4c1921E6577fc9857533824D46866fafD05c32D0,0xd6B1EBa32957B58832DC3cbB9a5e8157b412e346,0x4CE2859327E2F672d541f44a520FF1892996a41f

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000002d3c8750bd670354b000000
Arg [1] : 0000000000000000000000002c3f8ca14707bbbbbdfe815f810f22cc7b1b8c34
Arg [2] : 000000000000000000000000ee1f89f8cc7690ec50f48990c199d6a0d6b2806a
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000004c1921e6577fc9857533824d46866fafd05c32d0
Arg [6] : 000000000000000000000000d6b1eba32957b58832dc3cbb9a5e8157b412e346
Arg [7] : 0000000000000000000000004ce2859327e2f672d541f44a520ff1892996a41f


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.