ETH Price: $2,624.32 (+7.31%)

Token

GPT Inu (GPT)
 

Overview

Max Total Supply

1,000,000 GPT

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
302.458608439232281602 GPT

Value
$0.00
0x8a6442Db506486D33a2E5347876C1371C3C9dCd9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GPTInu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-08
*/

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



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

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

// File: GPTInu.sol


pragma solidity ^0.8.7;





contract GPTInu is ERC20, ERC20Burnable, Pausable, Ownable {
    
    uint public maxWallet;
    uint public maxTxn;
    uint feeMultiplier = 1;
    mapping (address => bool) public isWalletLimitExempt;
    mapping (address => bool) public isFeeExempt;
    mapping (address => bool) public isTxLimitExempt;
    mapping (address => uint) public balances;
    mapping (address => mapping (address => uint256)) _allowances;
    address public taxAddress;
    
    
    constructor(address _taxAddress) ERC20("GPT Inu", "GPT") {
        
        _mint(msg.sender, 1000000 * 10 ** decimals());
        isWalletLimitExempt[msg.sender] = true;
        isTxLimitExempt[msg.sender] = true;
        isFeeExempt[msg.sender] = true;
        balances[msg.sender] = totalSupply();
        taxAddress = _taxAddress;
        maxWallet = totalSupply() * 200 / 200;
        maxTxn = totalSupply() * 200 / 200;
    }

    modifier checkWalletLimit(address to, uint256 amount) {
        require((balanceOf(to)) <= maxWallet || isWalletLimitExempt[to] || msg.sender == owner(), "Recipient would have 2.5% or more of the total supply");
        require((balanceOf(to) + amount) <= maxWallet || isWalletLimitExempt[to] || msg.sender == owner(), "Recipient would have 2.5% or more of the total supply");
        _;
    }
    
    modifier maxTxnLimit(address sender, uint256 amount){
    require((amount <= maxTxn) || isTxLimitExempt[sender] || msg.sender == owner(), "Transaction exceeds maximum transfer size.");
    _;
    }

    function setWalletLimitExempt(address wallet) external onlyOwner {
        isWalletLimitExempt[wallet] = true;
    }

    function setTxLimitExempt(address wallet) external onlyOwner {
        isTxLimitExempt[wallet] = true;
    }

    function setFeeExempt(address wallet) external onlyOwner {
        isFeeExempt[wallet] = true;
    }

    function setTaxAddress(address wallet) external onlyOwner {
        taxAddress = wallet;
    }

    function pause() public onlyOwner {
        _pause();
    }
    
    function unpause() public onlyOwner {
        _unpause();
    }

    function setMaxWallet(uint walletMultiplier) public onlyOwner
    {
        maxWallet = (totalSupply() * walletMultiplier / 200);
    }

    function setFee(uint _feeMultiplier) public onlyOwner
    {
        feeMultiplier = _feeMultiplier;
    }

    function setMaxTxn(uint txnMultiplier) public onlyOwner
    {
        maxTxn = (totalSupply() * txnMultiplier / 200);
    }

    function balanceOf(address account) public view override returns (uint256) { return balances[account]; }

    function approveMax(address spender) external returns (bool) {
        return approve(spender, uint256(2**256 - 1));
    }
    
    function allowance(address holder, address spender) public view override returns (uint256) { return _allowances[holder][spender]; }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _allowances[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        return _transferFrom(msg.sender, recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        if(_allowances[sender][msg.sender] != uint256(2**256 - 1)){
            _allowances[sender][msg.sender] = (_allowances[sender][msg.sender] - amount);
        }
        return _transferFrom(sender, recipient, amount);
    }

    function _transferFrom(address sender, address recipient, uint256 amount) internal whenNotPaused checkWalletLimit(recipient,amount) maxTxnLimit(sender, amount) returns (bool)  {
        
        //Exchange tokens
        balances[sender] = balances[sender] - amount;

        uint256 finalAmount = !isFeeExempt[sender] && !isFeeExempt[recipient] ? takeFee(sender, recipient, amount) : amount;
        balances[recipient] = balances[recipient] + finalAmount;

        emit Transfer(sender, recipient, finalAmount);
        return true;
    }

    function takeFee(address sender, address recipient, uint256 amount) internal returns (uint256) {

        uint256 marketingFeeAmount = (amount * feeMultiplier) / 100;
        balances[taxAddress] = balances[taxAddress] + marketingFeeAmount;
        emit Transfer(sender, address(this), marketingFeeAmount);
    
        return amount - marketingFeeAmount;
    }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"approveMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTxLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWalletLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeMultiplier","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"txnMultiplier","type":"uint256"}],"name":"setMaxTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"walletMultiplier","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTaxAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setWalletLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016008553480156200001657600080fd5b50604051620033fe380380620033fe83398181016040528101906200003c91906200067b565b6040518060400160405280600781526020017f47505420496e75000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47505400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000c0929190620005b4565b508060049080519060200190620000d9929190620005b4565b5050506000600560006101000a81548160ff021916908315150217905550620001176200010b6200035b60201b60201c565b6200036360201b60201c565b62000156336200012c6200042960201b60201c565b600a6200013a919062000825565b620f42406200014a919062000962565b6200043260201b60201c565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200026e620005a060201b60201c565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c88062000305620005a060201b60201c565b62000311919062000962565b6200031d919062000792565b60068190555060c88062000336620005a060201b60201c565b62000342919062000962565b6200034e919062000792565b6007819055505062000b26565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049c90620006e5565b60405180910390fd5b620004b960008383620005aa60201b60201c565b8060026000828254620004cd919062000735565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000580919062000707565b60405180910390a36200059c60008383620005af60201b60201c565b5050565b6000600254905090565b505050565b505050565b828054620005c29062000a0e565b90600052602060002090601f016020900481019282620005e6576000855562000632565b82601f106200060157805160ff191683800117855562000632565b8280016001018555821562000632579182015b828111156200063157825182559160200191906001019062000614565b5b50905062000641919062000645565b5090565b5b808211156200066057600081600090555060010162000646565b5090565b600081519050620006758162000b0c565b92915050565b60006020828403121562000694576200069362000ad1565b5b6000620006a48482850162000664565b91505092915050565b6000620006bc601f8362000724565b9150620006c98262000ae3565b602082019050919050565b620006df81620009f7565b82525050565b600060208201905081810360008301526200070081620006ad565b9050919050565b60006020820190506200071e6000830184620006d4565b92915050565b600082825260208201905092915050565b60006200074282620009f7565b91506200074f83620009f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000787576200078662000a44565b5b828201905092915050565b60006200079f82620009f7565b9150620007ac83620009f7565b925082620007bf57620007be62000a73565b5b828204905092915050565b6000808291508390505b60018511156200081c57808604811115620007f457620007f362000a44565b5b6001851615620008045780820291505b8081029050620008148562000ad6565b9450620007d4565b94509492505050565b60006200083282620009f7565b91506200083f8362000a01565b92506200086e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000876565b905092915050565b6000826200088857600190506200095b565b816200089857600090506200095b565b8160018114620008b15760028114620008bc57620008f2565b60019150506200095b565b60ff841115620008d157620008d062000a44565b5b8360020a915084821115620008eb57620008ea62000a44565b5b506200095b565b5060208310610133831016604e8410600b84101617156200092c5782820a90508381111562000926576200092562000a44565b5b6200095b565b6200093b8484846001620007ca565b9250905081840481111562000955576200095462000a44565b5b81810290505b9392505050565b60006200096f82620009f7565b91506200097c83620009f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009b857620009b762000a44565b5b828202905092915050565b6000620009d082620009d7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000a2757607f821691505b6020821081141562000a3e5762000a3d62000aa2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000b1781620009c3565b811462000b2357600080fd5b50565b6128c88062000b366000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063749796a51161011a578063a9059cbb116100ad578063e8792c1a1161007c578063e8792c1a146105ff578063e9d2af251461061d578063f2fde38b14610639578063f8b45b0514610655578063fc588c041461067357610206565b8063a9059cbb14610551578063b7bda68f14610581578063c867d60b1461059f578063dd62ed3e146105cf57610206565b80638da5cb5b116100e95780638da5cb5b146104c957806395d89b41146104e7578063a1883d2614610505578063a457c2d71461052157610206565b8063749796a51461045757806379cc6790146104735780638456cb591461048f5780638b42507f1461049957610206565b80633f4218e01161019d5780635c975abb1161016c5780635c975abb146103c75780635d0044ca146103e557806369fe0e2d1461040157806370a082311461041d578063715018a61461044d57610206565b80633f4218e0146103415780633f4ba83a1461037157806342966c681461037b578063571ac8b01461039757610206565b806327e235e3116101d957806327e235e3146102a7578063313ce567146102d757806339509351146102f55780633d070c231461032557610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b61021361068f565b60405161022091906120e2565b60405180910390f35b610243600480360381019061023e9190611e26565b610721565b60405161025091906120c7565b60405180910390f35b610261610813565b60405161026e9190612284565b60405180910390f35b610291600480360381019061028c9190611dd3565b61081d565b60405161029e91906120c7565b60405180910390f35b6102c160048036038101906102bc9190611d66565b6109df565b6040516102ce9190612284565b60405180910390f35b6102df6109f7565b6040516102ec919061229f565b60405180910390f35b61030f600480360381019061030a9190611e26565b610a00565b60405161031c91906120c7565b60405180910390f35b61033f600480360381019061033a9190611d66565b610a37565b005b61035b60048036038101906103569190611d66565b610a9a565b60405161036891906120c7565b60405180910390f35b610379610aba565b005b61039560048036038101906103909190611e66565b610acc565b005b6103b160048036038101906103ac9190611d66565b610ae0565b6040516103be91906120c7565b60405180910390f35b6103cf610b13565b6040516103dc91906120c7565b60405180910390f35b6103ff60048036038101906103fa9190611e66565b610b2a565b005b61041b60048036038101906104169190611e66565b610b5a565b005b61043760048036038101906104329190611d66565b610b6c565b6040516104449190612284565b60405180910390f35b610455610bb5565b005b610471600480360381019061046c9190611d66565b610bc9565b005b61048d60048036038101906104889190611e26565b610c2c565b005b610497610c4c565b005b6104b360048036038101906104ae9190611d66565b610c5e565b6040516104c091906120c7565b60405180910390f35b6104d1610c7e565b6040516104de91906120ac565b60405180910390f35b6104ef610ca8565b6040516104fc91906120e2565b60405180910390f35b61051f600480360381019061051a9190611d66565b610d3a565b005b61053b60048036038101906105369190611e26565b610d86565b60405161054891906120c7565b60405180910390f35b61056b60048036038101906105669190611e26565b610dfd565b60405161057891906120c7565b60405180910390f35b610589610e12565b60405161059691906120ac565b60405180910390f35b6105b960048036038101906105b49190611d66565b610e38565b6040516105c691906120c7565b60405180910390f35b6105e960048036038101906105e49190611d93565b610e58565b6040516105f69190612284565b60405180910390f35b610607610edf565b6040516106149190612284565b60405180910390f35b61063760048036038101906106329190611d66565b610ee5565b005b610653600480360381019061064e9190611d66565b610f48565b005b61065d610fcc565b60405161066a9190612284565b60405180910390f35b61068d60048036038101906106889190611e66565b610fd2565b005b60606003805461069e90612473565b80601f01602080910402602001604051908101604052809291908181526020018280546106ca90612473565b80156107175780601f106106ec57610100808354040283529160200191610717565b820191906000526020600020905b8154815290600101906020018083116106fa57829003601f168201915b5050505050905090565b600081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108019190612284565b60405180910390a36001905092915050565b6000600254905090565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146109cb5781600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094a91906123b7565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6109d6848484611002565b90509392505050565b600c6020528060005260406000206000915090505481565b60006012905090565b600080610a0b6114fc565b9050610a2c818585610a1d8589610e58565b610a2791906122d6565b611504565b600191505092915050565b610a3f6116cf565b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610ac26116cf565b610aca61174d565b565b610add610ad76114fc565b826117b0565b50565b6000610b0c827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610721565b9050919050565b6000600560009054906101000a900460ff16905090565b610b326116cf565b60c881610b3d610813565b610b47919061235d565b610b51919061232c565b60068190555050565b610b626116cf565b8060088190555050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bbd6116cf565b610bc7600061197e565b565b610bd16116cf565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c3e82610c386114fc565b83611a44565b610c4882826117b0565b5050565b610c546116cf565b610c5c611ad0565b565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610cb790612473565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce390612473565b8015610d305780601f10610d0557610100808354040283529160200191610d30565b820191906000526020600020905b815481529060010190602001808311610d1357829003601f168201915b5050505050905090565b610d426116cf565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d916114fc565b90506000610d9f8286610e58565b905083811015610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90612264565b60405180910390fd5b610df18286868403611504565b60019250505092915050565b6000610e0a338484611002565b905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b610eed6116cf565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f506116cf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790612144565b60405180910390fd5b610fc98161197e565b50565b60065481565b610fda6116cf565b60c881610fe5610813565b610fef919061235d565b610ff9919061232c565b60078190555050565b600061100c611b33565b828260065461101a83610b6c565b1115806110705750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110ad575061107e610c7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906121a4565b60405180910390fd5b600654816110f984610b6c565b61110391906122d6565b1115806111595750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111965750611167610c7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906121a4565b60405180910390fd5b8584600754811115806112315750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061126e575061123f610c7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a4906121e4565b60405180910390fd5b85600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112f891906123b7565b600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113e15750600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6113eb57866113f7565b6113f6898989611b7d565b5b905080600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461144491906122d6565b600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114e49190612284565b60405180910390a36001955050505050509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90612244565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90612164565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116c29190612284565b60405180910390a3505050565b6116d76114fc565b73ffffffffffffffffffffffffffffffffffffffff166116f5610c7e565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290612204565b60405180910390fd5b565b611755611ce9565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117996114fc565b6040516117a691906120ac565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790612224565b60405180910390fd5b61182c82600083611d32565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990612124565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119659190612284565b60405180910390a361197983600084611d37565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611a508484610e58565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611aca5781811015611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390612184565b60405180910390fd5b611ac98484848403611504565b5b50505050565b611ad8611b33565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b1c6114fc565b604051611b2991906120ac565b60405180910390a1565b611b3b610b13565b15611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b72906121c4565b60405180910390fd5b565b600080606460085484611b90919061235d565b611b9a919061232c565b905080600c6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c0991906122d6565b600c6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ccb9190612284565b60405180910390a38083611cdf91906123b7565b9150509392505050565b611cf1610b13565b611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790612104565b60405180910390fd5b565b505050565b505050565b600081359050611d4b81612864565b92915050565b600081359050611d608161287b565b92915050565b600060208284031215611d7c57611d7b612532565b5b6000611d8a84828501611d3c565b91505092915050565b60008060408385031215611daa57611da9612532565b5b6000611db885828601611d3c565b9250506020611dc985828601611d3c565b9150509250929050565b600080600060608486031215611dec57611deb612532565b5b6000611dfa86828701611d3c565b9350506020611e0b86828701611d3c565b9250506040611e1c86828701611d51565b9150509250925092565b60008060408385031215611e3d57611e3c612532565b5b6000611e4b85828601611d3c565b9250506020611e5c85828601611d51565b9150509250929050565b600060208284031215611e7c57611e7b612532565b5b6000611e8a84828501611d51565b91505092915050565b611e9c816123eb565b82525050565b611eab816123fd565b82525050565b6000611ebc826122ba565b611ec681856122c5565b9350611ed6818560208601612440565b611edf81612537565b840191505092915050565b6000611ef76014836122c5565b9150611f0282612548565b602082019050919050565b6000611f1a6022836122c5565b9150611f2582612571565b604082019050919050565b6000611f3d6026836122c5565b9150611f48826125c0565b604082019050919050565b6000611f606022836122c5565b9150611f6b8261260f565b604082019050919050565b6000611f83601d836122c5565b9150611f8e8261265e565b602082019050919050565b6000611fa66035836122c5565b9150611fb182612687565b604082019050919050565b6000611fc96010836122c5565b9150611fd4826126d6565b602082019050919050565b6000611fec602a836122c5565b9150611ff7826126ff565b604082019050919050565b600061200f6020836122c5565b915061201a8261274e565b602082019050919050565b60006120326021836122c5565b915061203d82612777565b604082019050919050565b60006120556024836122c5565b9150612060826127c6565b604082019050919050565b60006120786025836122c5565b915061208382612815565b604082019050919050565b61209781612429565b82525050565b6120a681612433565b82525050565b60006020820190506120c16000830184611e93565b92915050565b60006020820190506120dc6000830184611ea2565b92915050565b600060208201905081810360008301526120fc8184611eb1565b905092915050565b6000602082019050818103600083015261211d81611eea565b9050919050565b6000602082019050818103600083015261213d81611f0d565b9050919050565b6000602082019050818103600083015261215d81611f30565b9050919050565b6000602082019050818103600083015261217d81611f53565b9050919050565b6000602082019050818103600083015261219d81611f76565b9050919050565b600060208201905081810360008301526121bd81611f99565b9050919050565b600060208201905081810360008301526121dd81611fbc565b9050919050565b600060208201905081810360008301526121fd81611fdf565b9050919050565b6000602082019050818103600083015261221d81612002565b9050919050565b6000602082019050818103600083015261223d81612025565b9050919050565b6000602082019050818103600083015261225d81612048565b9050919050565b6000602082019050818103600083015261227d8161206b565b9050919050565b6000602082019050612299600083018461208e565b92915050565b60006020820190506122b4600083018461209d565b92915050565b600081519050919050565b600082825260208201905092915050565b60006122e182612429565b91506122ec83612429565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612321576123206124a5565b5b828201905092915050565b600061233782612429565b915061234283612429565b925082612352576123516124d4565b5b828204905092915050565b600061236882612429565b915061237383612429565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123ac576123ab6124a5565b5b828202905092915050565b60006123c282612429565b91506123cd83612429565b9250828210156123e0576123df6124a5565b5b828203905092915050565b60006123f682612409565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561245e578082015181840152602081019050612443565b8381111561246d576000848401525b50505050565b6000600282049050600182168061248b57607f821691505b6020821081141561249f5761249e612503565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f526563697069656e7420776f756c64206861766520322e3525206f72206d6f7260008201527f65206f662074686520746f74616c20737570706c790000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5472616e73616374696f6e2065786365656473206d6178696d756d207472616e60008201527f736665722073697a652e00000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61286d816123eb565b811461287857600080fd5b50565b61288481612429565b811461288f57600080fd5b5056fea2646970667358221220e44cc0d7376a91adc5d35c61270bc36b1361b69be3efc79dcfeff67e1e887f2364736f6c63430008070033000000000000000000000000c615e41120b61f3359b0e2bfe2500f7ba886024f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063749796a51161011a578063a9059cbb116100ad578063e8792c1a1161007c578063e8792c1a146105ff578063e9d2af251461061d578063f2fde38b14610639578063f8b45b0514610655578063fc588c041461067357610206565b8063a9059cbb14610551578063b7bda68f14610581578063c867d60b1461059f578063dd62ed3e146105cf57610206565b80638da5cb5b116100e95780638da5cb5b146104c957806395d89b41146104e7578063a1883d2614610505578063a457c2d71461052157610206565b8063749796a51461045757806379cc6790146104735780638456cb591461048f5780638b42507f1461049957610206565b80633f4218e01161019d5780635c975abb1161016c5780635c975abb146103c75780635d0044ca146103e557806369fe0e2d1461040157806370a082311461041d578063715018a61461044d57610206565b80633f4218e0146103415780633f4ba83a1461037157806342966c681461037b578063571ac8b01461039757610206565b806327e235e3116101d957806327e235e3146102a7578063313ce567146102d757806339509351146102f55780633d070c231461032557610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b61021361068f565b60405161022091906120e2565b60405180910390f35b610243600480360381019061023e9190611e26565b610721565b60405161025091906120c7565b60405180910390f35b610261610813565b60405161026e9190612284565b60405180910390f35b610291600480360381019061028c9190611dd3565b61081d565b60405161029e91906120c7565b60405180910390f35b6102c160048036038101906102bc9190611d66565b6109df565b6040516102ce9190612284565b60405180910390f35b6102df6109f7565b6040516102ec919061229f565b60405180910390f35b61030f600480360381019061030a9190611e26565b610a00565b60405161031c91906120c7565b60405180910390f35b61033f600480360381019061033a9190611d66565b610a37565b005b61035b60048036038101906103569190611d66565b610a9a565b60405161036891906120c7565b60405180910390f35b610379610aba565b005b61039560048036038101906103909190611e66565b610acc565b005b6103b160048036038101906103ac9190611d66565b610ae0565b6040516103be91906120c7565b60405180910390f35b6103cf610b13565b6040516103dc91906120c7565b60405180910390f35b6103ff60048036038101906103fa9190611e66565b610b2a565b005b61041b60048036038101906104169190611e66565b610b5a565b005b61043760048036038101906104329190611d66565b610b6c565b6040516104449190612284565b60405180910390f35b610455610bb5565b005b610471600480360381019061046c9190611d66565b610bc9565b005b61048d60048036038101906104889190611e26565b610c2c565b005b610497610c4c565b005b6104b360048036038101906104ae9190611d66565b610c5e565b6040516104c091906120c7565b60405180910390f35b6104d1610c7e565b6040516104de91906120ac565b60405180910390f35b6104ef610ca8565b6040516104fc91906120e2565b60405180910390f35b61051f600480360381019061051a9190611d66565b610d3a565b005b61053b60048036038101906105369190611e26565b610d86565b60405161054891906120c7565b60405180910390f35b61056b60048036038101906105669190611e26565b610dfd565b60405161057891906120c7565b60405180910390f35b610589610e12565b60405161059691906120ac565b60405180910390f35b6105b960048036038101906105b49190611d66565b610e38565b6040516105c691906120c7565b60405180910390f35b6105e960048036038101906105e49190611d93565b610e58565b6040516105f69190612284565b60405180910390f35b610607610edf565b6040516106149190612284565b60405180910390f35b61063760048036038101906106329190611d66565b610ee5565b005b610653600480360381019061064e9190611d66565b610f48565b005b61065d610fcc565b60405161066a9190612284565b60405180910390f35b61068d60048036038101906106889190611e66565b610fd2565b005b60606003805461069e90612473565b80601f01602080910402602001604051908101604052809291908181526020018280546106ca90612473565b80156107175780601f106106ec57610100808354040283529160200191610717565b820191906000526020600020905b8154815290600101906020018083116106fa57829003601f168201915b5050505050905090565b600081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108019190612284565b60405180910390a36001905092915050565b6000600254905090565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146109cb5781600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094a91906123b7565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6109d6848484611002565b90509392505050565b600c6020528060005260406000206000915090505481565b60006012905090565b600080610a0b6114fc565b9050610a2c818585610a1d8589610e58565b610a2791906122d6565b611504565b600191505092915050565b610a3f6116cf565b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610ac26116cf565b610aca61174d565b565b610add610ad76114fc565b826117b0565b50565b6000610b0c827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610721565b9050919050565b6000600560009054906101000a900460ff16905090565b610b326116cf565b60c881610b3d610813565b610b47919061235d565b610b51919061232c565b60068190555050565b610b626116cf565b8060088190555050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bbd6116cf565b610bc7600061197e565b565b610bd16116cf565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c3e82610c386114fc565b83611a44565b610c4882826117b0565b5050565b610c546116cf565b610c5c611ad0565b565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610cb790612473565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce390612473565b8015610d305780601f10610d0557610100808354040283529160200191610d30565b820191906000526020600020905b815481529060010190602001808311610d1357829003601f168201915b5050505050905090565b610d426116cf565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d916114fc565b90506000610d9f8286610e58565b905083811015610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90612264565b60405180910390fd5b610df18286868403611504565b60019250505092915050565b6000610e0a338484611002565b905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b610eed6116cf565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f506116cf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790612144565b60405180910390fd5b610fc98161197e565b50565b60065481565b610fda6116cf565b60c881610fe5610813565b610fef919061235d565b610ff9919061232c565b60078190555050565b600061100c611b33565b828260065461101a83610b6c565b1115806110705750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110ad575061107e610c7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906121a4565b60405180910390fd5b600654816110f984610b6c565b61110391906122d6565b1115806111595750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111965750611167610c7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906121a4565b60405180910390fd5b8584600754811115806112315750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061126e575061123f610c7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a4906121e4565b60405180910390fd5b85600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112f891906123b7565b600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113e15750600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6113eb57866113f7565b6113f6898989611b7d565b5b905080600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461144491906122d6565b600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114e49190612284565b60405180910390a36001955050505050509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90612244565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90612164565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116c29190612284565b60405180910390a3505050565b6116d76114fc565b73ffffffffffffffffffffffffffffffffffffffff166116f5610c7e565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290612204565b60405180910390fd5b565b611755611ce9565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117996114fc565b6040516117a691906120ac565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790612224565b60405180910390fd5b61182c82600083611d32565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990612124565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119659190612284565b60405180910390a361197983600084611d37565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611a508484610e58565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611aca5781811015611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390612184565b60405180910390fd5b611ac98484848403611504565b5b50505050565b611ad8611b33565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b1c6114fc565b604051611b2991906120ac565b60405180910390a1565b611b3b610b13565b15611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b72906121c4565b60405180910390fd5b565b600080606460085484611b90919061235d565b611b9a919061232c565b905080600c6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c0991906122d6565b600c6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ccb9190612284565b60405180910390a38083611cdf91906123b7565b9150509392505050565b611cf1610b13565b611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790612104565b60405180910390fd5b565b505050565b505050565b600081359050611d4b81612864565b92915050565b600081359050611d608161287b565b92915050565b600060208284031215611d7c57611d7b612532565b5b6000611d8a84828501611d3c565b91505092915050565b60008060408385031215611daa57611da9612532565b5b6000611db885828601611d3c565b9250506020611dc985828601611d3c565b9150509250929050565b600080600060608486031215611dec57611deb612532565b5b6000611dfa86828701611d3c565b9350506020611e0b86828701611d3c565b9250506040611e1c86828701611d51565b9150509250925092565b60008060408385031215611e3d57611e3c612532565b5b6000611e4b85828601611d3c565b9250506020611e5c85828601611d51565b9150509250929050565b600060208284031215611e7c57611e7b612532565b5b6000611e8a84828501611d51565b91505092915050565b611e9c816123eb565b82525050565b611eab816123fd565b82525050565b6000611ebc826122ba565b611ec681856122c5565b9350611ed6818560208601612440565b611edf81612537565b840191505092915050565b6000611ef76014836122c5565b9150611f0282612548565b602082019050919050565b6000611f1a6022836122c5565b9150611f2582612571565b604082019050919050565b6000611f3d6026836122c5565b9150611f48826125c0565b604082019050919050565b6000611f606022836122c5565b9150611f6b8261260f565b604082019050919050565b6000611f83601d836122c5565b9150611f8e8261265e565b602082019050919050565b6000611fa66035836122c5565b9150611fb182612687565b604082019050919050565b6000611fc96010836122c5565b9150611fd4826126d6565b602082019050919050565b6000611fec602a836122c5565b9150611ff7826126ff565b604082019050919050565b600061200f6020836122c5565b915061201a8261274e565b602082019050919050565b60006120326021836122c5565b915061203d82612777565b604082019050919050565b60006120556024836122c5565b9150612060826127c6565b604082019050919050565b60006120786025836122c5565b915061208382612815565b604082019050919050565b61209781612429565b82525050565b6120a681612433565b82525050565b60006020820190506120c16000830184611e93565b92915050565b60006020820190506120dc6000830184611ea2565b92915050565b600060208201905081810360008301526120fc8184611eb1565b905092915050565b6000602082019050818103600083015261211d81611eea565b9050919050565b6000602082019050818103600083015261213d81611f0d565b9050919050565b6000602082019050818103600083015261215d81611f30565b9050919050565b6000602082019050818103600083015261217d81611f53565b9050919050565b6000602082019050818103600083015261219d81611f76565b9050919050565b600060208201905081810360008301526121bd81611f99565b9050919050565b600060208201905081810360008301526121dd81611fbc565b9050919050565b600060208201905081810360008301526121fd81611fdf565b9050919050565b6000602082019050818103600083015261221d81612002565b9050919050565b6000602082019050818103600083015261223d81612025565b9050919050565b6000602082019050818103600083015261225d81612048565b9050919050565b6000602082019050818103600083015261227d8161206b565b9050919050565b6000602082019050612299600083018461208e565b92915050565b60006020820190506122b4600083018461209d565b92915050565b600081519050919050565b600082825260208201905092915050565b60006122e182612429565b91506122ec83612429565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612321576123206124a5565b5b828201905092915050565b600061233782612429565b915061234283612429565b925082612352576123516124d4565b5b828204905092915050565b600061236882612429565b915061237383612429565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123ac576123ab6124a5565b5b828202905092915050565b60006123c282612429565b91506123cd83612429565b9250828210156123e0576123df6124a5565b5b828203905092915050565b60006123f682612409565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561245e578082015181840152602081019050612443565b8381111561246d576000848401525b50505050565b6000600282049050600182168061248b57607f821691505b6020821081141561249f5761249e612503565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f526563697069656e7420776f756c64206861766520322e3525206f72206d6f7260008201527f65206f662074686520746f74616c20737570706c790000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5472616e73616374696f6e2065786365656473206d6178696d756d207472616e60008201527f736665722073697a652e00000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61286d816123eb565b811461287857600080fd5b50565b61288481612429565b811461288f57600080fd5b5056fea2646970667358221220e44cc0d7376a91adc5d35c61270bc36b1361b69be3efc79dcfeff67e1e887f2364736f6c63430008070033

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

000000000000000000000000c615e41120b61f3359b0e2bfe2500f7ba886024f

-----Decoded View---------------
Arg [0] : _taxAddress (address): 0xC615e41120b61F3359B0E2bfe2500F7BA886024f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c615e41120b61f3359b0e2bfe2500f7ba886024f


Deployed Bytecode Sourcemap

24418:4600:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12006:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27350:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13126:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27736:341;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24737:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12968:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15842:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25963:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24631:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26494:65;;;:::i;:::-;;23777:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27075:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5266:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26567:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26713:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26963:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;:::i;:::-;;26207:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24187:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26421:61;;;:::i;:::-;;24682:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12225:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26317:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16583:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27574:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24853:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24572:52;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27211:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24518:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26089:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24490:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26829:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12006:100;12060:13;12093:5;12086:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12006:100;:::o;27350:216::-;27425:4;27477:6;27442:11;:23;27454:10;27442:23;;;;;;;;;;;;;;;:32;27466:7;27442:32;;;;;;;;;;;;;;;:41;;;;27520:7;27499:37;;27508:10;27499:37;;;27529:6;27499:37;;;;;;:::i;:::-;;;;;;;;27554:4;27547:11;;27350:216;;;;:::o;13126:108::-;13187:7;13214:12;;13207:19;;13126:108;:::o;27736:341::-;27834:4;27897:10;27854:11;:19;27866:6;27854:19;;;;;;;;;;;;;;;:31;27874:10;27854:31;;;;;;;;;;;;;;;;:54;27851:161;;27993:6;27959:11;:19;27971:6;27959:19;;;;;;;;;;;;;;;:31;27979:10;27959:31;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;27924:11;:19;27936:6;27924:19;;;;;;;;;;;;;;;:31;27944:10;27924:31;;;;;;;;;;;;;;;:76;;;;27851:161;28029:40;28043:6;28051:9;28062:6;28029:13;:40::i;:::-;28022:47;;27736:341;;;;;:::o;24737:41::-;;;;;;;;;;;;;;;;;:::o;12968:93::-;13026:5;13051:2;13044:9;;12968:93;:::o;15842:238::-;15930:4;15947:13;15963:12;:10;:12::i;:::-;15947:28;;15986:64;15995:5;16002:7;16039:10;16011:25;16021:5;16028:7;16011:9;:25::i;:::-;:38;;;;:::i;:::-;15986:8;:64::i;:::-;16068:4;16061:11;;;15842:238;;;;:::o;25963:118::-;2014:13;:11;:13::i;:::-;26069:4:::1;26039:19;:27;26059:6;26039:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;25963:118:::0;:::o;24631:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;26494:65::-;2014:13;:11;:13::i;:::-;26541:10:::1;:8;:10::i;:::-;26494:65::o:0;23777:91::-;23833:27;23839:12;:10;:12::i;:::-;23853:6;23833:5;:27::i;:::-;23777:91;:::o;27075:124::-;27130:4;27154:37;27162:7;27179:10;27154:7;:37::i;:::-;27147:44;;27075:124;;;:::o;5266:86::-;5313:4;5337:7;;;;;;;;;;;5330:14;;5266:86;:::o;26567:138::-;2014:13;:11;:13::i;:::-;26693:3:::1;26674:16;26658:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:38;;;;:::i;:::-;26645:9;:52;;;;26567:138:::0;:::o;26713:108::-;2014:13;:11;:13::i;:::-;26799:14:::1;26783:13;:30;;;;26713:108:::0;:::o;26963:104::-;27029:7;27047:8;:17;27056:7;27047:17;;;;;;;;;;;;;;;;27040:24;;26963:104;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;26207:102::-;2014:13;:11;:13::i;:::-;26297:4:::1;26275:11;:19;26287:6;26275:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;26207:102:::0;:::o;24187:164::-;24264:46;24280:7;24289:12;:10;:12::i;:::-;24303:6;24264:15;:46::i;:::-;24321:22;24327:7;24336:6;24321:5;:22::i;:::-;24187:164;;:::o;26421:61::-;2014:13;:11;:13::i;:::-;26466:8:::1;:6;:8::i;:::-;26421:61::o:0;24682:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;12225:104::-;12281:13;12314:7;12307:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12225:104;:::o;26317:96::-;2014:13;:11;:13::i;:::-;26399:6:::1;26386:10;;:19;;;;;;;;;;;;;;;;;;26317:96:::0;:::o;16583:436::-;16676:4;16693:13;16709:12;:10;:12::i;:::-;16693:28;;16732:24;16759:25;16769:5;16776:7;16759:9;:25::i;:::-;16732:52;;16823:15;16803:16;:35;;16795:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16916:60;16925:5;16932:7;16960:15;16941:16;:34;16916:8;:60::i;:::-;17007:4;17000:11;;;;16583:436;;;;:::o;27574:154::-;27652:4;27676:44;27690:10;27702:9;27713:6;27676:13;:44::i;:::-;27669:51;;27574:154;;;;:::o;24853:25::-;;;;;;;;;;;;;:::o;24572:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;27211:131::-;27293:7;27311:11;:19;27323:6;27311:19;;;;;;;;;;;;;;;:28;27331:7;27311:28;;;;;;;;;;;;;;;;27304:35;;27211:131;;;;:::o;24518:18::-;;;;:::o;26089:110::-;2014:13;:11;:13::i;:::-;26187:4:::1;26161:15;:23;26177:6;26161:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;26089:110:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;24490:21::-;;;;:::o;26829:126::-;2014:13;:11;:13::i;:::-;26943:3:::1;26927:13;26911;:11;:13::i;:::-;:29;;;;:::i;:::-;:35;;;;:::i;:::-;26901:6;:46;;;;26829:126:::0;:::o;28085:550::-;28254:4;4871:19;:17;:19::i;:::-;28199:9:::1;28209:6;25438:9;;25420:13;25430:2;25420:9;:13::i;:::-;25419:28;;:55;;;;25451:19;:23;25471:2;25451:23;;;;;;;;;;;;;;;;;;;;;;;;;25419:55;:80;;;;25492:7;:5;:7::i;:::-;25478:21;;:10;:21;;;25419:80;25411:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;25604:9;;25593:6;25577:13;25587:2;25577:9;:13::i;:::-;:22;;;;:::i;:::-;25576:37;;:64;;;;25617:19;:23;25637:2;25617:23;;;;;;;;;;;;;;;;;;;;;;;;;25576:64;:89;;;;25658:7;:5;:7::i;:::-;25644:21;;:10;:21;;;25576:89;25568:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;28229:6:::2;28237;25833;;25823;:16;;25822:45;;;;25844:15;:23;25860:6;25844:23;;;;;;;;;;;;;;;;;;;;;;;;;25822:45;:70;;;;25885:7;:5;:7::i;:::-;25871:21;;:10;:21;;;25822:70;25814:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;28347:6:::3;28328:8;:16;28337:6;28328:16;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;28309:8;:16;28318:6;28309:16;;;;;;;;;;;;;;;:44;;;;28366:19;28389:11;:19;28401:6;28389:19;;;;;;;;;;;;;;;;;;;;;;;;;28388:20;:47;;;;;28413:11;:22;28425:9;28413:22;;;;;;;;;;;;;;;;;;;;;;;;;28412:23;28388:47;:93;;28475:6;28388:93;;;28438:34;28446:6;28454:9;28465:6;28438:7;:34::i;:::-;28388:93;28366:115;;28536:11;28514:8;:19;28523:9;28514:19;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;28492:8;:19;28501:9;28492:19;;;;;;;;;;;;;;;:55;;;;28582:9;28565:40;;28574:6;28565:40;;;28593:11;28565:40;;;;;;:::i;:::-;;;;;;;;28623:4;28616:11;;;25734:1:::2;;4901::::1;;28085:550:::0;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;20610:380::-;20763:1;20746:19;;:5;:19;;;;20738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20844:1;20825:21;;:7;:21;;;;20817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20928:6;20898:11;:18;20910:5;20898:18;;;;;;;;;;;;;;;:27;20917:7;20898:27;;;;;;;;;;;;;;;:36;;;;20966:7;20950:32;;20959:5;20950:32;;;20975:6;20950:32;;;;;;:::i;:::-;;;;;;;;20610:380;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;6121:120::-;5130:16;:14;:16::i;:::-;6190:5:::1;6180:7;;:15;;;;;;;;;;;;;;;;;;6211:22;6220:12;:10;:12::i;:::-;6211:22;;;;;;:::i;:::-;;;;;;;;6121:120::o:0;19497:675::-;19600:1;19581:21;;:7;:21;;;;19573:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19653:49;19674:7;19691:1;19695:6;19653:20;:49::i;:::-;19715:22;19740:9;:18;19750:7;19740:18;;;;;;;;;;;;;;;;19715:43;;19795:6;19777:14;:24;;19769:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19914:6;19897:14;:23;19876:9;:18;19886:7;19876:18;;;;;;;;;;;;;;;:44;;;;20031:6;20015:12;;:22;;;;;;;;;;;20092:1;20066:37;;20075:7;20066:37;;;20096:6;20066:37;;;;;;:::i;:::-;;;;;;;;20116:48;20136:7;20153:1;20157:6;20116:19;:48::i;:::-;19562:610;19497:675;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;21281:453::-;21416:24;21443:25;21453:5;21460:7;21443:9;:25::i;:::-;21416:52;;21503:17;21483:16;:37;21479:248;;21565:6;21545:16;:26;;21537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21649:51;21658:5;21665:7;21693:6;21674:16;:25;21649:8;:51::i;:::-;21479:248;21405:329;21281:453;;;:::o;5862:118::-;4871:19;:17;:19::i;:::-;5932:4:::1;5922:7;;:14;;;;;;;;;;;;;;;;;;5952:20;5959:12;:10;:12::i;:::-;5952:20;;;;;;:::i;:::-;;;;;;;;5862:118::o:0;5425:108::-;5496:8;:6;:8::i;:::-;5495:9;5487:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5425:108::o;28643:368::-;28729:7;28751:26;28807:3;28790:13;;28781:6;:22;;;;:::i;:::-;28780:30;;;;:::i;:::-;28751:59;;28867:18;28844:8;:20;28853:10;;;;;;;;;;;28844:20;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;28821:8;:20;28830:10;;;;;;;;;;;28821:20;;;;;;;;;;;;;;;:64;;;;28926:4;28901:51;;28910:6;28901:51;;;28933:18;28901:51;;;;;;:::i;:::-;;;;;;;;28985:18;28976:6;:27;;;;:::i;:::-;28969:34;;;28643:368;;;;;:::o;5610:108::-;5677:8;:6;:8::i;:::-;5669:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5610:108::o;22334:125::-;;;;:::o;23063:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:118::-;7712:24;7730:5;7712:24;:::i;:::-;7707:3;7700:37;7625:118;;:::o;7749:112::-;7832:22;7848:5;7832:22;:::i;:::-;7827:3;7820:35;7749:112;;:::o;7867:222::-;7960:4;7998:2;7987:9;7983:18;7975:26;;8011:71;8079:1;8068:9;8064:17;8055:6;8011:71;:::i;:::-;7867:222;;;;:::o;8095:210::-;8182:4;8220:2;8209:9;8205:18;8197:26;;8233:65;8295:1;8284:9;8280:17;8271:6;8233:65;:::i;:::-;8095:210;;;;:::o;8311:313::-;8424:4;8462:2;8451:9;8447:18;8439:26;;8511:9;8505:4;8501:20;8497:1;8486:9;8482:17;8475:47;8539:78;8612:4;8603:6;8539:78;:::i;:::-;8531:86;;8311:313;;;;:::o;8630:419::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:131;9037:4;8911:131;:::i;:::-;8903:139;;8630:419;;;:::o;9055:::-;9221:4;9259:2;9248:9;9244:18;9236:26;;9308:9;9302:4;9298:20;9294:1;9283:9;9279:17;9272:47;9336:131;9462:4;9336:131;:::i;:::-;9328:139;;9055:419;;;:::o;9480:::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9480:419;;;:::o;9905:::-;10071:4;10109:2;10098:9;10094:18;10086:26;;10158:9;10152:4;10148:20;10144:1;10133:9;10129:17;10122:47;10186:131;10312:4;10186:131;:::i;:::-;10178:139;;9905:419;;;:::o;10330:::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10583:9;10577:4;10573:20;10569:1;10558:9;10554:17;10547:47;10611:131;10737:4;10611:131;:::i;:::-;10603:139;;10330:419;;;:::o;10755:::-;10921:4;10959:2;10948:9;10944:18;10936:26;;11008:9;11002:4;10998:20;10994:1;10983:9;10979:17;10972:47;11036:131;11162:4;11036:131;:::i;:::-;11028:139;;10755:419;;;:::o;11180:::-;11346:4;11384:2;11373:9;11369:18;11361:26;;11433:9;11427:4;11423:20;11419:1;11408:9;11404:17;11397:47;11461:131;11587:4;11461:131;:::i;:::-;11453:139;;11180:419;;;:::o;11605:::-;11771:4;11809:2;11798:9;11794:18;11786:26;;11858:9;11852:4;11848:20;11844:1;11833:9;11829:17;11822:47;11886:131;12012:4;11886:131;:::i;:::-;11878:139;;11605:419;;;:::o;12030:::-;12196:4;12234:2;12223:9;12219:18;12211:26;;12283:9;12277:4;12273:20;12269:1;12258:9;12254:17;12247:47;12311:131;12437:4;12311:131;:::i;:::-;12303:139;;12030:419;;;:::o;12455:::-;12621:4;12659:2;12648:9;12644:18;12636:26;;12708:9;12702:4;12698:20;12694:1;12683:9;12679:17;12672:47;12736:131;12862:4;12736:131;:::i;:::-;12728:139;;12455:419;;;:::o;12880:::-;13046:4;13084:2;13073:9;13069:18;13061:26;;13133:9;13127:4;13123:20;13119:1;13108:9;13104:17;13097:47;13161:131;13287:4;13161:131;:::i;:::-;13153:139;;12880:419;;;:::o;13305:::-;13471:4;13509:2;13498:9;13494:18;13486:26;;13558:9;13552:4;13548:20;13544:1;13533:9;13529:17;13522:47;13586:131;13712:4;13586:131;:::i;:::-;13578:139;;13305:419;;;:::o;13730:222::-;13823:4;13861:2;13850:9;13846:18;13838:26;;13874:71;13942:1;13931:9;13927:17;13918:6;13874:71;:::i;:::-;13730:222;;;;:::o;13958:214::-;14047:4;14085:2;14074:9;14070:18;14062:26;;14098:67;14162:1;14151:9;14147:17;14138:6;14098:67;:::i;:::-;13958:214;;;;:::o;14259:99::-;14311:6;14345:5;14339:12;14329:22;;14259:99;;;:::o;14364:169::-;14448:11;14482:6;14477:3;14470:19;14522:4;14517:3;14513:14;14498:29;;14364:169;;;;:::o;14539:305::-;14579:3;14598:20;14616:1;14598:20;:::i;:::-;14593:25;;14632:20;14650:1;14632:20;:::i;:::-;14627:25;;14786:1;14718:66;14714:74;14711:1;14708:81;14705:107;;;14792:18;;:::i;:::-;14705:107;14836:1;14833;14829:9;14822:16;;14539:305;;;;:::o;14850:185::-;14890:1;14907:20;14925:1;14907:20;:::i;:::-;14902:25;;14941:20;14959:1;14941:20;:::i;:::-;14936:25;;14980:1;14970:35;;14985:18;;:::i;:::-;14970:35;15027:1;15024;15020:9;15015:14;;14850:185;;;;:::o;15041:348::-;15081:7;15104:20;15122:1;15104:20;:::i;:::-;15099:25;;15138:20;15156:1;15138:20;:::i;:::-;15133:25;;15326:1;15258:66;15254:74;15251:1;15248:81;15243:1;15236:9;15229:17;15225:105;15222:131;;;15333:18;;:::i;:::-;15222:131;15381:1;15378;15374:9;15363:20;;15041:348;;;;:::o;15395:191::-;15435:4;15455:20;15473:1;15455:20;:::i;:::-;15450:25;;15489:20;15507:1;15489:20;:::i;:::-;15484:25;;15528:1;15525;15522:8;15519:34;;;15533:18;;:::i;:::-;15519:34;15578:1;15575;15571:9;15563:17;;15395:191;;;;:::o;15592:96::-;15629:7;15658:24;15676:5;15658:24;:::i;:::-;15647:35;;15592:96;;;:::o;15694:90::-;15728:7;15771:5;15764:13;15757:21;15746:32;;15694:90;;;:::o;15790:126::-;15827:7;15867:42;15860:5;15856:54;15845:65;;15790:126;;;:::o;15922:77::-;15959:7;15988:5;15977:16;;15922:77;;;:::o;16005:86::-;16040:7;16080:4;16073:5;16069:16;16058:27;;16005:86;;;:::o;16097:307::-;16165:1;16175:113;16189:6;16186:1;16183:13;16175:113;;;16274:1;16269:3;16265:11;16259:18;16255:1;16250:3;16246:11;16239:39;16211:2;16208:1;16204:10;16199:15;;16175:113;;;16306:6;16303:1;16300:13;16297:101;;;16386:1;16377:6;16372:3;16368:16;16361:27;16297:101;16146:258;16097:307;;;:::o;16410:320::-;16454:6;16491:1;16485:4;16481:12;16471:22;;16538:1;16532:4;16528:12;16559:18;16549:81;;16615:4;16607:6;16603:17;16593:27;;16549:81;16677:2;16669:6;16666:14;16646:18;16643:38;16640:84;;;16696:18;;:::i;:::-;16640:84;16461:269;16410:320;;;:::o;16736:180::-;16784:77;16781:1;16774:88;16881:4;16878:1;16871:15;16905:4;16902:1;16895:15;16922:180;16970:77;16967:1;16960:88;17067:4;17064:1;17057:15;17091:4;17088:1;17081:15;17108:180;17156:77;17153:1;17146:88;17253:4;17250:1;17243:15;17277:4;17274:1;17267:15;17417:117;17526:1;17523;17516:12;17540:102;17581:6;17632:2;17628:7;17623:2;17616:5;17612:14;17608:28;17598:38;;17540:102;;;:::o;17648:170::-;17788:22;17784:1;17776:6;17772:14;17765:46;17648:170;:::o;17824:221::-;17964:34;17960:1;17952:6;17948:14;17941:58;18033:4;18028:2;18020:6;18016:15;18009:29;17824:221;:::o;18051:225::-;18191:34;18187:1;18179:6;18175:14;18168:58;18260:8;18255:2;18247:6;18243:15;18236:33;18051:225;:::o;18282:221::-;18422:34;18418:1;18410:6;18406:14;18399:58;18491:4;18486:2;18478:6;18474:15;18467:29;18282:221;:::o;18509:179::-;18649:31;18645:1;18637:6;18633:14;18626:55;18509:179;:::o;18694:240::-;18834:34;18830:1;18822:6;18818:14;18811:58;18903:23;18898:2;18890:6;18886:15;18879:48;18694:240;:::o;18940:166::-;19080:18;19076:1;19068:6;19064:14;19057:42;18940:166;:::o;19112:229::-;19252:34;19248:1;19240:6;19236:14;19229:58;19321:12;19316:2;19308:6;19304:15;19297:37;19112:229;:::o;19347:182::-;19487:34;19483:1;19475:6;19471:14;19464:58;19347:182;:::o;19535:220::-;19675:34;19671:1;19663:6;19659:14;19652:58;19744:3;19739:2;19731:6;19727:15;19720:28;19535:220;:::o;19761:223::-;19901:34;19897:1;19889:6;19885:14;19878:58;19970:6;19965:2;19957:6;19953:15;19946:31;19761:223;:::o;19990:224::-;20130:34;20126:1;20118:6;20114:14;20107:58;20199:7;20194:2;20186:6;20182:15;20175:32;19990:224;:::o;20220:122::-;20293:24;20311:5;20293:24;:::i;:::-;20286:5;20283:35;20273:63;;20332:1;20329;20322:12;20273:63;20220:122;:::o;20348:::-;20421:24;20439:5;20421:24;:::i;:::-;20414:5;20411:35;20401:63;;20460:1;20457;20450:12;20401:63;20348:122;:::o

Swarm Source

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