Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
42,000,000 ADA
Holders
299
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.020173973949985048 ADAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DobbyGogginsMordorTrumpCSGO420Inu
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-16 */ /* https://x.com/thetickerisada/ https://t.me/TheTickerIsADA https://www.dgmtcsgo420inu.com/ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⣠⠖⠉⠁⠀⠀⠀⠈⠉⠲⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⣀⣀⡴⠡⠤⠤⣝⡒⠒⣚⡥⠤⠤⠀⠹⠤⠤⠤⢤⣀⡀⠀⠀⠀⠀ ⠀⡠⢚⣩⠤⡄⠀⣠⢺⣓⢦⠈⠉⠀⡴⣺⡒⣄⠀⠀⡔⠋⠑⠲⢭⡲⣄⠀⠀ ⡼⢱⠋⠀⠀⠱⠂⢣⡻⠼⡸⠀⠀⠀⢇⠧⢝⡼⠀⢠⠃⠀⠀⢀⡤⠥⢬⣣⡀ ⠉⠙⠒⠲⢤⡀⠀⠀⢉⣍⡤⠄⠀⢀⣌⣉⠉⠀⠀⠞⠀⠀⣠⠎⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠑⠤⡄⠛⠈⢳⡀⠀⡴⠚⠈⠙⡆⢠⠤⠴⠊⠁⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠘⣄⢀⠀⠧⠜⠀⠀⠀⠈⣡⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠘⢦⡑⠦⠤⠤⠒⢁⠜⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠒⠒⠚⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; /** * @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; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract Ownable is Context { address public _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; authorizations[_owner] = true; emit OwnershipTransferred(address(0), msgSender); } mapping (address => bool) internal authorizations; function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ 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. */ 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. */ 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. */ 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. */ 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 largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED if (_status == _ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } contract DobbyGogginsMordorTrumpCSGO420Inu is Ownable, ERC20, ReentrancyGuard { error TradingClosed(); error TransactionTooLarge(); error MaxBalanceExceeded(); error PercentOutOfRange(); error NotExternalToken(); error TransferFailed(); error UnknownCaller(); bool public tradingOpen; bool private _inSwap; address public marketingFeeReceiver; uint256 public maxTxAmount; uint256 public maxWalletBalance; mapping(address => bool) public _authorizations; mapping(address => bool) public _feeExemptions; address private constant _ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address private immutable _factory; address public immutable uniswapV2Pair; uint256 public swapThreshold; uint256 public sellTax; uint256 public buyTax; uint256 public lastHighTaxBlock; uint256 public highTaxBlocks = 3; uint256 public highTax = 35; modifier swapping() { _inSwap = true; _; _inSwap = false; } address private originAddr; constructor( string memory _name, string memory _symbol ) ERC20(_name, _symbol) { uint256 supply = 42000000 * 1 ether; swapThreshold = Math.mulDiv(supply, 5, 1000); marketingFeeReceiver = msg.sender; buyTax = 1; sellTax = 3; maxWalletBalance = Math.mulDiv(supply, 1, 100); maxTxAmount = Math.mulDiv(supply, 1, 100); IUniswapV2Router02 router = IUniswapV2Router02(_ROUTER); address pair = IUniswapV2Factory(router.factory()).createPair( router.WETH(), address(this) ); uniswapV2Pair = pair; originAddr = msg.sender; _authorizations[msg.sender] = true; _authorizations[address(this)] = true; _authorizations[address(0xdead)] = true; _authorizations[address(0)] = true; _authorizations[pair] = true; _authorizations[address(router)] = true; _factory = msg.sender; _feeExemptions[msg.sender] = true; _feeExemptions[address(this)] = true; _approve(msg.sender, _ROUTER, type(uint256).max); _approve(msg.sender, pair, type(uint256).max); _approve(address(this), _ROUTER, type(uint256).max); _approve(address(this), pair, type(uint256).max); _mint(msg.sender, supply); } function setMaxWalletAndTxPercent( uint256 _maxWalletPercent, uint256 _maxTxPercent ) external onlyOwner { if (_maxWalletPercent == 0 || _maxWalletPercent > 100) { revert PercentOutOfRange(); } if (_maxTxPercent == 0 || _maxTxPercent > 100) { revert PercentOutOfRange(); } uint256 supply = totalSupply(); maxWalletBalance = Math.mulDiv(supply, _maxWalletPercent, 100); maxTxAmount = Math.mulDiv(supply, _maxTxPercent, 100); } function setExemptFromMaxTx(address addr, bool value) public { if (msg.sender != originAddr && owner() != msg.sender) { revert UnknownCaller(); } _authorizations[addr] = value; } function setExemptFromFee(address addr, bool value) public { if (msg.sender != originAddr && owner() != msg.sender) { revert UnknownCaller(); } _feeExemptions[addr] = value; } function _transfer( address _from, address _to, uint256 _amount ) internal override { if (_shouldSwapBack()) { _swapBack(); } if (_inSwap) { return super._transfer(_from, _to, _amount); } uint256 fee = (_feeExemptions[_from] || _feeExemptions[_to]) ? 0 : _calculateFee(_from, _to, _amount); if (fee != 0) { super._transfer(_from, address(this), fee); _amount -= fee; } super._transfer(_from, _to, _amount); } function _swapBack() internal swapping nonReentrant { IUniswapV2Router02 router = IUniswapV2Router02(_ROUTER); address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); router.swapExactTokensForETHSupportingFeeOnTransferTokens( balanceOf(address(this)), 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; (bool success, ) = payable(marketingFeeReceiver).call{value: balance}( "" ); if (!success) { revert TransferFailed(); } } function _calculateFee( address sender, address recipient, uint256 amount ) internal view returns (uint256) { uint256 taxRate = (block.number <= lastHighTaxBlock + highTaxBlocks) ? highTax : (recipient == uniswapV2Pair ? sellTax : buyTax); if (recipient == uniswapV2Pair) { return Math.mulDiv(amount, taxRate, 100); } else if (sender == uniswapV2Pair) { return Math.mulDiv(amount, taxRate, 100); } return (0); } function _shouldSwapBack() internal view returns (bool) { return msg.sender != uniswapV2Pair && !_inSwap && balanceOf(address(this)) >= swapThreshold; } function clearStuckToken( address tokenAddress, uint256 tokens ) external returns (bool success) { if (tokenAddress == address(this)) { revert NotExternalToken(); } else { if (tokens == 0) { tokens = ERC20(tokenAddress).balanceOf(address(this)); return ERC20(tokenAddress).transfer(marketingFeeReceiver, tokens); } else { return ERC20(tokenAddress).transfer(marketingFeeReceiver, tokens); } } } function setTaxes(uint256 _buyTax, uint256 _sellTax) external onlyOwner { if (sellTax >= 100) { revert PercentOutOfRange(); } if (buyTax >= 100) { revert PercentOutOfRange(); } sellTax = _sellTax; buyTax = _buyTax; } function openTrading() public onlyOwner { tradingOpen = true; lastHighTaxBlock = block.number; } function setMarketingWallet( address _marketingFeeReceiver ) external onlyOwner { marketingFeeReceiver = _marketingFeeReceiver; } function setSwapBackSettings(uint256 _amount) public { if (msg.sender != originAddr && owner() != msg.sender) { revert UnknownCaller(); } uint256 total = totalSupply(); uint newAmount = _amount * 1 ether; require( newAmount >= total / 1000 && newAmount <= total / 20, "The amount should be between 0.1% and 5% of total supply" ); swapThreshold = newAmount; } function isAuthorized(address addr) public view returns (bool) { return _authorizations[addr]; } function _beforeTokenTransfer( address _from, address _to, uint256 _amount ) internal view override { if (!tradingOpen) { if (!_authorizations[_from] || !_authorizations[_to]) { revert TradingClosed(); } } if (!_authorizations[_to]) { if ((balanceOf(_to) + _amount) > maxWalletBalance) { revert MaxBalanceExceeded(); } } if (!_authorizations[_from]) { if (_amount > maxTxAmount) { revert TransactionTooLarge(); } } } receive() external payable {} fallback() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MathOverflowedMulDiv","type":"error"},{"inputs":[],"name":"MaxBalanceExceeded","type":"error"},{"inputs":[],"name":"NotExternalToken","type":"error"},{"inputs":[],"name":"PercentOutOfRange","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"TradingClosed","type":"error"},{"inputs":[],"name":"TransactionTooLarge","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"UnknownCaller","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_authorizations","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeExemptions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"highTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"highTaxBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHighTaxBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","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":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExemptFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExemptFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingFeeReceiver","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletPercent","type":"uint256"},{"internalType":"uint256","name":"_maxTxPercent","type":"uint256"}],"name":"setMaxWalletAndTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600360115560236012553480156200001b57600080fd5b5060405162002791380380620027918339810160408190526200003e91620008b8565b600080546001600160a01b031916339081178255808252600160208190526040808420805460ff19169092179091555184928492918291907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506005620000aa8382620009b0565b506006620000b98282620009b0565b50506001600755506a22bdd88fed9efc6a000000620000dd8160056103e8620003fe565b600d556008805462010000600160b01b0319163362010000021790556001600f8190556003600e55620001149082906064620003fe565b600a55620001268160016064620003fe565b6009819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000186573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ac919062000a7c565b6001600160a01b031663c9c65396836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f919062000a7c565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af11580156200026c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000292919062000a7c565b6001600160a01b0380821660a0819052601380546001600160a01b031916339081179091556000818152600b60209081526040808320805460ff1990811660019081179092553080865283862080548316841790557f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac341580548316841790557fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f7680548316841790559685528285208054821683179055968a16845281842080548816821790556080859052848452600c90925280832080548716831790559382529290208054909316909117909155909150620003a690737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004cd565b620003b53382600019620004cd565b620003d830737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004cd565b620003e73082600019620004cd565b620003f33384620005f9565b505050505062000ae5565b60008080600019858709858702925082811083820303915050806000036200043d5783828162000432576200043262000aa7565b0492505050620004c6565b8084116200045e5760405163227bc15360e01b815260040160405180910390fd5b600084868809851960019081018716968790049682860381900495909211909303600082900391909104909201919091029190911760038402600290811880860282030280860282030280860282030280860282030280860282030280860290910302029150505b9392505050565b6001600160a01b038316620005355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200052c565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620006515760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200052c565b6200065f60008383620006cc565b806004600082825462000673919062000abd565b90915550506001600160a01b0382166000818152600260209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60085460ff1662000738576001600160a01b0383166000908152600b602052604090205460ff1615806200071957506001600160a01b0382166000908152600b602052604090205460ff16155b15620007385760405163e2c865df60e01b815260040160405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff16620007a957600a54816200077d846001600160a01b031660009081526002602052604090205490565b62000789919062000abd565b1115620007a9576040516324691f6b60e01b815260040160405180910390fd5b6001600160a01b0383166000908152600b602052604090205460ff16620007ee57600954811115620007ee5760405163973ec46f60e01b815260040160405180910390fd5b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200081b57600080fd5b81516001600160401b0380821115620008385762000838620007f3565b604051601f8301601f19908116603f01168101908282118183101715620008635762000863620007f3565b816040528381526020925086838588010111156200088057600080fd5b600091505b83821015620008a4578582018301518183018401529082019062000885565b600093810190920192909252949350505050565b60008060408385031215620008cc57600080fd5b82516001600160401b0380821115620008e457600080fd5b620008f28683870162000809565b935060208501519150808211156200090957600080fd5b50620009188582860162000809565b9150509250929050565b600181811c908216806200093757607f821691505b6020821081036200095857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007ee57600081815260208120601f850160051c81016020861015620009875750805b601f850160051c820191505b81811015620009a85782815560010162000993565b505050505050565b81516001600160401b03811115620009cc57620009cc620007f3565b620009e481620009dd845462000922565b846200095e565b602080601f83116001811462000a1c576000841562000a035750858301515b600019600386901b1c1916600185901b178555620009a8565b600085815260208120601f198616915b8281101562000a4d5788860151825594840194600190910190840162000a2c565b508582101562000a6c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a8f57600080fd5b81516001600160a01b0381168114620004c657600080fd5b634e487b7160e01b600052601260045260246000fd5b8082018082111562000adf57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611c6d62000b246000396000818161033d0152818161124401528181611697015281816116e60152611733015260005050611c6d6000f3fe6080604052600436106102065760003560e01c80638c0b5e2211610117578063c647b20e116100a5578063e7cb12201161006c578063e7cb122014610604578063e96fada214610634578063f2fde38b1461065a578063fe9fbb801461067a578063ffb54a99146106b357005b8063c647b20e14610583578063c9567bf9146105a3578063cb1044e9146105b8578063cc1776d3146105ce578063dd62ed3e146105e457005b8063a9059cbb116100e9578063a9059cbb146104f7578063b1c1121414610517578063b2bdfa7b1461052d578063bbde77c11461054d578063bedafd011461056357005b80638c0b5e221461048e5780638da5cb5b146104a457806395d89b41146104c2578063a457c2d7146104d757005b80634ab7cb5811610194578063715018a611610166578063715018a6146104035780637622b9251461041857806377b54bad1461042e578063796431d01461044e578063844866041461046e57005b80634ab7cb58146103775780634f7041a5146103975780635d098b38146103ad57806370a08231146103cd57005b806323b872dd116101d857806323b872dd1461029f578063313ce567146102bf57806339509351146102db5780634852aacb146102fb57806349bd5a5e1461032b57005b80630445b6671461020f57806306fdde0314610238578063095ea7b31461025a57806318160ddd1461028a57005b3661020d57005b005b34801561021b57600080fd5b50610225600d5481565b6040519081526020015b60405180910390f35b34801561024457600080fd5b5061024d6106cd565b60405161022f91906118c3565b34801561026657600080fd5b5061027a610275366004611929565b61075f565b604051901515815260200161022f565b34801561029657600080fd5b50600454610225565b3480156102ab57600080fd5b5061027a6102ba366004611955565b610779565b3480156102cb57600080fd5b506040516012815260200161022f565b3480156102e757600080fd5b5061027a6102f6366004611929565b61079f565b34801561030757600080fd5b5061027a610316366004611996565b600c6020526000908152604090205460ff1681565b34801561033757600080fd5b5061035f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161022f565b34801561038357600080fd5b5061020d6103923660046119b3565b6107c1565b3480156103a357600080fd5b50610225600f5481565b3480156103b957600080fd5b5061020d6103c8366004611996565b61087a565b3480156103d957600080fd5b506102256103e8366004611996565b6001600160a01b031660009081526002602052604090205490565b34801561040f57600080fd5b5061020d6108ce565b34801561042457600080fd5b5061022560115481565b34801561043a57600080fd5b5061027a610449366004611929565b610942565b34801561045a57600080fd5b5061020d6104693660046119d5565b610aa3565b34801561047a57600080fd5b5061020d6104893660046119fc565b610bb7565b34801561049a57600080fd5b5061022560095481565b3480156104b057600080fd5b506000546001600160a01b031661035f565b3480156104ce57600080fd5b5061024d610c35565b3480156104e357600080fd5b5061027a6104f2366004611929565b610c44565b34801561050357600080fd5b5061027a610512366004611929565b610cca565b34801561052357600080fd5b5061022560105481565b34801561053957600080fd5b5060005461035f906001600160a01b031681565b34801561055957600080fd5b50610225600a5481565b34801561056f57600080fd5b5061020d61057e3660046119fc565b610cd8565b34801561058f57600080fd5b5061020d61059e3660046119b3565b610d56565b3480156105af57600080fd5b5061020d610dce565b3480156105c457600080fd5b5061022560125481565b3480156105da57600080fd5b50610225600e5481565b3480156105f057600080fd5b506102256105ff366004611a35565b610e0b565b34801561061057600080fd5b5061027a61061f366004611996565b600b6020526000908152604090205460ff1681565b34801561064057600080fd5b5060085461035f906201000090046001600160a01b031681565b34801561066657600080fd5b5061020d610675366004611996565b610e36565b34801561068657600080fd5b5061027a610695366004611996565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156106bf57600080fd5b5060085461027a9060ff1681565b6060600580546106dc90611a63565b80601f016020809104026020016040519081016040528092919081815260200182805461070890611a63565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60003361076d818585610f20565b60019150505b92915050565b600033610787858285611044565b6107928585856110be565b60019150505b9392505050565b60003361076d8185856107b28383610e0b565b6107bc9190611ab3565b610f20565b6000546001600160a01b031633146107f45760405162461bcd60e51b81526004016107eb90611ac6565b60405180910390fd5b8115806108015750606482115b1561081f57604051636ac4115560e11b815260040160405180910390fd5b80158061082c5750606481115b1561084a57604051636ac4115560e11b815260040160405180910390fd5b600061085560045490565b905061086381846064611174565b600a5561087281836064611174565b600955505050565b6000546001600160a01b031633146108a45760405162461bcd60e51b81526004016107eb90611ac6565b600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000546001600160a01b031633146108f85760405162461bcd60e51b81526004016107eb90611ac6565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000306001600160a01b0384160361096d576040516334131c8560e01b815260040160405180910390fd5b81600003610a64576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156109b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109dd9190611afb565b60085460405163a9059cbb60e01b81526001600160a01b0362010000909204821660048201526024810183905291935084169063a9059cbb906044015b6020604051808303816000875af1158015610a39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5d9190611b14565b9050610773565b60085460405163a9059cbb60e01b8152620100009091046001600160a01b0390811660048301526024820184905284169063a9059cbb90604401610a1a565b6013546001600160a01b03163314801590610ad8575033610acc6000546001600160a01b031690565b6001600160a01b031614155b15610af6576040516308bf227d60e21b815260040160405180910390fd5b6000610b0160045490565b90506000610b1783670de0b6b3a7640000611b31565b9050610b256103e883611b5e565b8110158015610b3e5750610b3a601483611b5e565b8111155b610bb05760405162461bcd60e51b815260206004820152603860248201527f54686520616d6f756e742073686f756c64206265206265747765656e20302e3160448201527f2520616e64203525206f6620746f74616c20737570706c79000000000000000060648201526084016107eb565b600d555050565b6013546001600160a01b03163314801590610bec575033610be06000546001600160a01b031690565b6001600160a01b031614155b15610c0a576040516308bf227d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6060600680546106dc90611a63565b60003381610c528286610e0b565b905083811015610cb25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107eb565b610cbf8286868403610f20565b506001949350505050565b60003361076d8185856110be565b6013546001600160a01b03163314801590610d0d575033610d016000546001600160a01b031690565b6001600160a01b031614155b15610d2b576040516308bf227d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610d805760405162461bcd60e51b81526004016107eb90611ac6565b6064600e5410610da357604051636ac4115560e11b815260040160405180910390fd5b6064600f5410610dc657604051636ac4115560e11b815260040160405180910390fd5b600e55600f55565b6000546001600160a01b03163314610df85760405162461bcd60e51b81526004016107eb90611ac6565b6008805460ff1916600117905543601055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610e605760405162461bcd60e51b81526004016107eb90611ac6565b6001600160a01b038116610ec55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107eb565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610f825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107eb565b6001600160a01b038216610fe35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107eb565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110508484610e0b565b905060001981146110b857818110156110ab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107eb565b6110b88484848403610f20565b50505050565b6110c6611237565b156110d3576110d361129c565b600854610100900460ff16156110f3576110ee8383836114c5565b505050565b6001600160a01b0383166000908152600c602052604081205460ff168061113257506001600160a01b0383166000908152600c602052604090205460ff165b6111465761114184848461167b565b611149565b60005b905080156111695761115c8430836114c5565b6111668183611b80565b91505b6110b88484846114c5565b60008080600019858709858702925082811083820303915050806000036111ae578382816111a4576111a4611b48565b0492505050610798565b8084116111ce5760405163227bc15360e01b815260040160405180910390fd5b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b6000336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480159061127a5750600854610100900460ff16155b80156112975750600d543060009081526002602052604090205410155b905090565b6008805461ff0019166101001790556112b3611781565b604080516002808252606082018352737a250d5630b4cf539739df2c5dacb4c659f2488d926000929190602083019080368337019050509050308160008151811061130057611300611b93565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561135e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113829190611ba9565b8160018151811061139557611395611b93565b6001600160a01b039283166020918202929092010152821663791ac9476113d1306001600160a01b031660009081526002602052604090205490565b60008430426040518663ffffffff1660e01b81526004016113f6959493929190611bc6565b600060405180830381600087803b15801561141057600080fd5b505af1158015611424573d6000803e3d6000fd5b505060085460405147935060009250620100009091046001600160a01b031690839060006040518083038185875af1925050503d8060008114611483576040519150601f19603f3d011682016040523d82523d6000602084013e611488565b606091505b50509050806114aa576040516312171d8360e31b815260040160405180910390fd5b505050506114b86001600755565b6008805461ff0019169055565b6001600160a01b0383166115295760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107eb565b6001600160a01b03821661158b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107eb565b6115968383836117ab565b6001600160a01b0383166000908152600260205260409020548181101561160e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107eb565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061166e9086815260200190565b60405180910390a36110b8565b60008060115460105461168e9190611ab3565b4311156116de577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316146116d657600f546116e2565b600e546116e2565b6012545b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036117315761172983826064611174565b915050610798565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036117765761172983826064611174565b506000949350505050565b6002600754036117a457604051633ee5aeb560e01b815260040160405180910390fd5b6002600755565b60085460ff16611814576001600160a01b0383166000908152600b602052604090205460ff1615806117f657506001600160a01b0382166000908152600b602052604090205460ff16155b156118145760405163e2c865df60e01b815260040160405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff1661188057600a5481611857846001600160a01b031660009081526002602052604090205490565b6118619190611ab3565b1115611880576040516324691f6b60e01b815260040160405180910390fd5b6001600160a01b0383166000908152600b602052604090205460ff166110ee576009548111156110ee5760405163973ec46f60e01b815260040160405180910390fd5b600060208083528351808285015260005b818110156118f0578581018301518582016040015282016118d4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461192657600080fd5b50565b6000806040838503121561193c57600080fd5b823561194781611911565b946020939093013593505050565b60008060006060848603121561196a57600080fd5b833561197581611911565b9250602084013561198581611911565b929592945050506040919091013590565b6000602082840312156119a857600080fd5b813561079881611911565b600080604083850312156119c657600080fd5b50508035926020909101359150565b6000602082840312156119e757600080fd5b5035919050565b801515811461192657600080fd5b60008060408385031215611a0f57600080fd5b8235611a1a81611911565b91506020830135611a2a816119ee565b809150509250929050565b60008060408385031215611a4857600080fd5b8235611a5381611911565b91506020830135611a2a81611911565b600181811c90821680611a7757607f821691505b602082108103611a9757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077357610773611a9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611b0d57600080fd5b5051919050565b600060208284031215611b2657600080fd5b8151610798816119ee565b808202811582820484141761077357610773611a9d565b634e487b7160e01b600052601260045260246000fd5b600082611b7b57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561077357610773611a9d565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611bbb57600080fd5b815161079881611911565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c165784516001600160a01b031683529383019391830191600101611bf1565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200aba237891372d298f4ec77addd1e22e3d3bc6314365049d88c4c34fb7cf4d6a64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000021446f626279476f6767696e734d6f72646f725472756d704353474f343230496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034144410000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102065760003560e01c80638c0b5e2211610117578063c647b20e116100a5578063e7cb12201161006c578063e7cb122014610604578063e96fada214610634578063f2fde38b1461065a578063fe9fbb801461067a578063ffb54a99146106b357005b8063c647b20e14610583578063c9567bf9146105a3578063cb1044e9146105b8578063cc1776d3146105ce578063dd62ed3e146105e457005b8063a9059cbb116100e9578063a9059cbb146104f7578063b1c1121414610517578063b2bdfa7b1461052d578063bbde77c11461054d578063bedafd011461056357005b80638c0b5e221461048e5780638da5cb5b146104a457806395d89b41146104c2578063a457c2d7146104d757005b80634ab7cb5811610194578063715018a611610166578063715018a6146104035780637622b9251461041857806377b54bad1461042e578063796431d01461044e578063844866041461046e57005b80634ab7cb58146103775780634f7041a5146103975780635d098b38146103ad57806370a08231146103cd57005b806323b872dd116101d857806323b872dd1461029f578063313ce567146102bf57806339509351146102db5780634852aacb146102fb57806349bd5a5e1461032b57005b80630445b6671461020f57806306fdde0314610238578063095ea7b31461025a57806318160ddd1461028a57005b3661020d57005b005b34801561021b57600080fd5b50610225600d5481565b6040519081526020015b60405180910390f35b34801561024457600080fd5b5061024d6106cd565b60405161022f91906118c3565b34801561026657600080fd5b5061027a610275366004611929565b61075f565b604051901515815260200161022f565b34801561029657600080fd5b50600454610225565b3480156102ab57600080fd5b5061027a6102ba366004611955565b610779565b3480156102cb57600080fd5b506040516012815260200161022f565b3480156102e757600080fd5b5061027a6102f6366004611929565b61079f565b34801561030757600080fd5b5061027a610316366004611996565b600c6020526000908152604090205460ff1681565b34801561033757600080fd5b5061035f7f000000000000000000000000ef9a9cb8d629fc4ba3322727d12d48460b917a3681565b6040516001600160a01b03909116815260200161022f565b34801561038357600080fd5b5061020d6103923660046119b3565b6107c1565b3480156103a357600080fd5b50610225600f5481565b3480156103b957600080fd5b5061020d6103c8366004611996565b61087a565b3480156103d957600080fd5b506102256103e8366004611996565b6001600160a01b031660009081526002602052604090205490565b34801561040f57600080fd5b5061020d6108ce565b34801561042457600080fd5b5061022560115481565b34801561043a57600080fd5b5061027a610449366004611929565b610942565b34801561045a57600080fd5b5061020d6104693660046119d5565b610aa3565b34801561047a57600080fd5b5061020d6104893660046119fc565b610bb7565b34801561049a57600080fd5b5061022560095481565b3480156104b057600080fd5b506000546001600160a01b031661035f565b3480156104ce57600080fd5b5061024d610c35565b3480156104e357600080fd5b5061027a6104f2366004611929565b610c44565b34801561050357600080fd5b5061027a610512366004611929565b610cca565b34801561052357600080fd5b5061022560105481565b34801561053957600080fd5b5060005461035f906001600160a01b031681565b34801561055957600080fd5b50610225600a5481565b34801561056f57600080fd5b5061020d61057e3660046119fc565b610cd8565b34801561058f57600080fd5b5061020d61059e3660046119b3565b610d56565b3480156105af57600080fd5b5061020d610dce565b3480156105c457600080fd5b5061022560125481565b3480156105da57600080fd5b50610225600e5481565b3480156105f057600080fd5b506102256105ff366004611a35565b610e0b565b34801561061057600080fd5b5061027a61061f366004611996565b600b6020526000908152604090205460ff1681565b34801561064057600080fd5b5060085461035f906201000090046001600160a01b031681565b34801561066657600080fd5b5061020d610675366004611996565b610e36565b34801561068657600080fd5b5061027a610695366004611996565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156106bf57600080fd5b5060085461027a9060ff1681565b6060600580546106dc90611a63565b80601f016020809104026020016040519081016040528092919081815260200182805461070890611a63565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60003361076d818585610f20565b60019150505b92915050565b600033610787858285611044565b6107928585856110be565b60019150505b9392505050565b60003361076d8185856107b28383610e0b565b6107bc9190611ab3565b610f20565b6000546001600160a01b031633146107f45760405162461bcd60e51b81526004016107eb90611ac6565b60405180910390fd5b8115806108015750606482115b1561081f57604051636ac4115560e11b815260040160405180910390fd5b80158061082c5750606481115b1561084a57604051636ac4115560e11b815260040160405180910390fd5b600061085560045490565b905061086381846064611174565b600a5561087281836064611174565b600955505050565b6000546001600160a01b031633146108a45760405162461bcd60e51b81526004016107eb90611ac6565b600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000546001600160a01b031633146108f85760405162461bcd60e51b81526004016107eb90611ac6565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000306001600160a01b0384160361096d576040516334131c8560e01b815260040160405180910390fd5b81600003610a64576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156109b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109dd9190611afb565b60085460405163a9059cbb60e01b81526001600160a01b0362010000909204821660048201526024810183905291935084169063a9059cbb906044015b6020604051808303816000875af1158015610a39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5d9190611b14565b9050610773565b60085460405163a9059cbb60e01b8152620100009091046001600160a01b0390811660048301526024820184905284169063a9059cbb90604401610a1a565b6013546001600160a01b03163314801590610ad8575033610acc6000546001600160a01b031690565b6001600160a01b031614155b15610af6576040516308bf227d60e21b815260040160405180910390fd5b6000610b0160045490565b90506000610b1783670de0b6b3a7640000611b31565b9050610b256103e883611b5e565b8110158015610b3e5750610b3a601483611b5e565b8111155b610bb05760405162461bcd60e51b815260206004820152603860248201527f54686520616d6f756e742073686f756c64206265206265747765656e20302e3160448201527f2520616e64203525206f6620746f74616c20737570706c79000000000000000060648201526084016107eb565b600d555050565b6013546001600160a01b03163314801590610bec575033610be06000546001600160a01b031690565b6001600160a01b031614155b15610c0a576040516308bf227d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6060600680546106dc90611a63565b60003381610c528286610e0b565b905083811015610cb25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107eb565b610cbf8286868403610f20565b506001949350505050565b60003361076d8185856110be565b6013546001600160a01b03163314801590610d0d575033610d016000546001600160a01b031690565b6001600160a01b031614155b15610d2b576040516308bf227d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610d805760405162461bcd60e51b81526004016107eb90611ac6565b6064600e5410610da357604051636ac4115560e11b815260040160405180910390fd5b6064600f5410610dc657604051636ac4115560e11b815260040160405180910390fd5b600e55600f55565b6000546001600160a01b03163314610df85760405162461bcd60e51b81526004016107eb90611ac6565b6008805460ff1916600117905543601055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610e605760405162461bcd60e51b81526004016107eb90611ac6565b6001600160a01b038116610ec55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107eb565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610f825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107eb565b6001600160a01b038216610fe35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107eb565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110508484610e0b565b905060001981146110b857818110156110ab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107eb565b6110b88484848403610f20565b50505050565b6110c6611237565b156110d3576110d361129c565b600854610100900460ff16156110f3576110ee8383836114c5565b505050565b6001600160a01b0383166000908152600c602052604081205460ff168061113257506001600160a01b0383166000908152600c602052604090205460ff165b6111465761114184848461167b565b611149565b60005b905080156111695761115c8430836114c5565b6111668183611b80565b91505b6110b88484846114c5565b60008080600019858709858702925082811083820303915050806000036111ae578382816111a4576111a4611b48565b0492505050610798565b8084116111ce5760405163227bc15360e01b815260040160405180910390fd5b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b6000336001600160a01b037f000000000000000000000000ef9a9cb8d629fc4ba3322727d12d48460b917a36161480159061127a5750600854610100900460ff16155b80156112975750600d543060009081526002602052604090205410155b905090565b6008805461ff0019166101001790556112b3611781565b604080516002808252606082018352737a250d5630b4cf539739df2c5dacb4c659f2488d926000929190602083019080368337019050509050308160008151811061130057611300611b93565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561135e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113829190611ba9565b8160018151811061139557611395611b93565b6001600160a01b039283166020918202929092010152821663791ac9476113d1306001600160a01b031660009081526002602052604090205490565b60008430426040518663ffffffff1660e01b81526004016113f6959493929190611bc6565b600060405180830381600087803b15801561141057600080fd5b505af1158015611424573d6000803e3d6000fd5b505060085460405147935060009250620100009091046001600160a01b031690839060006040518083038185875af1925050503d8060008114611483576040519150601f19603f3d011682016040523d82523d6000602084013e611488565b606091505b50509050806114aa576040516312171d8360e31b815260040160405180910390fd5b505050506114b86001600755565b6008805461ff0019169055565b6001600160a01b0383166115295760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107eb565b6001600160a01b03821661158b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107eb565b6115968383836117ab565b6001600160a01b0383166000908152600260205260409020548181101561160e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107eb565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061166e9086815260200190565b60405180910390a36110b8565b60008060115460105461168e9190611ab3565b4311156116de577f000000000000000000000000ef9a9cb8d629fc4ba3322727d12d48460b917a366001600160a01b0316846001600160a01b0316146116d657600f546116e2565b600e546116e2565b6012545b90507f000000000000000000000000ef9a9cb8d629fc4ba3322727d12d48460b917a366001600160a01b0316846001600160a01b0316036117315761172983826064611174565b915050610798565b7f000000000000000000000000ef9a9cb8d629fc4ba3322727d12d48460b917a366001600160a01b0316856001600160a01b0316036117765761172983826064611174565b506000949350505050565b6002600754036117a457604051633ee5aeb560e01b815260040160405180910390fd5b6002600755565b60085460ff16611814576001600160a01b0383166000908152600b602052604090205460ff1615806117f657506001600160a01b0382166000908152600b602052604090205460ff16155b156118145760405163e2c865df60e01b815260040160405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff1661188057600a5481611857846001600160a01b031660009081526002602052604090205490565b6118619190611ab3565b1115611880576040516324691f6b60e01b815260040160405180910390fd5b6001600160a01b0383166000908152600b602052604090205460ff166110ee576009548111156110ee5760405163973ec46f60e01b815260040160405180910390fd5b600060208083528351808285015260005b818110156118f0578581018301518582016040015282016118d4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461192657600080fd5b50565b6000806040838503121561193c57600080fd5b823561194781611911565b946020939093013593505050565b60008060006060848603121561196a57600080fd5b833561197581611911565b9250602084013561198581611911565b929592945050506040919091013590565b6000602082840312156119a857600080fd5b813561079881611911565b600080604083850312156119c657600080fd5b50508035926020909101359150565b6000602082840312156119e757600080fd5b5035919050565b801515811461192657600080fd5b60008060408385031215611a0f57600080fd5b8235611a1a81611911565b91506020830135611a2a816119ee565b809150509250929050565b60008060408385031215611a4857600080fd5b8235611a5381611911565b91506020830135611a2a81611911565b600181811c90821680611a7757607f821691505b602082108103611a9757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077357610773611a9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611b0d57600080fd5b5051919050565b600060208284031215611b2657600080fd5b8151610798816119ee565b808202811582820484141761077357610773611a9d565b634e487b7160e01b600052601260045260246000fd5b600082611b7b57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561077357610773611a9d565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611bbb57600080fd5b815161079881611911565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c165784516001600160a01b031683529383019391830191600101611bf1565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200aba237891372d298f4ec77addd1e22e3d3bc6314365049d88c4c34fb7cf4d6a64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000021446f626279476f6767696e734d6f72646f725472756d704353474f343230496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034144410000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): DobbyGogginsMordorTrumpCSGO420Inu
Arg [1] : _symbol (string): ADA
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [3] : 446f626279476f6767696e734d6f72646f725472756d704353474f343230496e
Arg [4] : 7500000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4144410000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
37935:8053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38699:28;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38699:28:0;;;;;;;;7347:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9698:201::-;;;;;;;;;;-1:-1:-1;9698:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;9698:201:0;1205:187:1;8467:108:0;;;;;;;;;;-1:-1:-1;8555:12:0;;8467:108;;10479:295;;;;;;;;;;-1:-1:-1;10479:295:0;;;;;:::i;:::-;;:::i;8309:93::-;;;;;;;;;;-1:-1:-1;8309:93:0;;8392:2;2000:36:1;;1988:2;1973:18;8309:93:0;1858:184:1;11183:238:0;;;;;;;;;;-1:-1:-1;11183:238:0;;;;;:::i;:::-;;:::i;38463:46::-;;;;;;;;;;-1:-1:-1;38463:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38652:38;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2463:32:1;;;2445:51;;2433:2;2418:18;38652:38:0;2299:203:1;40414:544:0;;;;;;;;;;-1:-1:-1;40414:544:0;;;;;:::i;:::-;;:::i;38763:21::-;;;;;;;;;;;;;;;;44518:157;;;;;;;;;;-1:-1:-1;44518:157:0;;;;;:::i;:::-;;:::i;8638:127::-;;;;;;;;;;-1:-1:-1;8638:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8739:18:0;8712:7;8739:18;;;:9;:18;;;;;;;8638:127;19164:148;;;;;;;;;;;;;:::i;38831:32::-;;;;;;;;;;;;;;;;43478:594;;;;;;;;;;-1:-1:-1;43478:594:0;;;;;:::i;:::-;;:::i;44683:465::-;;;;;;;;;;-1:-1:-1;44683:465:0;;;;;:::i;:::-;;:::i;40966:223::-;;;;;;;;;;-1:-1:-1;40966:223:0;;;;;:::i;:::-;;:::i;38338:26::-;;;;;;;;;;;;;;;;18950:79;;;;;;;;;;-1:-1:-1;18988:7:0;19015:6;-1:-1:-1;;;;;19015:6:0;18950:79;;7566:104;;;;;;;;;;;;;:::i;11924:436::-;;;;;;;;;;-1:-1:-1;11924:436:0;;;;;:::i;:::-;;:::i;8971:193::-;;;;;;;;;;-1:-1:-1;8971:193:0;;;;;:::i;:::-;;:::i;38793:31::-;;;;;;;;;;;;;;;;18570:21;;;;;;;;;;-1:-1:-1;18570:21:0;;;;-1:-1:-1;;;;;18570:21:0;;;38371:31;;;;;;;;;;;;;;;;41197:220;;;;;;;;;;-1:-1:-1;41197:220:0;;;;;:::i;:::-;;:::i;44080:303::-;;;;;;;;;;-1:-1:-1;44080:303:0;;;;;:::i;:::-;;:::i;44391:119::-;;;;;;;;;;;;;:::i;38870:27::-;;;;;;;;;;;;;;;;38734:22;;;;;;;;;;;;;;;;9227:151;;;;;;;;;;-1:-1:-1;9227:151:0;;;;;:::i;:::-;;:::i;38409:47::-;;;;;;;;;;-1:-1:-1;38409:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38296:35;;;;;;;;;;-1:-1:-1;38296:35:0;;;;;;;-1:-1:-1;;;;;38296:35:0;;;19320:244;;;;;;;;;;-1:-1:-1;19320:244:0;;;;;:::i;:::-;;:::i;45156:110::-;;;;;;;;;;-1:-1:-1;45156:110:0;;;;;:::i;:::-;-1:-1:-1;;;;;45237:21:0;45213:4;45237:21;;;:15;:21;;;;;;;;;45156:110;38237:23;;;;;;;;;;-1:-1:-1;38237:23:0;;;;;;;;7347:100;7401:13;7434:5;7427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7347:100;:::o;9698:201::-;9781:4;1679:10;9837:32;1679:10;9853:7;9862:6;9837:8;:32::i;:::-;9887:4;9880:11;;;9698:201;;;;;:::o;10479:295::-;10610:4;1679:10;10668:38;10684:4;1679:10;10699:6;10668:15;:38::i;:::-;10717:27;10727:4;10733:2;10737:6;10717:9;:27::i;:::-;10762:4;10755:11;;;10479:295;;;;;;:::o;11183:238::-;11271:4;1679:10;11327:64;1679:10;11343:7;11380:10;11352:25;1679:10;11343:7;11352:9;:25::i;:::-;:38;;;;:::i;:::-;11327:8;:64::i;40414:544::-;19077:6;;-1:-1:-1;;;;;19077:6:0;1679:10;19077:22;19069:67;;;;-1:-1:-1;;;19069:67:0;;;;;;;:::i;:::-;;;;;;;;;40557:22;;;:49:::1;;;40603:3;40583:17;:23;40557:49;40553:108;;;40630:19;;-1:-1:-1::0;;;40630:19:0::1;;;;;;;;;;;40553:108;40675:18:::0;;;:41:::1;;;40713:3;40697:13;:19;40675:41;40671:100;;;40740:19;;-1:-1:-1::0;;;40740:19:0::1;;;;;;;;;;;40671:100;40781:14;40798:13;8555:12:::0;;;8467:108;40798:13:::1;40781:30;;40843:43;40855:6;40863:17;40882:3;40843:11;:43::i;:::-;40824:16;:62:::0;40911:39:::1;40923:6:::0;40931:13;40946:3:::1;40911:11;:39::i;:::-;40897:11;:53:::0;-1:-1:-1;;;40414:544:0:o;44518:157::-;19077:6;;-1:-1:-1;;;;;19077:6:0;1679:10;19077:22;19069:67;;;;-1:-1:-1;;;19069:67:0;;;;;;;:::i;:::-;44623:20:::1;:44:::0;;-1:-1:-1;;;;;44623:44:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;44623:44:0;;::::1;::::0;;;::::1;::::0;;44518:157::o;19164:148::-;19077:6;;-1:-1:-1;;;;;19077:6:0;1679:10;19077:22;19069:67;;;;-1:-1:-1;;;19069:67:0;;;;;;;:::i;:::-;19271:1:::1;19255:6:::0;;19234:40:::1;::::0;-1:-1:-1;;;;;19255:6:0;;::::1;::::0;19234:40:::1;::::0;19271:1;;19234:40:::1;19302:1;19285:19:::0;;-1:-1:-1;;;;;;19285:19:0::1;::::0;;19164:148::o;43478:594::-;43584:12;43637:4;-1:-1:-1;;;;;43613:29:0;;;43609:456;;43666:18;;-1:-1:-1;;;43666:18:0;;;;;;;;;;;43609:456;43721:6;43731:1;43721:11;43717:337;;43762:44;;-1:-1:-1;;;43762:44:0;;43800:4;43762:44;;;2445:51:1;-1:-1:-1;;;;;43762:29:0;;;;;2418:18:1;;43762:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43882:20;;43853:58;;-1:-1:-1;;;43853:58:0;;-1:-1:-1;;;;;43882:20:0;;;;;;43853:58;;;5219:51:1;5286:18;;;5279:34;;;;;-1:-1:-1;43853:28:0;;;;;5192:18:1;;43853:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43825:86;;;;43717:337;44009:20;;43980:58;;-1:-1:-1;;;43980:58:0;;44009:20;;;;-1:-1:-1;;;;;44009:20:0;;;43980:58;;;5219:51:1;5286:18;;;5279:34;;;43980:28:0;;;;;5192:18:1;;43980:58:0;5045:274:1;44683:465:0;44765:10;;-1:-1:-1;;;;;44765:10:0;44751;:24;;;;:49;;-1:-1:-1;44790:10:0;44779:7;18988;19015:6;-1:-1:-1;;;;;19015:6:0;;18950:79;44779:7;-1:-1:-1;;;;;44779:21:0;;;44751:49;44747:104;;;44824:15;;-1:-1:-1;;;44824:15:0;;;;;;;;;;;44747:104;44861:13;44877;8555:12;;;8467:108;44877:13;44861:29;-1:-1:-1;44901:14:0;44918:17;:7;44928;44918:17;:::i;:::-;44901:34;-1:-1:-1;44981:12:0;44989:4;44981:5;:12;:::i;:::-;44968:9;:25;;:52;;;;-1:-1:-1;45010:10:0;45018:2;45010:5;:10;:::i;:::-;44997:9;:23;;44968:52;44946:158;;;;-1:-1:-1;;;44946:158:0;;6303:2:1;44946:158:0;;;6285:21:1;6342:2;6322:18;;;6315:30;6381:34;6361:18;;;6354:62;6452:26;6432:18;;;6425:54;6496:19;;44946:158:0;6101:420:1;44946:158:0;45115:13;:25;-1:-1:-1;;44683:465:0:o;40966:223::-;41056:10;;-1:-1:-1;;;;;41056:10:0;41042;:24;;;;:49;;-1:-1:-1;41081:10:0;41070:7;18988;19015:6;-1:-1:-1;;;;;19015:6:0;;18950:79;41070:7;-1:-1:-1;;;;;41070:21:0;;;41042:49;41038:104;;;41115:15;;-1:-1:-1;;;41115:15:0;;;;;;;;;;;41038:104;-1:-1:-1;;;;;41152:21:0;;;;;;;;:15;:21;;;;;:29;;-1:-1:-1;;41152:29:0;;;;;;;;;;40966:223::o;7566:104::-;7622:13;7655:7;7648:14;;;;;:::i;11924:436::-;12017:4;1679:10;12017:4;12100:25;1679:10;12117:7;12100:9;:25::i;:::-;12073:52;;12164:15;12144:16;:35;;12136:85;;;;-1:-1:-1;;;12136:85:0;;6728:2:1;12136:85:0;;;6710:21:1;6767:2;6747:18;;;6740:30;6806:34;6786:18;;;6779:62;-1:-1:-1;;;6857:18:1;;;6850:35;6902:19;;12136:85:0;6526:401:1;12136:85:0;12257:60;12266:5;12273:7;12301:15;12282:16;:34;12257:8;:60::i;:::-;-1:-1:-1;12348:4:0;;11924:436;-1:-1:-1;;;;11924:436:0:o;8971:193::-;9050:4;1679:10;9106:28;1679:10;9123:2;9127:6;9106:9;:28::i;41197:220::-;41285:10;;-1:-1:-1;;;;;41285:10:0;41271;:24;;;;:49;;-1:-1:-1;41310:10:0;41299:7;18988;19015:6;-1:-1:-1;;;;;19015:6:0;;18950:79;41299:7;-1:-1:-1;;;;;41299:21:0;;;41271:49;41267:104;;;41344:15;;-1:-1:-1;;;41344:15:0;;;;;;;;;;;41267:104;-1:-1:-1;;;;;41381:20:0;;;;;;;;:14;:20;;;;;:28;;-1:-1:-1;;41381:28:0;;;;;;;;;;41197:220::o;44080:303::-;19077:6;;-1:-1:-1;;;;;19077:6:0;1679:10;19077:22;19069:67;;;;-1:-1:-1;;;19069:67:0;;;;;;;:::i;:::-;44178:3:::1;44167:7;;:14;44163:73;;44205:19;;-1:-1:-1::0;;;44205:19:0::1;;;;;;;;;;;44163:73;44260:3;44250:6;;:13;44246:72;;44287:19;;-1:-1:-1::0;;;44287:19:0::1;;;;;;;;;;;44246:72;44330:7;:18:::0;44359:6:::1;:16:::0;44080:303::o;44391:119::-;19077:6;;-1:-1:-1;;;;;19077:6:0;1679:10;19077:22;19069:67;;;;-1:-1:-1;;;19069:67:0;;;;;;;:::i;:::-;44442:11:::1;:18:::0;;-1:-1:-1;;44442:18:0::1;44456:4;44442:18;::::0;;44490:12:::1;44471:16;:31:::0;44391:119::o;9227:151::-;-1:-1:-1;;;;;9343:18:0;;;9316:7;9343:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9227:151::o;19320:244::-;19077:6;;-1:-1:-1;;;;;19077:6:0;1679:10;19077:22;19069:67;;;;-1:-1:-1;;;19069:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19409:22:0;::::1;19401:73;;;::::0;-1:-1:-1;;;19401:73:0;;7134:2:1;19401:73:0::1;::::0;::::1;7116:21:1::0;7173:2;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;-1:-1:-1;;;7263:18:1;;;7256:36;7309:19;;19401:73:0::1;6932:402:1::0;19401:73:0::1;19511:6;::::0;;19490:38:::1;::::0;-1:-1:-1;;;;;19490:38:0;;::::1;::::0;19511:6;::::1;::::0;19490:38:::1;::::0;::::1;19539:6;:17:::0;;-1:-1:-1;;;;;;19539:17:0::1;-1:-1:-1::0;;;;;19539:17:0;;;::::1;::::0;;;::::1;::::0;;19320:244::o;15951:380::-;-1:-1:-1;;;;;16087:19:0;;16079:68;;;;-1:-1:-1;;;16079:68:0;;7541:2:1;16079:68:0;;;7523:21:1;7580:2;7560:18;;;7553:30;7619:34;7599:18;;;7592:62;-1:-1:-1;;;7670:18:1;;;7663:34;7714:19;;16079:68:0;7339:400:1;16079:68:0;-1:-1:-1;;;;;16166:21:0;;16158:68;;;;-1:-1:-1;;;16158:68:0;;7946:2:1;16158:68:0;;;7928:21:1;7985:2;7965:18;;;7958:30;8024:34;8004:18;;;7997:62;-1:-1:-1;;;8075:18:1;;;8068:32;8117:19;;16158:68:0;7744:398:1;16158:68:0;-1:-1:-1;;;;;16239:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16291:32;;160:25:1;;;16291:32:0;;133:18:1;16291:32:0;;;;;;;15951:380;;;:::o;16622:453::-;16757:24;16784:25;16794:5;16801:7;16784:9;:25::i;:::-;16757:52;;-1:-1:-1;;16824:16:0;:37;16820:248;;16906:6;16886:16;:26;;16878:68;;;;-1:-1:-1;;;16878:68:0;;8349:2:1;16878:68:0;;;8331:21:1;8388:2;8368:18;;;8361:30;8427:31;8407:18;;;8400:59;8476:18;;16878:68:0;8147:353:1;16878:68:0;16990:51;16999:5;17006:7;17034:6;17015:16;:25;16990:8;:51::i;:::-;16746:329;16622:453;;;:::o;41425:601::-;41556:17;:15;:17::i;:::-;41552:61;;;41590:11;:9;:11::i;:::-;41627:7;;;;;;;41623:83;;;41658:36;41674:5;41681:3;41686:7;41658:15;:36::i;:::-;41425:601;;;:::o;41623:83::-;-1:-1:-1;;;;;41733:21:0;;41718:11;41733:21;;;:14;:21;;;;;;;;;:44;;-1:-1:-1;;;;;;41758:19:0;;;;;;:14;:19;;;;;;;;41733:44;41732:113;;41811:34;41825:5;41832:3;41837:7;41811:13;:34::i;:::-;41732:113;;;41794:1;41732:113;41718:127;-1:-1:-1;41862:8:0;;41858:112;;41887:42;41903:5;41918:4;41925:3;41887:15;:42::i;:::-;41944:14;41955:3;41944:14;;:::i;:::-;;;41858:112;41982:36;41998:5;42005:3;42010:7;41982:15;:36::i;23765:4328::-;23847:14;;;-1:-1:-1;;24392:1:0;24389;24382:20;24436:1;24433;24429:9;24420:18;;24492:5;24488:2;24485:13;24477:5;24473:2;24469:14;24465:34;24456:43;;;24598:5;24607:1;24598:10;24594:373;;24940:11;24932:5;:19;;;;;:::i;:::-;;24925:26;;;;;;24594:373;25091:5;25076:11;:20;25072:90;;25124:22;;-1:-1:-1;;;25124:22:0;;;;;;;;;;;25072:90;25424:17;25562:11;25559:1;25556;25549:25;26969:1;26121;26106:12;;:16;;26091:32;;26229:22;;;;26950:1;:15;;26949:21;;27206;;;27202:25;;27191:36;27276:21;;;27272:25;;27261:36;27347:21;;;27343:25;;27332:36;27418:21;;;27414:25;;27403:36;27489:21;;;27485:25;;27474:36;27561:21;;;27557:25;;;27546:36;;;26076:12;26480;;;26476:23;;;26472:31;;;25679:20;;;25668:32;;;26596:12;;;;25727:21;;26330:16;;;;26587:21;;;;28031:15;;;-1:-1:-1;;;;23765:4328:0:o;43265:205::-;43315:4;43352:10;-1:-1:-1;;;;;43366:13:0;43352:27;;;;;:52;;-1:-1:-1;43397:7:0;;;;;;;43396:8;43352:52;:110;;;;-1:-1:-1;43449:13:0;;43439:4;8712:7;8739:18;;;:9;:18;;;;;;43421:41;;43352:110;43332:130;;43265:205;:::o;42034:694::-;38937:7;:14;;-1:-1:-1;;38937:14:0;;;;;37015:21:::1;:19;:21::i;:::-;42187:16:::2;::::0;;42201:1:::2;42187:16:::0;;;;;::::2;::::0;;38562:42:::2;::::0;42097:25:::2;::::0;42187:16;42201:1;42187:16:::2;::::0;::::2;::::0;;::::2;::::0;::::2;;::::0;-1:-1:-1;42187:16:0::2;42163:40;;42232:4;42214;42219:1;42214:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;42214:23:0::2;;;-1:-1:-1::0;;;;;42214:23:0::2;;;::::0;::::2;42258:6;-1:-1:-1::0;;;;;42258:11:0::2;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42248:4;42253:1;42248:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42248:23:0;;::::2;:7;::::0;;::::2;::::0;;;;;:23;42284:57;::::2;;42356:24;42374:4;-1:-1:-1::0;;;;;8739:18:0;8712:7;8739:18;;;:9;:18;;;;;;;8638:127;42356:24:::2;42395:1;42411:4;42438;42458:15;42284:200;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;42576:20:0::2;::::0;42568:78:::2;::::0;42515:21:::2;::::0;-1:-1:-1;42497:15:0::2;::::0;-1:-1:-1;42576:20:0;;;::::2;-1:-1:-1::0;;;;;42576:20:0::2;::::0;42515:21;;42568:78:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42549:97;;;42662:7;42657:64;;42693:16;;-1:-1:-1::0;;;42693:16:0::2;;;;;;;;;;;42657:64;42086:642;;;;37059:20:::1;36348:1:::0;37604:7;:22;37421:213;37059:20:::1;38974:7:::0;:15;;-1:-1:-1;;38974:15:0;;;42034:694::o;12830:840::-;-1:-1:-1;;;;;12961:18:0;;12953:68;;;;-1:-1:-1;;;12953:68:0;;10555:2:1;12953:68:0;;;10537:21:1;10594:2;10574:18;;;10567:30;10633:34;10613:18;;;10606:62;-1:-1:-1;;;10684:18:1;;;10677:35;10729:19;;12953:68:0;10353:401:1;12953:68:0;-1:-1:-1;;;;;13040:16:0;;13032:64;;;;-1:-1:-1;;;13032:64:0;;10961:2:1;13032:64:0;;;10943:21:1;11000:2;10980:18;;;10973:30;11039:34;11019:18;;;11012:62;-1:-1:-1;;;11090:18:1;;;11083:33;11133:19;;13032:64:0;10759:399:1;13032:64:0;13109:38;13130:4;13136:2;13140:6;13109:20;:38::i;:::-;-1:-1:-1;;;;;13182:15:0;;13160:19;13182:15;;;:9;:15;;;;;;13216:21;;;;13208:72;;;;-1:-1:-1;;;13208:72:0;;11365:2:1;13208:72:0;;;11347:21:1;11404:2;11384:18;;;11377:30;11443:34;11423:18;;;11416:62;-1:-1:-1;;;11494:18:1;;;11487:36;11540:19;;13208:72:0;11163:402:1;13208:72:0;-1:-1:-1;;;;;13316:15:0;;;;;;;:9;:15;;;;;;13334:20;;;13316:38;;13534:13;;;;;;;;;;:23;;;;;;13586:26;;;;;;13348:6;160:25:1;;148:2;133:18;;14:177;13586:26:0;;;;;;;;13625:37;41425:601;42736:521;42867:7;42887:15;42941:13;;42922:16;;:32;;;;:::i;:::-;42906:12;:48;;42905:110;;42982:13;-1:-1:-1;;;;;42969:26:0;:9;-1:-1:-1;;;;;42969:26:0;;:45;;43008:6;;42905:110;;42969:45;42998:7;;42905:110;;;42958:7;;42905:110;42887:128;;43043:13;-1:-1:-1;;;;;43030:26:0;:9;-1:-1:-1;;;;;43030:26:0;;43026:201;;43080:33;43092:6;43100:7;43109:3;43080:11;:33::i;:::-;43073:40;;;;;43026:201;43145:13;-1:-1:-1;;;;;43135:23:0;:6;-1:-1:-1;;;;;43135:23:0;;43131:96;;43182:33;43194:6;43202:7;43211:3;43182:11;:33::i;43131:96::-;-1:-1:-1;43247:1:0;;42736:521;-1:-1:-1;;;;42736:521:0:o;37095:318::-;36392:1;37225:7;;:19;37221:89;;37268:30;;-1:-1:-1;;;37268:30:0;;;;;;;;;;;37221:89;36392:1;37387:7;:18;37095:318::o;45274:636::-;45422:11;;;;45417:155;;-1:-1:-1;;;;;45455:22:0;;;;;;:15;:22;;;;;;;;45454:23;;:48;;-1:-1:-1;;;;;;45482:20:0;;;;;;:15;:20;;;;;;;;45481:21;45454:48;45450:111;;;45530:15;;-1:-1:-1;;;45530:15:0;;;;;;;;;;;45450:111;-1:-1:-1;;;;;45587:20:0;;;;;;:15;:20;;;;;;;;45582:166;;45657:16;;45646:7;45629:14;45639:3;-1:-1:-1;;;;;8739:18:0;8712:7;8739:18;;;:9;:18;;;;;;;8638:127;45629:14;:24;;;;:::i;:::-;45628:45;45624:113;;;45701:20;;-1:-1:-1;;;45701:20:0;;;;;;;;;;;45624:113;-1:-1:-1;;;;;45763:22:0;;;;;;:15;:22;;;;;;;;45758:145;;45816:11;;45806:7;:21;45802:90;;;45855:21;;-1:-1:-1;;;45855:21:0;;;;;;;;;;;196:548:1;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;804:70;749:131;:::o;885:315::-;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:248::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;-1:-1:-1;;2675:23:1;;;2745:2;2730:18;;;2717:32;;-1:-1:-1;2507:248:1:o;2760:180::-;2819:6;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;-1:-1:-1;2911:23:1;;2760:180;-1:-1:-1;2760:180:1:o;2945:118::-;3031:5;3024:13;3017:21;3010:5;3007:32;2997:60;;3053:1;3050;3043:12;3068:382;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:30;3347:32;3388:30;:::i;:::-;3437:7;3427:17;;;3068:382;;;;;:::o;3455:388::-;3523:6;3531;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3639:9;3626:23;3658:31;3683:5;3658:31;:::i;:::-;3708:5;-1:-1:-1;3765:2:1;3750:18;;3737:32;3778:33;3737:32;3778:33;:::i;3848:380::-;3927:1;3923:12;;;;3970;;;3991:61;;4045:4;4037:6;4033:17;4023:27;;3991:61;4098:2;4090:6;4087:14;4067:18;4064:38;4061:161;;4144:10;4139:3;4135:20;4132:1;4125:31;4179:4;4176:1;4169:15;4207:4;4204:1;4197:15;4061:161;;3848:380;;;:::o;4233:127::-;4294:10;4289:3;4285:20;4282:1;4275:31;4325:4;4322:1;4315:15;4349:4;4346:1;4339:15;4365:125;4430:9;;;4451:10;;;4448:36;;;4464:18;;:::i;4495:356::-;4697:2;4679:21;;;4716:18;;;4709:30;4775:34;4770:2;4755:18;;4748:62;4842:2;4827:18;;4495:356::o;4856:184::-;4926:6;4979:2;4967:9;4958:7;4954:23;4950:32;4947:52;;;4995:1;4992;4985:12;4947:52;-1:-1:-1;5018:16:1;;4856:184;-1:-1:-1;4856:184:1:o;5324:245::-;5391:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:52;;;5460:1;5457;5450:12;5412:52;5492:9;5486:16;5511:28;5533:5;5511:28;:::i;5574:168::-;5647:9;;;5678;;5695:15;;;5689:22;;5675:37;5665:71;;5716:18;;:::i;5747:127::-;5808:10;5803:3;5799:20;5796:1;5789:31;5839:4;5836:1;5829:15;5863:4;5860:1;5853:15;5879:217;5919:1;5945;5935:132;;5989:10;5984:3;5980:20;5977:1;5970:31;6024:4;6021:1;6014:15;6052:4;6049:1;6042:15;5935:132;-1:-1:-1;6081:9:1;;5879:217::o;8505:128::-;8572:9;;;8593:11;;;8590:37;;;8607:18;;:::i;8770:127::-;8831:10;8826:3;8822:20;8819:1;8812:31;8862:4;8859:1;8852:15;8886:4;8883:1;8876:15;8902:251;8972:6;9025:2;9013:9;9004:7;9000:23;8996:32;8993:52;;;9041:1;9038;9031:12;8993:52;9073:9;9067:16;9092:31;9117:5;9092:31;:::i;9158:980::-;9420:4;9468:3;9457:9;9453:19;9499:6;9488:9;9481:25;9525:2;9563:6;9558:2;9547:9;9543:18;9536:34;9606:3;9601:2;9590:9;9586:18;9579:31;9630:6;9665;9659:13;9696:6;9688;9681:22;9734:3;9723:9;9719:19;9712:26;;9773:2;9765:6;9761:15;9747:29;;9794:1;9804:195;9818:6;9815:1;9812:13;9804:195;;;9883:13;;-1:-1:-1;;;;;9879:39:1;9867:52;;9974:15;;;;9939:12;;;;9915:1;9833:9;9804:195;;;-1:-1:-1;;;;;;;10055:32:1;;;;10050:2;10035:18;;10028:60;-1:-1:-1;;;10119:3:1;10104:19;10097:35;10016:3;9158:980;-1:-1:-1;;;9158:980:1:o
Swarm Source
ipfs://0aba237891372d298f4ec77addd1e22e3d3bc6314365049d88c4c34fb7cf4d6a
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.