false
false
0

Contract Address Details

0xe990eAA4D078f3F3018F692A5880423cF9536f92

Token
CootieCash (COOTCASH)
Creator
0xfd0c8b–ba4a82 at 0x28eb6a–0a8583
Balance
0 FLR
Tokens
Fetching tokens...
Transactions
5,890 Transactions
Transfers
4 Transfers
Gas Used
257,467,872
Last Balance Update
30002258
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
cootiecash




Optimization enabled
false
Compiler version
v0.8.4+commit.c7e474f2




EVM Version
default




Verified at
2023-02-02T15:26:26.785908Z

Constructor Arguments

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a436f6f74696543617368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434f4f5443415348000000000000000000000000000000000000000000000000

Arg [0] (string) : CootieCash
Arg [1] (string) : COOTCASH

              

Contract source code

// File: contracts/token1.sol



// 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 t7he
     * 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/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/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}.
 */

// 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).
 */
 

// 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: contracts/FlareProject/erc20.sol

pragma solidity 0.8.4;
contract cootiecash is Context, IERC20, IERC20Metadata,  Ownable {
  using SafeMath for uint256;

    mapping(address => mapping(address => uint256)) private _allowances;
  mapping(address => uint256) private _balances;
  mapping(address => bool) controllers;

  uint256 private _totalSupply;
  uint256 constant MAXIMUMSUPPLY=1000000000*10**18;
  
    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_;
    }




    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-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`.
     */
     

    /**
     * @dev See {IERC20-allowance}.
     */

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
    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;
    }

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

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

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}


    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

  function mintAirdrop(address[] calldata holder, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can mint");
    for (uint256 i = 0; i < holder.length; i++){
    
    require((_totalSupply+amount)<=MAXIMUMSUPPLY,"Maximum supply has been reached");
    _totalSupply = _totalSupply.add(amount);
    _balances[holder[i]] = _balances[holder[i]].add(amount);
      _mint(holder[i], 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);
    }
    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);
    }

     uint256 _burnPercentage=1;

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
            uint256 burnAmount = (amount*_burnPercentage)/10000; // calculate burn amount based on percentage

        _transfer(owner, to, amount-burnAmount);
           _burn(msg.sender, burnAmount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
                    uint256 burnAmount = (amount*_burnPercentage)/10000; // calculate burn amount based on percentage

        _transfer(from, to, amount-burnAmount);
                   _burn(msg.sender, burnAmount);

        return true;
    }
    
    function burnPercentage() public view virtual  returns (uint256) {
        return _burnPercentage;
    }

  function setBurnPercentage(uint256 percentage) public onlyOwner {
    _burnPercentage = percentage;
  }

  function mint(address to, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can mint");
    require((_totalSupply+amount)<=MAXIMUMSUPPLY,"Maximum supply has been reached");
    _totalSupply = _totalSupply.add(amount);
    _balances[to] = _balances[to].add(amount);
    _mint(to, amount);
  }

  function burnFrom(address account, uint256 amount) public  {
      if (controllers[msg.sender]) {
          _burn(account, amount);
      }
      else {
         _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
      }
  }
  function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {

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

  function addController(address controller) external onlyOwner {
    controllers[controller] = true;
  }

  function removeController(address controller) external onlyOwner {
    controllers[controller] = false;
  }

  function totalSupply() public override view returns (uint256) {
    return _totalSupply;
  }

  function maxSupply() public  pure returns (uint256) {
    return MAXIMUMSUPPLY;
  }

}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"name_","internalType":"string"},{"type":"string","name":"symbol_","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addController","inputs":[{"type":"address","name":"controller","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burnPercentage","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mintAirdrop","inputs":[{"type":"address[]","name":"holder","internalType":"address[]"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeController","inputs":[{"type":"address","name":"controller","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBurnPercentage","inputs":[{"type":"uint256","name":"percentage","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

0x608060405260016007553480156200001657600080fd5b50604051620029ac380380620029ac83398181016040528101906200003c919062000284565b6200005c620000506200009660201b60201c565b6200009e60201b60201c565b81600590805190602001906200007492919062000162565b5080600690805190602001906200008d92919062000162565b50505062000467565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000170906200038c565b90600052602060002090601f016020900481019282620001945760008555620001e0565b82601f10620001af57805160ff1916838001178555620001e0565b82800160010185558215620001e0579182015b82811115620001df578251825591602001919060010190620001c2565b5b509050620001ef9190620001f3565b5090565b5b808211156200020e576000816000905550600101620001f4565b5090565b600062000229620002238462000320565b620002f7565b9050828152602081018484840111156200024257600080fd5b6200024f84828562000356565b509392505050565b600082601f8301126200026957600080fd5b81516200027b84826020860162000212565b91505092915050565b600080604083850312156200029857600080fd5b600083015167ffffffffffffffff811115620002b357600080fd5b620002c18582860162000257565b925050602083015167ffffffffffffffff811115620002df57600080fd5b620002ed8582860162000257565b9150509250929050565b60006200030362000316565b9050620003118282620003c2565b919050565b6000604051905090565b600067ffffffffffffffff8211156200033e576200033d62000427565b5b620003498262000456565b9050602081019050919050565b60005b838110156200037657808201518184015260208101905062000359565b8381111562000386576000848401525b50505050565b60006002820490506001821680620003a557607f821691505b60208210811415620003bc57620003bb620003f8565b5b50919050565b620003cd8262000456565b810181811067ffffffffffffffff82111715620003ef57620003ee62000427565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61253580620004776000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806395d89b41116100b8578063c3f0d3271161007c578063c3f0d32714610377578063d5abeb0114610393578063dd62ed3e146103b1578063f01f20df146103e1578063f2fde38b146103ff578063f6a74ed71461041b57610142565b806395d89b41146102c1578063a457c2d7146102df578063a7fc7a071461030f578063a9059cbb1461032b578063b6bae3631461035b57610142565b8063395093511161010a578063395093511461020157806340c10f191461023157806370a082311461024d578063715018a61461027d57806379cc6790146102875780638da5cb5b146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610437565b60405161015c9190611c53565b60405180910390f35b61017f600480360381019061017a9190611901565b6104c9565b60405161018c9190611c38565b60405180910390f35b61019d6104ec565b6040516101aa9190611e35565b60405180910390f35b6101cd60048036038101906101c891906118b2565b6104f6565b6040516101da9190611c38565b60405180910390f35b6101eb61055a565b6040516101f89190611e50565b60405180910390f35b61021b60048036038101906102169190611901565b610563565b6040516102289190611c38565b60405180910390f35b61024b60048036038101906102469190611901565b61059a565b005b6102676004803603810190610262919061184d565b610740565b6040516102749190611e35565b60405180910390f35b610285610789565b005b6102a1600480360381019061029c9190611901565b61079d565b005b6102ab61081f565b6040516102b89190611c1d565b60405180910390f35b6102c9610848565b6040516102d69190611c53565b60405180910390f35b6102f960048036038101906102f49190611901565b6108da565b6040516103069190611c38565b60405180910390f35b6103296004803603810190610324919061184d565b610951565b005b61034560048036038101906103409190611901565b6109b4565b6040516103529190611c38565b60405180910390f35b6103756004803603810190610370919061193d565b610a0c565b005b610391600480360381019061038c9190611995565b610cbc565b005b61039b610cce565b6040516103a89190611e35565b60405180910390f35b6103cb60048036038101906103c69190611876565b610ce2565b6040516103d89190611e35565b60405180910390f35b6103e9610d69565b6040516103f69190611e35565b60405180910390f35b6104196004803603810190610414919061184d565b610d73565b005b6104356004803603810190610430919061184d565b610df7565b005b60606005805461044690612024565b80601f016020809104026020016040519081016040528092919081815260200182805461047290612024565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b6000806104d4610e5a565b90506104e1818585610e62565b600191505092915050565b6000600454905090565b600080610501610e5a565b905061050e85828561102d565b6000612710600754856105219190611f0e565b61052b9190611edd565b90506105438686838761053e9190611f68565b6110b9565b61054d338261133d565b6001925050509392505050565b60006012905090565b60008061056e610e5a565b905061058f8185856105808589610ce2565b61058a9190611e87565b610e62565b600191505092915050565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90611d35565b60405180910390fd5b6b033b2e3c9fd0803ce8000000816004546106419190611e87565b1115610682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067990611d95565b60405180910390fd5b6106978160045461151690919063ffffffff16565b6004819055506106ef81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461151690919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061073c828261152c565b5050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61079161168d565b61079b600061170b565b565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107fe576107f9828261133d565b61081b565b6108108261080a610e5a565b8361102d565b61081a828261133d565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461085790612024565b80601f016020809104026020016040519081016040528092919081815260200182805461088390612024565b80156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b6000806108e5610e5a565b905060006108f38286610ce2565b905083811015610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90611df5565b60405180910390fd5b6109458286868403610e62565b60019250505092915050565b61095961168d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806109bf610e5a565b90506000612710600754856109d49190611f0e565b6109de9190611edd565b90506109f6828683876109f19190611f68565b6110b9565b610a00338261133d565b60019250505092915050565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f90611d35565b60405180910390fd5b60005b83839050811015610cb6576b033b2e3c9fd0803ce800000082600454610ac19190611e87565b1115610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990611d95565b60405180910390fd5b610b178260045461151690919063ffffffff16565b600481905550610bbc8260026000878786818110610b5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b73919061184d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461151690919063ffffffff16565b60026000868685818110610bf9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610c0e919061184d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ca3848483818110610c88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610c9d919061184d565b8361152c565b8080610cae90612056565b915050610a9b565b50505050565b610cc461168d565b8060078190555050565b60006b033b2e3c9fd0803ce8000000905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600754905090565b610d7b61168d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290611cb5565b60405180910390fd5b610df48161170b565b50565b610dff61168d565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990611dd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990611cd5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110209190611e35565b60405180910390a3505050565b60006110398484610ce2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110b357818110156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90611cf5565b60405180910390fd5b6110b28484848403610e62565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090611db5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090611c75565b60405180910390fd5b6111a48383836117cf565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290611d15565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112c09190611e87565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113249190611e35565b60405180910390a36113378484846117d4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490611d75565b60405180910390fd5b6113b9826000836117cf565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790611c95565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546114989190611f68565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114fd9190611e35565b60405180910390a3611511836000846117d4565b505050565b600081836115249190611e87565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390611e15565b60405180910390fd5b6115a8600083836117cf565b80600460008282546115ba9190611e87565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116109190611e87565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116759190611e35565b60405180910390a3611689600083836117d4565b5050565b611695610e5a565b73ffffffffffffffffffffffffffffffffffffffff166116b361081f565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090611d55565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506117e8816124d1565b92915050565b60008083601f84011261180057600080fd5b8235905067ffffffffffffffff81111561181957600080fd5b60208301915083602082028301111561183157600080fd5b9250929050565b600081359050611847816124e8565b92915050565b60006020828403121561185f57600080fd5b600061186d848285016117d9565b91505092915050565b6000806040838503121561188957600080fd5b6000611897858286016117d9565b92505060206118a8858286016117d9565b9150509250929050565b6000806000606084860312156118c757600080fd5b60006118d5868287016117d9565b93505060206118e6868287016117d9565b92505060406118f786828701611838565b9150509250925092565b6000806040838503121561191457600080fd5b6000611922858286016117d9565b925050602061193385828601611838565b9150509250929050565b60008060006040848603121561195257600080fd5b600084013567ffffffffffffffff81111561196c57600080fd5b611978868287016117ee565b9350935050602061198b86828701611838565b9150509250925092565b6000602082840312156119a757600080fd5b60006119b584828501611838565b91505092915050565b6119c781611f9c565b82525050565b6119d681611fae565b82525050565b60006119e782611e6b565b6119f18185611e76565b9350611a01818560208601611ff1565b611a0a8161212c565b840191505092915050565b6000611a22602383611e76565b9150611a2d8261213d565b604082019050919050565b6000611a45602283611e76565b9150611a508261218c565b604082019050919050565b6000611a68602683611e76565b9150611a73826121db565b604082019050919050565b6000611a8b602283611e76565b9150611a968261222a565b604082019050919050565b6000611aae601d83611e76565b9150611ab982612279565b602082019050919050565b6000611ad1602683611e76565b9150611adc826122a2565b604082019050919050565b6000611af4601983611e76565b9150611aff826122f1565b602082019050919050565b6000611b17602083611e76565b9150611b228261231a565b602082019050919050565b6000611b3a602183611e76565b9150611b4582612343565b604082019050919050565b6000611b5d601f83611e76565b9150611b6882612392565b602082019050919050565b6000611b80602583611e76565b9150611b8b826123bb565b604082019050919050565b6000611ba3602483611e76565b9150611bae8261240a565b604082019050919050565b6000611bc6602583611e76565b9150611bd182612459565b604082019050919050565b6000611be9601f83611e76565b9150611bf4826124a8565b602082019050919050565b611c0881611fda565b82525050565b611c1781611fe4565b82525050565b6000602082019050611c3260008301846119be565b92915050565b6000602082019050611c4d60008301846119cd565b92915050565b60006020820190508181036000830152611c6d81846119dc565b905092915050565b60006020820190508181036000830152611c8e81611a15565b9050919050565b60006020820190508181036000830152611cae81611a38565b9050919050565b60006020820190508181036000830152611cce81611a5b565b9050919050565b60006020820190508181036000830152611cee81611a7e565b9050919050565b60006020820190508181036000830152611d0e81611aa1565b9050919050565b60006020820190508181036000830152611d2e81611ac4565b9050919050565b60006020820190508181036000830152611d4e81611ae7565b9050919050565b60006020820190508181036000830152611d6e81611b0a565b9050919050565b60006020820190508181036000830152611d8e81611b2d565b9050919050565b60006020820190508181036000830152611dae81611b50565b9050919050565b60006020820190508181036000830152611dce81611b73565b9050919050565b60006020820190508181036000830152611dee81611b96565b9050919050565b60006020820190508181036000830152611e0e81611bb9565b9050919050565b60006020820190508181036000830152611e2e81611bdc565b9050919050565b6000602082019050611e4a6000830184611bff565b92915050565b6000602082019050611e656000830184611c0e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e9282611fda565b9150611e9d83611fda565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ed257611ed161209f565b5b828201905092915050565b6000611ee882611fda565b9150611ef383611fda565b925082611f0357611f026120ce565b5b828204905092915050565b6000611f1982611fda565b9150611f2483611fda565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f5d57611f5c61209f565b5b828202905092915050565b6000611f7382611fda565b9150611f7e83611fda565b925082821015611f9157611f9061209f565b5b828203905092915050565b6000611fa782611fba565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561200f578082015181840152602081019050611ff4565b8381111561201e576000848401525b50505050565b6000600282049050600182168061203c57607f821691505b602082108114156120505761204f6120fd565b5b50919050565b600061206182611fda565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156120945761209361209f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c7920686173206265656e207265616368656400600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6124da81611f9c565b81146124e557600080fd5b50565b6124f181611fda565b81146124fc57600080fd5b5056fea2646970667358221220c8f79700c5155fa53a4914e4da3ec9f2e7f74d2beea3d7ce7b608f0929d3870064736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a436f6f74696543617368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434f4f5443415348000000000000000000000000000000000000000000000000

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806395d89b41116100b8578063c3f0d3271161007c578063c3f0d32714610377578063d5abeb0114610393578063dd62ed3e146103b1578063f01f20df146103e1578063f2fde38b146103ff578063f6a74ed71461041b57610142565b806395d89b41146102c1578063a457c2d7146102df578063a7fc7a071461030f578063a9059cbb1461032b578063b6bae3631461035b57610142565b8063395093511161010a578063395093511461020157806340c10f191461023157806370a082311461024d578063715018a61461027d57806379cc6790146102875780638da5cb5b146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610437565b60405161015c9190611c53565b60405180910390f35b61017f600480360381019061017a9190611901565b6104c9565b60405161018c9190611c38565b60405180910390f35b61019d6104ec565b6040516101aa9190611e35565b60405180910390f35b6101cd60048036038101906101c891906118b2565b6104f6565b6040516101da9190611c38565b60405180910390f35b6101eb61055a565b6040516101f89190611e50565b60405180910390f35b61021b60048036038101906102169190611901565b610563565b6040516102289190611c38565b60405180910390f35b61024b60048036038101906102469190611901565b61059a565b005b6102676004803603810190610262919061184d565b610740565b6040516102749190611e35565b60405180910390f35b610285610789565b005b6102a1600480360381019061029c9190611901565b61079d565b005b6102ab61081f565b6040516102b89190611c1d565b60405180910390f35b6102c9610848565b6040516102d69190611c53565b60405180910390f35b6102f960048036038101906102f49190611901565b6108da565b6040516103069190611c38565b60405180910390f35b6103296004803603810190610324919061184d565b610951565b005b61034560048036038101906103409190611901565b6109b4565b6040516103529190611c38565b60405180910390f35b6103756004803603810190610370919061193d565b610a0c565b005b610391600480360381019061038c9190611995565b610cbc565b005b61039b610cce565b6040516103a89190611e35565b60405180910390f35b6103cb60048036038101906103c69190611876565b610ce2565b6040516103d89190611e35565b60405180910390f35b6103e9610d69565b6040516103f69190611e35565b60405180910390f35b6104196004803603810190610414919061184d565b610d73565b005b6104356004803603810190610430919061184d565b610df7565b005b60606005805461044690612024565b80601f016020809104026020016040519081016040528092919081815260200182805461047290612024565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b6000806104d4610e5a565b90506104e1818585610e62565b600191505092915050565b6000600454905090565b600080610501610e5a565b905061050e85828561102d565b6000612710600754856105219190611f0e565b61052b9190611edd565b90506105438686838761053e9190611f68565b6110b9565b61054d338261133d565b6001925050509392505050565b60006012905090565b60008061056e610e5a565b905061058f8185856105808589610ce2565b61058a9190611e87565b610e62565b600191505092915050565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90611d35565b60405180910390fd5b6b033b2e3c9fd0803ce8000000816004546106419190611e87565b1115610682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067990611d95565b60405180910390fd5b6106978160045461151690919063ffffffff16565b6004819055506106ef81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461151690919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061073c828261152c565b5050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61079161168d565b61079b600061170b565b565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107fe576107f9828261133d565b61081b565b6108108261080a610e5a565b8361102d565b61081a828261133d565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461085790612024565b80601f016020809104026020016040519081016040528092919081815260200182805461088390612024565b80156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b6000806108e5610e5a565b905060006108f38286610ce2565b905083811015610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90611df5565b60405180910390fd5b6109458286868403610e62565b60019250505092915050565b61095961168d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806109bf610e5a565b90506000612710600754856109d49190611f0e565b6109de9190611edd565b90506109f6828683876109f19190611f68565b6110b9565b610a00338261133d565b60019250505092915050565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f90611d35565b60405180910390fd5b60005b83839050811015610cb6576b033b2e3c9fd0803ce800000082600454610ac19190611e87565b1115610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990611d95565b60405180910390fd5b610b178260045461151690919063ffffffff16565b600481905550610bbc8260026000878786818110610b5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b73919061184d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461151690919063ffffffff16565b60026000868685818110610bf9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610c0e919061184d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ca3848483818110610c88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610c9d919061184d565b8361152c565b8080610cae90612056565b915050610a9b565b50505050565b610cc461168d565b8060078190555050565b60006b033b2e3c9fd0803ce8000000905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600754905090565b610d7b61168d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290611cb5565b60405180910390fd5b610df48161170b565b50565b610dff61168d565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990611dd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990611cd5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110209190611e35565b60405180910390a3505050565b60006110398484610ce2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110b357818110156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90611cf5565b60405180910390fd5b6110b28484848403610e62565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090611db5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090611c75565b60405180910390fd5b6111a48383836117cf565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290611d15565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112c09190611e87565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113249190611e35565b60405180910390a36113378484846117d4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490611d75565b60405180910390fd5b6113b9826000836117cf565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790611c95565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546114989190611f68565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114fd9190611e35565b60405180910390a3611511836000846117d4565b505050565b600081836115249190611e87565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390611e15565b60405180910390fd5b6115a8600083836117cf565b80600460008282546115ba9190611e87565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116109190611e87565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116759190611e35565b60405180910390a3611689600083836117d4565b5050565b611695610e5a565b73ffffffffffffffffffffffffffffffffffffffff166116b361081f565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090611d55565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506117e8816124d1565b92915050565b60008083601f84011261180057600080fd5b8235905067ffffffffffffffff81111561181957600080fd5b60208301915083602082028301111561183157600080fd5b9250929050565b600081359050611847816124e8565b92915050565b60006020828403121561185f57600080fd5b600061186d848285016117d9565b91505092915050565b6000806040838503121561188957600080fd5b6000611897858286016117d9565b92505060206118a8858286016117d9565b9150509250929050565b6000806000606084860312156118c757600080fd5b60006118d5868287016117d9565b93505060206118e6868287016117d9565b92505060406118f786828701611838565b9150509250925092565b6000806040838503121561191457600080fd5b6000611922858286016117d9565b925050602061193385828601611838565b9150509250929050565b60008060006040848603121561195257600080fd5b600084013567ffffffffffffffff81111561196c57600080fd5b611978868287016117ee565b9350935050602061198b86828701611838565b9150509250925092565b6000602082840312156119a757600080fd5b60006119b584828501611838565b91505092915050565b6119c781611f9c565b82525050565b6119d681611fae565b82525050565b60006119e782611e6b565b6119f18185611e76565b9350611a01818560208601611ff1565b611a0a8161212c565b840191505092915050565b6000611a22602383611e76565b9150611a2d8261213d565b604082019050919050565b6000611a45602283611e76565b9150611a508261218c565b604082019050919050565b6000611a68602683611e76565b9150611a73826121db565b604082019050919050565b6000611a8b602283611e76565b9150611a968261222a565b604082019050919050565b6000611aae601d83611e76565b9150611ab982612279565b602082019050919050565b6000611ad1602683611e76565b9150611adc826122a2565b604082019050919050565b6000611af4601983611e76565b9150611aff826122f1565b602082019050919050565b6000611b17602083611e76565b9150611b228261231a565b602082019050919050565b6000611b3a602183611e76565b9150611b4582612343565b604082019050919050565b6000611b5d601f83611e76565b9150611b6882612392565b602082019050919050565b6000611b80602583611e76565b9150611b8b826123bb565b604082019050919050565b6000611ba3602483611e76565b9150611bae8261240a565b604082019050919050565b6000611bc6602583611e76565b9150611bd182612459565b604082019050919050565b6000611be9601f83611e76565b9150611bf4826124a8565b602082019050919050565b611c0881611fda565b82525050565b611c1781611fe4565b82525050565b6000602082019050611c3260008301846119be565b92915050565b6000602082019050611c4d60008301846119cd565b92915050565b60006020820190508181036000830152611c6d81846119dc565b905092915050565b60006020820190508181036000830152611c8e81611a15565b9050919050565b60006020820190508181036000830152611cae81611a38565b9050919050565b60006020820190508181036000830152611cce81611a5b565b9050919050565b60006020820190508181036000830152611cee81611a7e565b9050919050565b60006020820190508181036000830152611d0e81611aa1565b9050919050565b60006020820190508181036000830152611d2e81611ac4565b9050919050565b60006020820190508181036000830152611d4e81611ae7565b9050919050565b60006020820190508181036000830152611d6e81611b0a565b9050919050565b60006020820190508181036000830152611d8e81611b2d565b9050919050565b60006020820190508181036000830152611dae81611b50565b9050919050565b60006020820190508181036000830152611dce81611b73565b9050919050565b60006020820190508181036000830152611dee81611b96565b9050919050565b60006020820190508181036000830152611e0e81611bb9565b9050919050565b60006020820190508181036000830152611e2e81611bdc565b9050919050565b6000602082019050611e4a6000830184611bff565b92915050565b6000602082019050611e656000830184611c0e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e9282611fda565b9150611e9d83611fda565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ed257611ed161209f565b5b828201905092915050565b6000611ee882611fda565b9150611ef383611fda565b925082611f0357611f026120ce565b5b828204905092915050565b6000611f1982611fda565b9150611f2483611fda565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f5d57611f5c61209f565b5b828202905092915050565b6000611f7382611fda565b9150611f7e83611fda565b925082821015611f9157611f9061209f565b5b828203905092915050565b6000611fa782611fba565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561200f578082015181840152602081019050611ff4565b8381111561201e576000848401525b50505050565b6000600282049050600182168061203c57607f821691505b602082108114156120505761204f6120fd565b5b50919050565b600061206182611fda565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156120945761209361209f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c7920686173206265656e207265616368656400600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6124da81611f9c565b81146124e557600080fd5b50565b6124f181611fda565b81146124fc57600080fd5b5056fea2646970667358221220c8f79700c5155fa53a4914e4da3ec9f2e7f74d2beea3d7ce7b608f0929d3870064736f6c63430008040033