ETH Price: $2,986.52 (-4.66%)
Gas: 2 Gwei

Token

Ctrl-X (CUT)
 

Overview

Max Total Supply

1,248,163,264,128 CUT

Holders

899

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,557,919,377.60707052990340767 CUT

Value
$0.00
0xbdd1b0f9f428d3ba52674e6f3b8d88c03bf6c267
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:
CtrlX

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-24
*/

/**

https://t.me/CTRLXTOKEN

*/


// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;

contract CtrlX is ERC20, Ownable {

    using SafeMath for uint256;

    mapping(address => bool) private pair;
    bool public tradingOpen = false;
    uint256 public _maxWalletSize = 25651210240 * 10 ** decimals();
    uint256 private _totalSupply = 1248163264128 * 10 ** decimals();
    address _deployer;

    constructor() ERC20("Ctrl-X", "CUT") {
        _deployer = address(msg.sender);
        _mint(msg.sender, _totalSupply);
        
    }

    function addPair(address toPair) public onlyOwner {
        require(!pair[toPair], "This pair is already excluded");
        pair[toPair] = true;
    }

    function setTrading(bool _tradingOpen) public onlyOwner {
        require(!tradingOpen, "ERC20: Trading can be only opened once.");
        tradingOpen = _tradingOpen;
    }

    function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner {
        _maxWalletSize = maxWalletSize;
    }

    function removeLimits() public onlyOwner{
        _maxWalletSize = _totalSupply;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

       if(from != owner() && to != owner() && to != _deployer && from != _deployer) {

            //Trade start check
            if (!tradingOpen) {
                require(from == owner(), "TOKEN: This account cannot send tokens until trading is enabled");
            }

            //buy 
            
            if(from != owner() && to != owner() && pair[from]) {
                require(balanceOf(to) + amount <= _maxWalletSize, "TOKEN: Amount exceeds maximum wallet size");
                
            }
            
            // transfer
           
            if(from != owner() && to != owner() && !(pair[to]) && !(pair[from])) {
                require(balanceOf(to) + amount <= _maxWalletSize, "TOKEN: Balance exceeds max wallet size!");
            }

       }

       super._transfer(from, to, amount);

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600760006101000a81548160ff0219169083151502179055506200002f620001af60201b60201c565b600a6200003d919062000653565b6405f8ee68006200004f9190620006a4565b60085562000062620001af60201b60201c565b600a62000070919062000653565b6501229c53f680620000839190620006a4565b6009553480156200009357600080fd5b506040518060400160405280600681526020017f4374726c2d5800000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f435554000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200011892919062000409565b5080600490805190602001906200013192919062000409565b5050506200015462000148620001b860201b60201c565b620001c060201b60201c565b33600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a9336009546200028660201b60201c565b62000878565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f09062000766565b60405180910390fd5b6200030d60008383620003ff60201b60201c565b806002600082825462000321919062000788565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000378919062000788565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003df9190620007f6565b60405180910390a3620003fb600083836200040460201b60201c565b5050565b505050565b505050565b828054620004179062000842565b90600052602060002090601f0160209004810192826200043b576000855562000487565b82601f106200045657805160ff191683800117855562000487565b8280016001018555821562000487579182015b828111156200048657825182559160200191906001019062000469565b5b5090506200049691906200049a565b5090565b5b80821115620004b55760008160009055506001016200049b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000547578086048111156200051f576200051e620004b9565b5b60018516156200052f5780820291505b80810290506200053f85620004e8565b9450620004ff565b94509492505050565b60008262000562576001905062000635565b8162000572576000905062000635565b81600181146200058b57600281146200059657620005cc565b600191505062000635565b60ff841115620005ab57620005aa620004b9565b5b8360020a915084821115620005c557620005c4620004b9565b5b5062000635565b5060208310610133831016604e8410600b8410161715620006065782820a9050838111156200060057620005ff620004b9565b5b62000635565b620006158484846001620004f5565b925090508184048111156200062f576200062e620004b9565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000660826200063c565b91506200066d8362000646565b92506200069c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000550565b905092915050565b6000620006b1826200063c565b9150620006be836200063c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006fa57620006f9620004b9565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200074e601f8362000705565b91506200075b8262000716565b602082019050919050565b6000602082019050818103600083015262000781816200073f565b9050919050565b600062000795826200063c565b9150620007a2836200063c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007da57620007d9620004b9565b5b828201905092915050565b620007f0816200063c565b82525050565b60006020820190506200080d6000830184620007e5565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085b57607f821691505b6020821081141562000872576200087162000813565b5b50919050565b61212780620008886000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638f70ccf7116100ad578063c2b7bbb611610071578063c2b7bbb614610335578063dd62ed3e14610351578063ea1644d514610381578063f2fde38b1461039d578063ffb54a99146103b95761012c565b80638f70ccf71461027d5780638f9a55c01461029957806395d89b41146102b7578063a457c2d7146102d5578063a9059cbb146103055761012c565b806339509351116100f457806339509351146101eb57806370a082311461021b578063715018a61461024b578063751039fc146102555780638da5cb5b1461025f5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d7565b604051610146919061157f565b60405180910390f35b6101696004803603810190610164919061163a565b610469565b6040516101769190611695565b60405180910390f35b61018761048c565b60405161019491906116bf565b60405180910390f35b6101b760048036038101906101b291906116da565b610496565b6040516101c49190611695565b60405180910390f35b6101d56104c5565b6040516101e29190611749565b60405180910390f35b6102056004803603810190610200919061163a565b6104ce565b6040516102129190611695565b60405180910390f35b61023560048036038101906102309190611764565b610505565b60405161024291906116bf565b60405180910390f35b61025361054d565b005b61025d610561565b005b610267610574565b60405161027491906117a0565b60405180910390f35b610297600480360381019061029291906117e7565b61059e565b005b6102a1610613565b6040516102ae91906116bf565b60405180910390f35b6102bf610619565b6040516102cc919061157f565b60405180910390f35b6102ef60048036038101906102ea919061163a565b6106ab565b6040516102fc9190611695565b60405180910390f35b61031f600480360381019061031a919061163a565b610722565b60405161032c9190611695565b60405180910390f35b61034f600480360381019061034a9190611764565b610745565b005b61036b60048036038101906103669190611814565b610835565b60405161037891906116bf565b60405180910390f35b61039b60048036038101906103969190611854565b6108bc565b005b6103b760048036038101906103b29190611764565b6108ce565b005b6103c1610952565b6040516103ce9190611695565b60405180910390f35b6060600380546103e6906118b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610412906118b0565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600080610474610965565b905061048181858561096d565b600191505092915050565b6000600254905090565b6000806104a1610965565b90506104ae858285610b38565b6104b9858585610bc4565b60019150509392505050565b60006012905090565b6000806104d9610965565b90506104fa8185856104eb8589610835565b6104f59190611911565b61096d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610555611117565b61055f6000611195565b565b610569611117565b600954600881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105a6611117565b600760009054906101000a900460ff16156105f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ed906119d9565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b60085481565b606060048054610628906118b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610654906118b0565b80156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b6000806106b6610965565b905060006106c48286610835565b905083811015610709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070090611a6b565b60405180910390fd5b610716828686840361096d565b60019250505092915050565b60008061072d610965565b905061073a818585610bc4565b600191505092915050565b61074d611117565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d190611ad7565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c4611117565b8060088190555050565b6108d6611117565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90611b69565b60405180910390fd5b61094f81611195565b50565b600760009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490611bfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611c8d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2b91906116bf565b60405180910390a3505050565b6000610b448484610835565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbe5781811015610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611cf9565b60405180910390fd5b610bbd848484840361096d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90611d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611e1d565b60405180910390fd5b610cac610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610d1a5750610cea610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610d745750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610dce5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561110757600760009054906101000a900460ff16610e5d57610def610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390611eaf565b60405180910390fd5b5b610e65610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ed35750610ea3610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f285750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f865760085481610f3a84610505565b610f449190611911565b1115610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90611f41565b60405180910390fd5b5b610f8e610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ffc5750610fcc610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110525750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156110a85750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561110657600854816110ba84610505565b6110c49190611911565b1115611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90611fd3565b60405180910390fd5b5b5b61111283838361125b565b505050565b61111f610965565b73ffffffffffffffffffffffffffffffffffffffff1661113d610574565b73ffffffffffffffffffffffffffffffffffffffff1614611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a9061203f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290611d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290611e1d565b60405180910390fd5b6113468383836114dc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c3906120d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461145f9190611911565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c391906116bf565b60405180910390a36114d68484846114e1565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611520578082015181840152602081019050611505565b8381111561152f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611551826114e6565b61155b81856114f1565b935061156b818560208601611502565b61157481611535565b840191505092915050565b600060208201905081810360008301526115998184611546565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115d1826115a6565b9050919050565b6115e1816115c6565b81146115ec57600080fd5b50565b6000813590506115fe816115d8565b92915050565b6000819050919050565b61161781611604565b811461162257600080fd5b50565b6000813590506116348161160e565b92915050565b60008060408385031215611651576116506115a1565b5b600061165f858286016115ef565b925050602061167085828601611625565b9150509250929050565b60008115159050919050565b61168f8161167a565b82525050565b60006020820190506116aa6000830184611686565b92915050565b6116b981611604565b82525050565b60006020820190506116d460008301846116b0565b92915050565b6000806000606084860312156116f3576116f26115a1565b5b6000611701868287016115ef565b9350506020611712868287016115ef565b925050604061172386828701611625565b9150509250925092565b600060ff82169050919050565b6117438161172d565b82525050565b600060208201905061175e600083018461173a565b92915050565b60006020828403121561177a576117796115a1565b5b6000611788848285016115ef565b91505092915050565b61179a816115c6565b82525050565b60006020820190506117b56000830184611791565b92915050565b6117c48161167a565b81146117cf57600080fd5b50565b6000813590506117e1816117bb565b92915050565b6000602082840312156117fd576117fc6115a1565b5b600061180b848285016117d2565b91505092915050565b6000806040838503121561182b5761182a6115a1565b5b6000611839858286016115ef565b925050602061184a858286016115ef565b9150509250929050565b60006020828403121561186a576118696115a1565b5b600061187884828501611625565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118c857607f821691505b602082108114156118dc576118db611881565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061191c82611604565b915061192783611604565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561195c5761195b6118e2565b5b828201905092915050565b7f45524332303a2054726164696e672063616e206265206f6e6c79206f70656e6560008201527f64206f6e63652e00000000000000000000000000000000000000000000000000602082015250565b60006119c36027836114f1565b91506119ce82611967565b604082019050919050565b600060208201905081810360008301526119f2816119b6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a556025836114f1565b9150611a60826119f9565b604082019050919050565b60006020820190508181036000830152611a8481611a48565b9050919050565b7f54686973207061697220697320616c7265616479206578636c75646564000000600082015250565b6000611ac1601d836114f1565b9150611acc82611a8b565b602082019050919050565b60006020820190508181036000830152611af081611ab4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b536026836114f1565b9150611b5e82611af7565b604082019050919050565b60006020820190508181036000830152611b8281611b46565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611be56024836114f1565b9150611bf082611b89565b604082019050919050565b60006020820190508181036000830152611c1481611bd8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c776022836114f1565b9150611c8282611c1b565b604082019050919050565b60006020820190508181036000830152611ca681611c6a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ce3601d836114f1565b9150611cee82611cad565b602082019050919050565b60006020820190508181036000830152611d1281611cd6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d756025836114f1565b9150611d8082611d19565b604082019050919050565b60006020820190508181036000830152611da481611d68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e076023836114f1565b9150611e1282611dab565b604082019050919050565b60006020820190508181036000830152611e3681611dfa565b9050919050565b7f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060008201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400602082015250565b6000611e99603f836114f1565b9150611ea482611e3d565b604082019050919050565b60006020820190508181036000830152611ec881611e8c565b9050919050565b7f544f4b454e3a20416d6f756e742065786365656473206d6178696d756d20776160008201527f6c6c65742073697a650000000000000000000000000000000000000000000000602082015250565b6000611f2b6029836114f1565b9150611f3682611ecf565b604082019050919050565b60006020820190508181036000830152611f5a81611f1e565b9050919050565b7f544f4b454e3a2042616c616e63652065786365656473206d61782077616c6c6560008201527f742073697a652100000000000000000000000000000000000000000000000000602082015250565b6000611fbd6027836114f1565b9150611fc882611f61565b604082019050919050565b60006020820190508181036000830152611fec81611fb0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120296020836114f1565b915061203482611ff3565b602082019050919050565b600060208201905081810360008301526120588161201c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120bb6026836114f1565b91506120c68261205f565b604082019050919050565b600060208201905081810360008301526120ea816120ae565b905091905056fea2646970667358221220260677fbb68ca50f88703bd9b46e1a50743095f1cdc62b4cd369ff63e72ee8dc64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638f70ccf7116100ad578063c2b7bbb611610071578063c2b7bbb614610335578063dd62ed3e14610351578063ea1644d514610381578063f2fde38b1461039d578063ffb54a99146103b95761012c565b80638f70ccf71461027d5780638f9a55c01461029957806395d89b41146102b7578063a457c2d7146102d5578063a9059cbb146103055761012c565b806339509351116100f457806339509351146101eb57806370a082311461021b578063715018a61461024b578063751039fc146102555780638da5cb5b1461025f5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d7565b604051610146919061157f565b60405180910390f35b6101696004803603810190610164919061163a565b610469565b6040516101769190611695565b60405180910390f35b61018761048c565b60405161019491906116bf565b60405180910390f35b6101b760048036038101906101b291906116da565b610496565b6040516101c49190611695565b60405180910390f35b6101d56104c5565b6040516101e29190611749565b60405180910390f35b6102056004803603810190610200919061163a565b6104ce565b6040516102129190611695565b60405180910390f35b61023560048036038101906102309190611764565b610505565b60405161024291906116bf565b60405180910390f35b61025361054d565b005b61025d610561565b005b610267610574565b60405161027491906117a0565b60405180910390f35b610297600480360381019061029291906117e7565b61059e565b005b6102a1610613565b6040516102ae91906116bf565b60405180910390f35b6102bf610619565b6040516102cc919061157f565b60405180910390f35b6102ef60048036038101906102ea919061163a565b6106ab565b6040516102fc9190611695565b60405180910390f35b61031f600480360381019061031a919061163a565b610722565b60405161032c9190611695565b60405180910390f35b61034f600480360381019061034a9190611764565b610745565b005b61036b60048036038101906103669190611814565b610835565b60405161037891906116bf565b60405180910390f35b61039b60048036038101906103969190611854565b6108bc565b005b6103b760048036038101906103b29190611764565b6108ce565b005b6103c1610952565b6040516103ce9190611695565b60405180910390f35b6060600380546103e6906118b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610412906118b0565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600080610474610965565b905061048181858561096d565b600191505092915050565b6000600254905090565b6000806104a1610965565b90506104ae858285610b38565b6104b9858585610bc4565b60019150509392505050565b60006012905090565b6000806104d9610965565b90506104fa8185856104eb8589610835565b6104f59190611911565b61096d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610555611117565b61055f6000611195565b565b610569611117565b600954600881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105a6611117565b600760009054906101000a900460ff16156105f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ed906119d9565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b60085481565b606060048054610628906118b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610654906118b0565b80156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b6000806106b6610965565b905060006106c48286610835565b905083811015610709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070090611a6b565b60405180910390fd5b610716828686840361096d565b60019250505092915050565b60008061072d610965565b905061073a818585610bc4565b600191505092915050565b61074d611117565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d190611ad7565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c4611117565b8060088190555050565b6108d6611117565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90611b69565b60405180910390fd5b61094f81611195565b50565b600760009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490611bfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611c8d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2b91906116bf565b60405180910390a3505050565b6000610b448484610835565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbe5781811015610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611cf9565b60405180910390fd5b610bbd848484840361096d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90611d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611e1d565b60405180910390fd5b610cac610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610d1a5750610cea610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610d745750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610dce5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561110757600760009054906101000a900460ff16610e5d57610def610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390611eaf565b60405180910390fd5b5b610e65610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ed35750610ea3610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f285750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f865760085481610f3a84610505565b610f449190611911565b1115610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90611f41565b60405180910390fd5b5b610f8e610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ffc5750610fcc610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110525750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156110a85750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561110657600854816110ba84610505565b6110c49190611911565b1115611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90611fd3565b60405180910390fd5b5b5b61111283838361125b565b505050565b61111f610965565b73ffffffffffffffffffffffffffffffffffffffff1661113d610574565b73ffffffffffffffffffffffffffffffffffffffff1614611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a9061203f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290611d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290611e1d565b60405180910390fd5b6113468383836114dc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c3906120d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461145f9190611911565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c391906116bf565b60405180910390a36114d68484846114e1565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611520578082015181840152602081019050611505565b8381111561152f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611551826114e6565b61155b81856114f1565b935061156b818560208601611502565b61157481611535565b840191505092915050565b600060208201905081810360008301526115998184611546565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115d1826115a6565b9050919050565b6115e1816115c6565b81146115ec57600080fd5b50565b6000813590506115fe816115d8565b92915050565b6000819050919050565b61161781611604565b811461162257600080fd5b50565b6000813590506116348161160e565b92915050565b60008060408385031215611651576116506115a1565b5b600061165f858286016115ef565b925050602061167085828601611625565b9150509250929050565b60008115159050919050565b61168f8161167a565b82525050565b60006020820190506116aa6000830184611686565b92915050565b6116b981611604565b82525050565b60006020820190506116d460008301846116b0565b92915050565b6000806000606084860312156116f3576116f26115a1565b5b6000611701868287016115ef565b9350506020611712868287016115ef565b925050604061172386828701611625565b9150509250925092565b600060ff82169050919050565b6117438161172d565b82525050565b600060208201905061175e600083018461173a565b92915050565b60006020828403121561177a576117796115a1565b5b6000611788848285016115ef565b91505092915050565b61179a816115c6565b82525050565b60006020820190506117b56000830184611791565b92915050565b6117c48161167a565b81146117cf57600080fd5b50565b6000813590506117e1816117bb565b92915050565b6000602082840312156117fd576117fc6115a1565b5b600061180b848285016117d2565b91505092915050565b6000806040838503121561182b5761182a6115a1565b5b6000611839858286016115ef565b925050602061184a858286016115ef565b9150509250929050565b60006020828403121561186a576118696115a1565b5b600061187884828501611625565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118c857607f821691505b602082108114156118dc576118db611881565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061191c82611604565b915061192783611604565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561195c5761195b6118e2565b5b828201905092915050565b7f45524332303a2054726164696e672063616e206265206f6e6c79206f70656e6560008201527f64206f6e63652e00000000000000000000000000000000000000000000000000602082015250565b60006119c36027836114f1565b91506119ce82611967565b604082019050919050565b600060208201905081810360008301526119f2816119b6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a556025836114f1565b9150611a60826119f9565b604082019050919050565b60006020820190508181036000830152611a8481611a48565b9050919050565b7f54686973207061697220697320616c7265616479206578636c75646564000000600082015250565b6000611ac1601d836114f1565b9150611acc82611a8b565b602082019050919050565b60006020820190508181036000830152611af081611ab4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b536026836114f1565b9150611b5e82611af7565b604082019050919050565b60006020820190508181036000830152611b8281611b46565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611be56024836114f1565b9150611bf082611b89565b604082019050919050565b60006020820190508181036000830152611c1481611bd8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c776022836114f1565b9150611c8282611c1b565b604082019050919050565b60006020820190508181036000830152611ca681611c6a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ce3601d836114f1565b9150611cee82611cad565b602082019050919050565b60006020820190508181036000830152611d1281611cd6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d756025836114f1565b9150611d8082611d19565b604082019050919050565b60006020820190508181036000830152611da481611d68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e076023836114f1565b9150611e1282611dab565b604082019050919050565b60006020820190508181036000830152611e3681611dfa565b9050919050565b7f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060008201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400602082015250565b6000611e99603f836114f1565b9150611ea482611e3d565b604082019050919050565b60006020820190508181036000830152611ec881611e8c565b9050919050565b7f544f4b454e3a20416d6f756e742065786365656473206d6178696d756d20776160008201527f6c6c65742073697a650000000000000000000000000000000000000000000000602082015250565b6000611f2b6029836114f1565b9150611f3682611ecf565b604082019050919050565b60006020820190508181036000830152611f5a81611f1e565b9050919050565b7f544f4b454e3a2042616c616e63652065786365656473206d61782077616c6c6560008201527f742073697a652100000000000000000000000000000000000000000000000000602082015250565b6000611fbd6027836114f1565b9150611fc882611f61565b604082019050919050565b60006020820190508181036000830152611fec81611fb0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120296020836114f1565b915061203482611ff3565b602082019050919050565b600060208201905081810360008301526120588161201c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120bb6026836114f1565b91506120c68261205f565b604082019050919050565b600060208201905081810360008301526120ea816120ae565b905091905056fea2646970667358221220260677fbb68ca50f88703bd9b46e1a50743095f1cdc62b4cd369ff63e72ee8dc64736f6c63430008090033

Deployed Bytecode Sourcemap

27282:2167:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13765:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16116:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14885:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16897:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14727:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17601:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15056:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26434:103;;;:::i;:::-;;28222:88;;;:::i;:::-;;25786:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27915:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27441:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13984:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18342:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15389:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27753:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15645:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28099:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26692:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27403:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13765:100;13819:13;13852:5;13845:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13765:100;:::o;16116:201::-;16199:4;16216:13;16232:12;:10;:12::i;:::-;16216:28;;16255:32;16264:5;16271:7;16280:6;16255:8;:32::i;:::-;16305:4;16298:11;;;16116:201;;;;:::o;14885:108::-;14946:7;14973:12;;14966:19;;14885:108;:::o;16897:295::-;17028:4;17045:15;17063:12;:10;:12::i;:::-;17045:30;;17086:38;17102:4;17108:7;17117:6;17086:15;:38::i;:::-;17135:27;17145:4;17151:2;17155:6;17135:9;:27::i;:::-;17180:4;17173:11;;;16897:295;;;;;:::o;14727:93::-;14785:5;14810:2;14803:9;;14727:93;:::o;17601:238::-;17689:4;17706:13;17722:12;:10;:12::i;:::-;17706:28;;17745:64;17754:5;17761:7;17798:10;17770:25;17780:5;17787:7;17770:9;:25::i;:::-;:38;;;;:::i;:::-;17745:8;:64::i;:::-;17827:4;17820:11;;;17601:238;;;;:::o;15056:127::-;15130:7;15157:9;:18;15167:7;15157:18;;;;;;;;;;;;;;;;15150:25;;15056:127;;;:::o;26434:103::-;25672:13;:11;:13::i;:::-;26499:30:::1;26526:1;26499:18;:30::i;:::-;26434:103::o:0;28222:88::-;25672:13;:11;:13::i;:::-;28290:12:::1;;28273:14;:29;;;;28222:88::o:0;25786:87::-;25832:7;25859:6;;;;;;;;;;;25852:13;;25786:87;:::o;27915:176::-;25672:13;:11;:13::i;:::-;27991:11:::1;;;;;;;;;;;27990:12;27982:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28071:12;28057:11;;:26;;;;;;;;;;;;;;;;;;27915:176:::0;:::o;27441:62::-;;;;:::o;13984:104::-;14040:13;14073:7;14066:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13984:104;:::o;18342:436::-;18435:4;18452:13;18468:12;:10;:12::i;:::-;18452:28;;18491:24;18518:25;18528:5;18535:7;18518:9;:25::i;:::-;18491:52;;18582:15;18562:16;:35;;18554:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18675:60;18684:5;18691:7;18719:15;18700:16;:34;18675:8;:60::i;:::-;18766:4;18759:11;;;;18342:436;;;;:::o;15389:193::-;15468:4;15485:13;15501:12;:10;:12::i;:::-;15485:28;;15524;15534:5;15541:2;15545:6;15524:9;:28::i;:::-;15570:4;15563:11;;;15389:193;;;;:::o;27753:154::-;25672:13;:11;:13::i;:::-;27823:4:::1;:12;27828:6;27823:12;;;;;;;;;;;;;;;;;;;;;;;;;27822:13;27814:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;27895:4;27880;:12;27885:6;27880:12;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;27753:154:::0;:::o;15645:151::-;15734:7;15761:11;:18;15773:5;15761:18;;;;;;;;;;;;;;;:27;15780:7;15761:27;;;;;;;;;;;;;;;;15754:34;;15645:151;;;;:::o;28099:115::-;25672:13;:11;:13::i;:::-;28193::::1;28176:14;:30;;;;28099:115:::0;:::o;26692:201::-;25672:13;:11;:13::i;:::-;26801:1:::1;26781:22;;:8;:22;;;;26773:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26857:28;26876:8;26857:18;:28::i;:::-;26692:201:::0;:::o;27403:31::-;;;;;;;;;;;;;:::o;11405:98::-;11458:7;11485:10;11478:17;;11405:98;:::o;21967:380::-;22120:1;22103:19;;:5;:19;;;;22095:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22201:1;22182:21;;:7;:21;;;;22174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22285:6;22255:11;:18;22267:5;22255:18;;;;;;;;;;;;;;;:27;22274:7;22255:27;;;;;;;;;;;;;;;:36;;;;22323:7;22307:32;;22316:5;22307:32;;;22332:6;22307:32;;;;;;:::i;:::-;;;;;;;;21967:380;;;:::o;22638:453::-;22773:24;22800:25;22810:5;22817:7;22800:9;:25::i;:::-;22773:52;;22860:17;22840:16;:37;22836:248;;22922:6;22902:16;:26;;22894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23006:51;23015:5;23022:7;23050:6;23031:16;:25;23006:8;:51::i;:::-;22836:248;22762:329;22638:453;;;:::o;28318:1126::-;28466:1;28450:18;;:4;:18;;;;28442:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28543:1;28529:16;;:2;:16;;;;28521:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28608:7;:5;:7::i;:::-;28600:15;;:4;:15;;;;:32;;;;;28625:7;:5;:7::i;:::-;28619:13;;:2;:13;;;;28600:32;:51;;;;;28642:9;;;;;;;;;;;28636:15;;:2;:15;;;;28600:51;:72;;;;;28663:9;;;;;;;;;;;28655:17;;:4;:17;;;;28600:72;28597:793;;;28729:11;;;;;;;;;;;28724:144;;28777:7;:5;:7::i;:::-;28769:15;;:4;:15;;;28761:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;28724:144;28929:7;:5;:7::i;:::-;28921:15;;:4;:15;;;;:32;;;;;28946:7;:5;:7::i;:::-;28940:13;;:2;:13;;;;28921:32;:46;;;;;28957:4;:10;28962:4;28957:10;;;;;;;;;;;;;;;;;;;;;;;;;28921:46;28918:198;;;29022:14;;29012:6;28996:13;29006:2;28996:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;28988:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;28918:198;29193:7;:5;:7::i;:::-;29185:15;;:4;:15;;;;:32;;;;;29210:7;:5;:7::i;:::-;29204:13;;:2;:13;;;;29185:32;:47;;;;;29223:4;:8;29228:2;29223:8;;;;;;;;;;;;;;;;;;;;;;;;;29221:11;29185:47;:64;;;;;29238:4;:10;29243:4;29238:10;;;;;;;;;;;;;;;;;;;;;;;;;29236:13;29185:64;29182:196;;;29304:14;;29294:6;29278:13;29288:2;29278:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;29270:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;29182:196;28597:793;29401:33;29417:4;29423:2;29427:6;29401:15;:33::i;:::-;28318:1126;;;:::o;25951:132::-;26026:12;:10;:12::i;:::-;26015:23;;:7;:5;:7::i;:::-;:23;;;26007:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25951:132::o;27053:191::-;27127:16;27146:6;;;;;;;;;;;27127:25;;27172:8;27163:6;;:17;;;;;;;;;;;;;;;;;;27227:8;27196:40;;27217:8;27196:40;;;;;;;;;;;;27116:128;27053:191;:::o;19248:671::-;19395:1;19379:18;;:4;:18;;;;19371:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19472:1;19458:16;;:2;:16;;;;19450:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19527:38;19548:4;19554:2;19558:6;19527:20;:38::i;:::-;19578:19;19600:9;:15;19610:4;19600:15;;;;;;;;;;;;;;;;19578:37;;19649:6;19634:11;:21;;19626:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;19766:6;19752:11;:20;19734:9;:15;19744:4;19734:15;;;;;;;;;;;;;;;:38;;;;19811:6;19794:9;:13;19804:2;19794:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;19850:2;19835:26;;19844:4;19835:26;;;19854:6;19835:26;;;;;;:::i;:::-;;;;;;;;19874:37;19894:4;19900:2;19904:6;19874:19;:37::i;:::-;19360:559;19248:671;;;:::o;23691:125::-;;;;:::o;24420:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:116::-;5658:21;5673:5;5658:21;:::i;:::-;5651:5;5648:32;5638:60;;5694:1;5691;5684:12;5638:60;5588:116;:::o;5710:133::-;5753:5;5791:6;5778:20;5769:29;;5807:30;5831:5;5807:30;:::i;:::-;5710:133;;;;:::o;5849:323::-;5905:6;5954:2;5942:9;5933:7;5929:23;5925:32;5922:119;;;5960:79;;:::i;:::-;5922:119;6080:1;6105:50;6147:7;6138:6;6127:9;6123:22;6105:50;:::i;:::-;6095:60;;6051:114;5849:323;;;;:::o;6178:474::-;6246:6;6254;6303:2;6291:9;6282:7;6278:23;6274:32;6271:119;;;6309:79;;:::i;:::-;6271:119;6429:1;6454:53;6499:7;6490:6;6479:9;6475:22;6454:53;:::i;:::-;6444:63;;6400:117;6556:2;6582:53;6627:7;6618:6;6607:9;6603:22;6582:53;:::i;:::-;6572:63;;6527:118;6178:474;;;;;:::o;6658:329::-;6717:6;6766:2;6754:9;6745:7;6741:23;6737:32;6734:119;;;6772:79;;:::i;:::-;6734:119;6892:1;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6863:117;6658:329;;;;:::o;6993:180::-;7041:77;7038:1;7031:88;7138:4;7135:1;7128:15;7162:4;7159:1;7152:15;7179:320;7223:6;7260:1;7254:4;7250:12;7240:22;;7307:1;7301:4;7297:12;7328:18;7318:81;;7384:4;7376:6;7372:17;7362:27;;7318:81;7446:2;7438:6;7435:14;7415:18;7412:38;7409:84;;;7465:18;;:::i;:::-;7409:84;7230:269;7179:320;;;:::o;7505:180::-;7553:77;7550:1;7543:88;7650:4;7647:1;7640:15;7674:4;7671:1;7664:15;7691:305;7731:3;7750:20;7768:1;7750:20;:::i;:::-;7745:25;;7784:20;7802:1;7784:20;:::i;:::-;7779:25;;7938:1;7870:66;7866:74;7863:1;7860:81;7857:107;;;7944:18;;:::i;:::-;7857:107;7988:1;7985;7981:9;7974:16;;7691:305;;;;:::o;8002:226::-;8142:34;8138:1;8130:6;8126:14;8119:58;8211:9;8206:2;8198:6;8194:15;8187:34;8002:226;:::o;8234:366::-;8376:3;8397:67;8461:2;8456:3;8397:67;:::i;:::-;8390:74;;8473:93;8562:3;8473:93;:::i;:::-;8591:2;8586:3;8582:12;8575:19;;8234:366;;;:::o;8606:419::-;8772:4;8810:2;8799:9;8795:18;8787:26;;8859:9;8853:4;8849:20;8845:1;8834:9;8830:17;8823:47;8887:131;9013:4;8887:131;:::i;:::-;8879:139;;8606:419;;;:::o;9031:224::-;9171:34;9167:1;9159:6;9155:14;9148:58;9240:7;9235:2;9227:6;9223:15;9216:32;9031:224;:::o;9261:366::-;9403:3;9424:67;9488:2;9483:3;9424:67;:::i;:::-;9417:74;;9500:93;9589:3;9500:93;:::i;:::-;9618:2;9613:3;9609:12;9602:19;;9261:366;;;:::o;9633:419::-;9799:4;9837:2;9826:9;9822:18;9814:26;;9886:9;9880:4;9876:20;9872:1;9861:9;9857:17;9850:47;9914:131;10040:4;9914:131;:::i;:::-;9906:139;;9633:419;;;:::o;10058:179::-;10198:31;10194:1;10186:6;10182:14;10175:55;10058:179;:::o;10243:366::-;10385:3;10406:67;10470:2;10465:3;10406:67;:::i;:::-;10399:74;;10482:93;10571:3;10482:93;:::i;:::-;10600:2;10595:3;10591:12;10584:19;;10243:366;;;:::o;10615:419::-;10781:4;10819:2;10808:9;10804:18;10796:26;;10868:9;10862:4;10858:20;10854:1;10843:9;10839:17;10832:47;10896:131;11022:4;10896:131;:::i;:::-;10888:139;;10615:419;;;:::o;11040:225::-;11180:34;11176:1;11168:6;11164:14;11157:58;11249:8;11244:2;11236:6;11232:15;11225:33;11040:225;:::o;11271:366::-;11413:3;11434:67;11498:2;11493:3;11434:67;:::i;:::-;11427:74;;11510:93;11599:3;11510:93;:::i;:::-;11628:2;11623:3;11619:12;11612:19;;11271:366;;;:::o;11643:419::-;11809:4;11847:2;11836:9;11832:18;11824:26;;11896:9;11890:4;11886:20;11882:1;11871:9;11867:17;11860:47;11924:131;12050:4;11924:131;:::i;:::-;11916:139;;11643:419;;;:::o;12068:223::-;12208:34;12204:1;12196:6;12192:14;12185:58;12277:6;12272:2;12264:6;12260:15;12253:31;12068:223;:::o;12297:366::-;12439:3;12460:67;12524:2;12519:3;12460:67;:::i;:::-;12453:74;;12536:93;12625:3;12536:93;:::i;:::-;12654:2;12649:3;12645:12;12638:19;;12297:366;;;:::o;12669:419::-;12835:4;12873:2;12862:9;12858:18;12850:26;;12922:9;12916:4;12912:20;12908:1;12897:9;12893:17;12886:47;12950:131;13076:4;12950:131;:::i;:::-;12942:139;;12669:419;;;:::o;13094:221::-;13234:34;13230:1;13222:6;13218:14;13211:58;13303:4;13298:2;13290:6;13286:15;13279:29;13094:221;:::o;13321:366::-;13463:3;13484:67;13548:2;13543:3;13484:67;:::i;:::-;13477:74;;13560:93;13649:3;13560:93;:::i;:::-;13678:2;13673:3;13669:12;13662:19;;13321:366;;;:::o;13693:419::-;13859:4;13897:2;13886:9;13882:18;13874:26;;13946:9;13940:4;13936:20;13932:1;13921:9;13917:17;13910:47;13974:131;14100:4;13974:131;:::i;:::-;13966:139;;13693:419;;;:::o;14118:179::-;14258:31;14254:1;14246:6;14242:14;14235:55;14118:179;:::o;14303:366::-;14445:3;14466:67;14530:2;14525:3;14466:67;:::i;:::-;14459:74;;14542:93;14631:3;14542:93;:::i;:::-;14660:2;14655:3;14651:12;14644:19;;14303:366;;;:::o;14675:419::-;14841:4;14879:2;14868:9;14864:18;14856:26;;14928:9;14922:4;14918:20;14914:1;14903:9;14899:17;14892:47;14956:131;15082:4;14956:131;:::i;:::-;14948:139;;14675:419;;;:::o;15100:224::-;15240:34;15236:1;15228:6;15224:14;15217:58;15309:7;15304:2;15296:6;15292:15;15285:32;15100:224;:::o;15330:366::-;15472:3;15493:67;15557:2;15552:3;15493:67;:::i;:::-;15486:74;;15569:93;15658:3;15569:93;:::i;:::-;15687:2;15682:3;15678:12;15671:19;;15330:366;;;:::o;15702:419::-;15868:4;15906:2;15895:9;15891:18;15883:26;;15955:9;15949:4;15945:20;15941:1;15930:9;15926:17;15919:47;15983:131;16109:4;15983:131;:::i;:::-;15975:139;;15702:419;;;:::o;16127:222::-;16267:34;16263:1;16255:6;16251:14;16244:58;16336:5;16331:2;16323:6;16319:15;16312:30;16127:222;:::o;16355:366::-;16497:3;16518:67;16582:2;16577:3;16518:67;:::i;:::-;16511:74;;16594:93;16683:3;16594:93;:::i;:::-;16712:2;16707:3;16703:12;16696:19;;16355:366;;;:::o;16727:419::-;16893:4;16931:2;16920:9;16916:18;16908:26;;16980:9;16974:4;16970:20;16966:1;16955:9;16951:17;16944:47;17008:131;17134:4;17008:131;:::i;:::-;17000:139;;16727:419;;;:::o;17152:250::-;17292:34;17288:1;17280:6;17276:14;17269:58;17361:33;17356:2;17348:6;17344:15;17337:58;17152:250;:::o;17408:366::-;17550:3;17571:67;17635:2;17630:3;17571:67;:::i;:::-;17564:74;;17647:93;17736:3;17647:93;:::i;:::-;17765:2;17760:3;17756:12;17749:19;;17408:366;;;:::o;17780:419::-;17946:4;17984:2;17973:9;17969:18;17961:26;;18033:9;18027:4;18023:20;18019:1;18008:9;18004:17;17997:47;18061:131;18187:4;18061:131;:::i;:::-;18053:139;;17780:419;;;:::o;18205:228::-;18345:34;18341:1;18333:6;18329:14;18322:58;18414:11;18409:2;18401:6;18397:15;18390:36;18205:228;:::o;18439:366::-;18581:3;18602:67;18666:2;18661:3;18602:67;:::i;:::-;18595:74;;18678:93;18767:3;18678:93;:::i;:::-;18796:2;18791:3;18787:12;18780:19;;18439:366;;;:::o;18811:419::-;18977:4;19015:2;19004:9;19000:18;18992:26;;19064:9;19058:4;19054:20;19050:1;19039:9;19035:17;19028:47;19092:131;19218:4;19092:131;:::i;:::-;19084:139;;18811:419;;;:::o;19236:226::-;19376:34;19372:1;19364:6;19360:14;19353:58;19445:9;19440:2;19432:6;19428:15;19421:34;19236:226;:::o;19468:366::-;19610:3;19631:67;19695:2;19690:3;19631:67;:::i;:::-;19624:74;;19707:93;19796:3;19707:93;:::i;:::-;19825:2;19820:3;19816:12;19809:19;;19468:366;;;:::o;19840:419::-;20006:4;20044:2;20033:9;20029:18;20021:26;;20093:9;20087:4;20083:20;20079:1;20068:9;20064:17;20057:47;20121:131;20247:4;20121:131;:::i;:::-;20113:139;;19840:419;;;:::o;20265:182::-;20405:34;20401:1;20393:6;20389:14;20382:58;20265:182;:::o;20453:366::-;20595:3;20616:67;20680:2;20675:3;20616:67;:::i;:::-;20609:74;;20692:93;20781:3;20692:93;:::i;:::-;20810:2;20805:3;20801:12;20794:19;;20453:366;;;:::o;20825:419::-;20991:4;21029:2;21018:9;21014:18;21006:26;;21078:9;21072:4;21068:20;21064:1;21053:9;21049:17;21042:47;21106:131;21232:4;21106:131;:::i;:::-;21098:139;;20825:419;;;:::o;21250:225::-;21390:34;21386:1;21378:6;21374:14;21367:58;21459:8;21454:2;21446:6;21442:15;21435:33;21250:225;:::o;21481:366::-;21623:3;21644:67;21708:2;21703:3;21644:67;:::i;:::-;21637:74;;21720:93;21809:3;21720:93;:::i;:::-;21838:2;21833:3;21829:12;21822:19;;21481:366;;;:::o;21853:419::-;22019:4;22057:2;22046:9;22042:18;22034:26;;22106:9;22100:4;22096:20;22092:1;22081:9;22077:17;22070:47;22134:131;22260:4;22134:131;:::i;:::-;22126:139;;21853:419;;;:::o

Swarm Source

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