ERC-20
Overview
Max Total Supply
420,689,665,183,598.017946552248915944 PepeX
Holders
5
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
420,685,662,999,974.325732541715318364 PepeXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BlazingPepe
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract BlazingPepe is ERC20, ERC20Burnable, Ownable { using SafeMath for uint256; address private constant feeAddress1 = 0xD5F346BCE4846e94C7600D54E487F810Dd53305e; address private constant feeAddress2 = 0x99b26C4d4d5e8e29f32C43e8Dca59D7fdEee8348; uint256 private constant feePercentage = 7; uint256 private constant burnPercentage = 4; uint256 private constant feeAddress1Percentage = 2; uint256 private constant feeAddress2Percentage = 1; bool public feesEnabled = true; bool public renounceEnabled = true; address private constant uniswapRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 private uniswapV2Router; uint256 public totalTokensBurned; constructor() ERC20("BlazingPepe", "PepeX") { uint256 totalSupply = 420690000000000000000000000000000; _mint(msg.sender, totalSupply); uniswapV2Router = IUniswapV2Router02(uniswapRouter); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transferWithFee(_msgSender(), recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transferWithFee(sender, recipient, amount); _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _transferWithFee(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "ERC20: transfer amount must be greater than zero"); require(balanceOf(sender) >= amount, "ERC20: insufficient balance"); uint256 feeAmount = calculateFee(amount); uint256 burnAmount = feeAmount.mul(burnPercentage).div(feePercentage); uint256 feeAddress1Amount = feeAmount.mul(feeAddress1Percentage).div(feePercentage); uint256 feeAddress2Amount = feeAmount.mul(feeAddress2Percentage).div(feePercentage); // Adjust the allowance of the sender's tokens for the contract _approve(sender, address(this), allowance(sender, address(this)).add(feeAmount)); _burn(sender, burnAmount); _transfer(sender, feeAddress1, feeAddress1Amount); _transfer(sender, feeAddress2, feeAddress2Amount); _transfer(sender, recipient, amount.sub(feeAmount)); totalTokensBurned = totalTokensBurned.add(burnAmount); } function calculateFee(uint256 amount) internal view returns (uint256) { if (feesEnabled) { return amount.mul(feePercentage).div(100); } else { return 0; } } function disableFees() public onlyOwner { feesEnabled = false; } function enableFees() public onlyOwner { feesEnabled = true; } function renounceOwnership() public override onlyOwner { require(renounceEnabled, "Ownership renouncement is disabled"); super.renounceOwnership(); } function disableRenounce() public onlyOwner { renounceEnabled = false; } function enableRenounce() public onlyOwner { renounceEnabled = true; } function swapAndBurn(uint256 tokenAmount) external { require(balanceOf(msg.sender) >= tokenAmount, "Insufficient balance"); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256 deadline = block.timestamp + 300; // Set a fixed deadline of 5 minutes (300 seconds) uint256 feeAmount = calculateFee(tokenAmount); uint256 burnAmount = feeAmount.mul(burnPercentage).div(feePercentage); uint256 feeAddress1Amount = feeAmount.mul(feeAddress1Percentage).div(feePercentage); uint256 feeAddress2Amount = feeAmount.mul(feeAddress2Percentage).div(feePercentage); // Transfer tokens including fees to the contract address _transferWithFee(msg.sender, address(this), tokenAmount); // Approve the token transfer to the Uniswap router _approve(address(this), address(uniswapRouter), tokenAmount); // Perform the swap with specified gas limit uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount.sub(feeAmount), 0, path, address(this), deadline ); // Transfer fees _transfer(address(this), feeAddress1, feeAddress1Amount); _transfer(address(this), feeAddress2, feeAddress2Amount); // Burn tokens _burn(address(this), burnAmount); // Transfer ETH back to the user (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Failed to transfer ETH"); // Update the total tokens burned totalTokensBurned = totalTokensBurned.add(burnAmount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _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 {} }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableRenounce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableRenounce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"swapAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600560146101000a81548160ff0219169083151502179055506001600560156101000a81548160ff02191690831515021790555034801562000046575f80fd5b506040518060400160405280600b81526020017f426c617a696e67506570650000000000000000000000000000000000000000008152506040518060400160405280600581526020017f50657065580000000000000000000000000000000000000000000000000000008152508160039081620000c4919062000615565b508060049081620000d6919062000615565b505050620000f9620000ed6200017860201b60201c565b6200017f60201b60201c565b5f6d14bddab3e51a57cff87a5000000090506200011d33826200024260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200080a565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002aa9062000757565b60405180910390fd5b620002c65f8383620003a760201b60201c565b8060025f828254620002d99190620007a4565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003889190620007ef565b60405180910390a3620003a35f8383620003ac60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200042d57607f821691505b602082108103620004435762000442620003e8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004a77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200046a565b620004b386836200046a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004fd620004f7620004f184620004cb565b620004d4565b620004cb565b9050919050565b5f819050919050565b6200051883620004dd565b62000530620005278262000504565b84845462000476565b825550505050565b5f90565b6200054662000538565b620005538184846200050d565b505050565b5b818110156200057a576200056e5f826200053c565b60018101905062000559565b5050565b601f821115620005c957620005938162000449565b6200059e846200045b565b81016020851015620005ae578190505b620005c6620005bd856200045b565b83018262000558565b50505b505050565b5f82821c905092915050565b5f620005eb5f1984600802620005ce565b1980831691505092915050565b5f620006058383620005da565b9150826002028217905092915050565b6200062082620003b1565b67ffffffffffffffff8111156200063c576200063b620003bb565b5b62000648825462000415565b620006558282856200057e565b5f60209050601f8311600181146200068b575f841562000676578287015190505b620006828582620005f8565b865550620006f1565b601f1984166200069b8662000449565b5f5b82811015620006c4578489015182556001820191506020850194506020810190506200069d565b86831015620006e45784890151620006e0601f891682620005da565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200073f601f83620006f9565b91506200074c8262000709565b602082019050919050565b5f6020820190508181035f830152620007708162000731565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620007b082620004cb565b9150620007bd83620004cb565b9250828201905080821115620007d857620007d762000777565b5b92915050565b620007e981620004cb565b82525050565b5f602082019050620008045f830184620007de565b92915050565b61288380620008185f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c806379cc6790116100c1578063b4780e851161007a578063b4780e85146103b4578063ce404b23146103be578063d157e301146103c8578063dd62ed3e146103e6578063f2fde38b14610416578063fbd0f2321461043257610156565b806379cc6790146102de5780638da5cb5b146102fa57806395d89b4114610318578063a457c2d714610336578063a64e4f8a14610366578063a9059cbb1461038457610156565b8063368f5bd511610113578063368f5bd514610230578063395093511461023a57806342966c681461026a5780635e8d6e491461028657806370a08231146102a4578063715018a6146102d457610156565b806306fdde031461015a578063095ea7b31461017857806318160ddd146101a85780631d65a6ca146101c657806323b872dd146101e2578063313ce56714610212575b5f80fd5b61016261043c565b60405161016f91906119c0565b60405180910390f35b610192600480360381019061018d9190611a71565b6104cc565b60405161019f9190611ac9565b60405180910390f35b6101b06104ee565b6040516101bd9190611af1565b60405180910390f35b6101e060048036038101906101db9190611b0a565b6104f7565b005b6101fc60048036038101906101f79190611b35565b610934565b6040516102099190611ac9565b60405180910390f35b61021a610999565b6040516102279190611ba0565b60405180910390f35b6102386109a1565b005b610254600480360381019061024f9190611a71565b6109c6565b6040516102619190611ac9565b60405180910390f35b610284600480360381019061027f9190611b0a565b6109fc565b005b61028e610a10565b60405161029b9190611ac9565b60405180910390f35b6102be60048036038101906102b99190611bb9565b610a23565b6040516102cb9190611af1565b60405180910390f35b6102dc610a68565b005b6102f860048036038101906102f39190611a71565b610ac9565b005b610302610ae9565b60405161030f9190611bf3565b60405180910390f35b610320610b11565b60405161032d91906119c0565b60405180910390f35b610350600480360381019061034b9190611a71565b610ba1565b60405161035d9190611ac9565b60405180910390f35b61036e610c16565b60405161037b9190611ac9565b60405180910390f35b61039e60048036038101906103999190611a71565b610c29565b6040516103ab9190611ac9565b60405180910390f35b6103bc610c46565b005b6103c6610c6b565b005b6103d0610c8f565b6040516103dd9190611af1565b60405180910390f35b61040060048036038101906103fb9190611c0c565b610c95565b60405161040d9190611af1565b60405180910390f35b610430600480360381019061042b9190611bb9565b610d17565b005b61043a610d99565b005b60606003805461044b90611c77565b80601f016020809104026020016040519081016040528092919081815260200182805461047790611c77565b80156104c25780601f10610499576101008083540402835291602001916104c2565b820191905f5260205f20905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b5f806104d6610dbd565b90506104e3818585610dc4565b600191505092915050565b5f600254905090565b8061050133610a23565b1015610542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053990611cf1565b60405180910390fd5b5f600267ffffffffffffffff81111561055e5761055d611d0f565b5b60405190808252806020026020018201604052801561058c5781602001602082028036833780820191505090505b50905030815f815181106105a3576105a2611d3c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610647573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066b9190611d7d565b8160018151811061067f5761067e611d3c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f61012c426106c89190611dd5565b90505f6106d484610f87565b90505f6106fe60076106f0600485610fd490919063ffffffff16565b610fe990919063ffffffff16565b90505f610728600761071a600286610fd490919063ffffffff16565b610fe990919063ffffffff16565b90505f6107526007610744600187610fd490919063ffffffff16565b610fe990919063ffffffff16565b905061075f333089610ffe565b61077e30737a250d5630b4cf539739df2c5dacb4c659f2488d89610dc4565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476107ce868a6112a090919063ffffffff16565b5f89308a6040518663ffffffff1660e01b81526004016107f2959493929190611f01565b5f604051808303815f87803b158015610809575f80fd5b505af115801561081b573d5f803e3d5ffd5b5050505061083e3073d5f346bce4846e94c7600d54e487f810dd53305e846112b5565b61085d307399b26c4d4d5e8e29f32c43e8dca59d7fdeee8348836112b5565b6108673084611521565b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161088c90611f86565b5f6040518083038185875af1925050503d805f81146108c6576040519150601f19603f3d011682016040523d82523d5f602084013e6108cb565b606091505b505090508061090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690611fe4565b60405180910390fd5b610924846007546116e490919063ffffffff16565b6007819055505050505050505050565b5f610940848484610ffe565b61098e8461094c610dbd565b610989856040518060600160405280602881526020016128266028913961097a8a610975610dbd565b610c95565b6116f99092919063ffffffff16565b610dc4565b600190509392505050565b5f6012905090565b6109a961174d565b6001600560146101000a81548160ff021916908315150217905550565b5f806109d0610dbd565b90506109f18185856109e28589610c95565b6109ec9190611dd5565b610dc4565b600191505092915050565b610a0d610a07610dbd565b82611521565b50565b600560159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a7061174d565b600560159054906101000a900460ff16610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690612072565b60405180910390fd5b610ac76117cb565b565b610adb82610ad5610dbd565b836117de565b610ae58282611521565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b2090611c77565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4c90611c77565b8015610b975780601f10610b6e57610100808354040283529160200191610b97565b820191905f5260205f20905b815481529060010190602001808311610b7a57829003601f168201915b5050505050905090565b5f80610bab610dbd565b90505f610bb88286610c95565b905083811015610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490612100565b60405180910390fd5b610c0a8286868403610dc4565b60019250505092915050565b600560149054906101000a900460ff1681565b5f610c3c610c35610dbd565b8484610ffe565b6001905092915050565b610c4e61174d565b6001600560156101000a81548160ff021916908315150217905550565b610c7361174d565b5f600560146101000a81548160ff021916908315150217905550565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d1f61174d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d849061218e565b60405180910390fd5b610d9681611869565b50565b610da161174d565b5f600560156101000a81548160ff021916908315150217905550565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061221c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e97906122aa565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f7a9190611af1565b60405180910390a3505050565b5f600560149054906101000a900460ff1615610fcb57610fc46064610fb6600785610fd490919063ffffffff16565b610fe990919063ffffffff16565b9050610fcf565b5f90505b919050565b5f8183610fe191906122c8565b905092915050565b5f8183610ff69190612336565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361106c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611063906123d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612464565b60405180910390fd5b5f811161111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906124f2565b60405180910390fd5b8061112684610a23565b1015611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e9061255a565b60405180910390fd5b5f61117182610f87565b90505f61119b600761118d600485610fd490919063ffffffff16565b610fe990919063ffffffff16565b90505f6111c560076111b7600286610fd490919063ffffffff16565b610fe990919063ffffffff16565b90505f6111ef60076111e1600187610fd490919063ffffffff16565b610fe990919063ffffffff16565b90506112178730611212876112048c30610c95565b6116e490919063ffffffff16565b610dc4565b6112218784611521565b6112408773d5f346bce4846e94c7600d54e487f810dd53305e846112b5565b61125f877399b26c4d4d5e8e29f32c43e8dca59d7fdeee8348836112b5565b61127c878761127787896112a090919063ffffffff16565b6112b5565b611291836007546116e490919063ffffffff16565b60078190555050505050505050565b5f81836112ad9190612578565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a906123d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890612464565b60405180910390fd5b61139c83838361192c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561141f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114169061261b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115089190611af1565b60405180910390a361151b848484611931565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611586906126a9565b60405180910390fd5b61159a825f8361192c565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490612737565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116cc9190611af1565b60405180910390a36116df835f84611931565b505050565b5f81836116f19190611dd5565b905092915050565b5f838311158290611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173791906119c0565b60405180910390fd5b5082840390509392505050565b611755610dbd565b73ffffffffffffffffffffffffffffffffffffffff16611773610ae9565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c09061279f565b60405180910390fd5b565b6117d361174d565b6117dc5f611869565b565b5f6117e98484610c95565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118635781811015611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90612807565b60405180910390fd5b6118628484848403610dc4565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561196d578082015181840152602081019050611952565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61199282611936565b61199c8185611940565b93506119ac818560208601611950565b6119b581611978565b840191505092915050565b5f6020820190508181035f8301526119d88184611988565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a0d826119e4565b9050919050565b611a1d81611a03565b8114611a27575f80fd5b50565b5f81359050611a3881611a14565b92915050565b5f819050919050565b611a5081611a3e565b8114611a5a575f80fd5b50565b5f81359050611a6b81611a47565b92915050565b5f8060408385031215611a8757611a866119e0565b5b5f611a9485828601611a2a565b9250506020611aa585828601611a5d565b9150509250929050565b5f8115159050919050565b611ac381611aaf565b82525050565b5f602082019050611adc5f830184611aba565b92915050565b611aeb81611a3e565b82525050565b5f602082019050611b045f830184611ae2565b92915050565b5f60208284031215611b1f57611b1e6119e0565b5b5f611b2c84828501611a5d565b91505092915050565b5f805f60608486031215611b4c57611b4b6119e0565b5b5f611b5986828701611a2a565b9350506020611b6a86828701611a2a565b9250506040611b7b86828701611a5d565b9150509250925092565b5f60ff82169050919050565b611b9a81611b85565b82525050565b5f602082019050611bb35f830184611b91565b92915050565b5f60208284031215611bce57611bcd6119e0565b5b5f611bdb84828501611a2a565b91505092915050565b611bed81611a03565b82525050565b5f602082019050611c065f830184611be4565b92915050565b5f8060408385031215611c2257611c216119e0565b5b5f611c2f85828601611a2a565b9250506020611c4085828601611a2a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c8e57607f821691505b602082108103611ca157611ca0611c4a565b5b50919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611cdb601483611940565b9150611ce682611ca7565b602082019050919050565b5f6020820190508181035f830152611d0881611ccf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050611d7781611a14565b92915050565b5f60208284031215611d9257611d916119e0565b5b5f611d9f84828501611d69565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ddf82611a3e565b9150611dea83611a3e565b9250828201905080821115611e0257611e01611da8565b5b92915050565b5f819050919050565b5f819050919050565b5f611e34611e2f611e2a84611e08565b611e11565b611a3e565b9050919050565b611e4481611e1a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611e7c81611a03565b82525050565b5f611e8d8383611e73565b60208301905092915050565b5f602082019050919050565b5f611eaf82611e4a565b611eb98185611e54565b9350611ec483611e64565b805f5b83811015611ef4578151611edb8882611e82565b9750611ee683611e99565b925050600181019050611ec7565b5085935050505092915050565b5f60a082019050611f145f830188611ae2565b611f216020830187611e3b565b8181036040830152611f338186611ea5565b9050611f426060830185611be4565b611f4f6080830184611ae2565b9695505050505050565b5f81905092915050565b50565b5f611f715f83611f59565b9150611f7c82611f63565b5f82019050919050565b5f611f9082611f66565b9150819050919050565b7f4661696c656420746f207472616e7366657220455448000000000000000000005f82015250565b5f611fce601683611940565b9150611fd982611f9a565b602082019050919050565b5f6020820190508181035f830152611ffb81611fc2565b9050919050565b7f4f776e6572736869702072656e6f756e63656d656e742069732064697361626c5f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f61205c602283611940565b915061206782612002565b604082019050919050565b5f6020820190508181035f83015261208981612050565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6120ea602583611940565b91506120f582612090565b604082019050919050565b5f6020820190508181035f830152612117816120de565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612178602683611940565b91506121838261211e565b604082019050919050565b5f6020820190508181035f8301526121a58161216c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612206602483611940565b9150612211826121ac565b604082019050919050565b5f6020820190508181035f830152612233816121fa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612294602283611940565b915061229f8261223a565b604082019050919050565b5f6020820190508181035f8301526122c181612288565b9050919050565b5f6122d282611a3e565b91506122dd83611a3e565b92508282026122eb81611a3e565b9150828204841483151761230257612301611da8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61234082611a3e565b915061234b83611a3e565b92508261235b5761235a612309565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6123c0602583611940565b91506123cb82612366565b604082019050919050565b5f6020820190508181035f8301526123ed816123b4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61244e602383611940565b9150612459826123f4565b604082019050919050565b5f6020820190508181035f83015261247b81612442565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d75737420626520675f8201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b5f6124dc603083611940565b91506124e782612482565b604082019050919050565b5f6020820190508181035f830152612509816124d0565b9050919050565b7f45524332303a20696e73756666696369656e742062616c616e636500000000005f82015250565b5f612544601b83611940565b915061254f82612510565b602082019050919050565b5f6020820190508181035f83015261257181612538565b9050919050565b5f61258282611a3e565b915061258d83611a3e565b92508282039050818111156125a5576125a4611da8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612605602683611940565b9150612610826125ab565b604082019050919050565b5f6020820190508181035f830152612632816125f9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612693602183611940565b915061269e82612639565b604082019050919050565b5f6020820190508181035f8301526126c081612687565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612721602283611940565b915061272c826126c7565b604082019050919050565b5f6020820190508181035f83015261274e81612715565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612789602083611940565b915061279482612755565b602082019050919050565b5f6020820190508181035f8301526127b68161277d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6127f1601d83611940565b91506127fc826127bd565b602082019050919050565b5f6020820190508181035f83015261281e816127e5565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b493c43237ff4fa2c7c14ff698170392b578764e0fea81a89701d47065caec3964736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c806379cc6790116100c1578063b4780e851161007a578063b4780e85146103b4578063ce404b23146103be578063d157e301146103c8578063dd62ed3e146103e6578063f2fde38b14610416578063fbd0f2321461043257610156565b806379cc6790146102de5780638da5cb5b146102fa57806395d89b4114610318578063a457c2d714610336578063a64e4f8a14610366578063a9059cbb1461038457610156565b8063368f5bd511610113578063368f5bd514610230578063395093511461023a57806342966c681461026a5780635e8d6e491461028657806370a08231146102a4578063715018a6146102d457610156565b806306fdde031461015a578063095ea7b31461017857806318160ddd146101a85780631d65a6ca146101c657806323b872dd146101e2578063313ce56714610212575b5f80fd5b61016261043c565b60405161016f91906119c0565b60405180910390f35b610192600480360381019061018d9190611a71565b6104cc565b60405161019f9190611ac9565b60405180910390f35b6101b06104ee565b6040516101bd9190611af1565b60405180910390f35b6101e060048036038101906101db9190611b0a565b6104f7565b005b6101fc60048036038101906101f79190611b35565b610934565b6040516102099190611ac9565b60405180910390f35b61021a610999565b6040516102279190611ba0565b60405180910390f35b6102386109a1565b005b610254600480360381019061024f9190611a71565b6109c6565b6040516102619190611ac9565b60405180910390f35b610284600480360381019061027f9190611b0a565b6109fc565b005b61028e610a10565b60405161029b9190611ac9565b60405180910390f35b6102be60048036038101906102b99190611bb9565b610a23565b6040516102cb9190611af1565b60405180910390f35b6102dc610a68565b005b6102f860048036038101906102f39190611a71565b610ac9565b005b610302610ae9565b60405161030f9190611bf3565b60405180910390f35b610320610b11565b60405161032d91906119c0565b60405180910390f35b610350600480360381019061034b9190611a71565b610ba1565b60405161035d9190611ac9565b60405180910390f35b61036e610c16565b60405161037b9190611ac9565b60405180910390f35b61039e60048036038101906103999190611a71565b610c29565b6040516103ab9190611ac9565b60405180910390f35b6103bc610c46565b005b6103c6610c6b565b005b6103d0610c8f565b6040516103dd9190611af1565b60405180910390f35b61040060048036038101906103fb9190611c0c565b610c95565b60405161040d9190611af1565b60405180910390f35b610430600480360381019061042b9190611bb9565b610d17565b005b61043a610d99565b005b60606003805461044b90611c77565b80601f016020809104026020016040519081016040528092919081815260200182805461047790611c77565b80156104c25780601f10610499576101008083540402835291602001916104c2565b820191905f5260205f20905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b5f806104d6610dbd565b90506104e3818585610dc4565b600191505092915050565b5f600254905090565b8061050133610a23565b1015610542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053990611cf1565b60405180910390fd5b5f600267ffffffffffffffff81111561055e5761055d611d0f565b5b60405190808252806020026020018201604052801561058c5781602001602082028036833780820191505090505b50905030815f815181106105a3576105a2611d3c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610647573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066b9190611d7d565b8160018151811061067f5761067e611d3c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f61012c426106c89190611dd5565b90505f6106d484610f87565b90505f6106fe60076106f0600485610fd490919063ffffffff16565b610fe990919063ffffffff16565b90505f610728600761071a600286610fd490919063ffffffff16565b610fe990919063ffffffff16565b90505f6107526007610744600187610fd490919063ffffffff16565b610fe990919063ffffffff16565b905061075f333089610ffe565b61077e30737a250d5630b4cf539739df2c5dacb4c659f2488d89610dc4565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476107ce868a6112a090919063ffffffff16565b5f89308a6040518663ffffffff1660e01b81526004016107f2959493929190611f01565b5f604051808303815f87803b158015610809575f80fd5b505af115801561081b573d5f803e3d5ffd5b5050505061083e3073d5f346bce4846e94c7600d54e487f810dd53305e846112b5565b61085d307399b26c4d4d5e8e29f32c43e8dca59d7fdeee8348836112b5565b6108673084611521565b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161088c90611f86565b5f6040518083038185875af1925050503d805f81146108c6576040519150601f19603f3d011682016040523d82523d5f602084013e6108cb565b606091505b505090508061090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690611fe4565b60405180910390fd5b610924846007546116e490919063ffffffff16565b6007819055505050505050505050565b5f610940848484610ffe565b61098e8461094c610dbd565b610989856040518060600160405280602881526020016128266028913961097a8a610975610dbd565b610c95565b6116f99092919063ffffffff16565b610dc4565b600190509392505050565b5f6012905090565b6109a961174d565b6001600560146101000a81548160ff021916908315150217905550565b5f806109d0610dbd565b90506109f18185856109e28589610c95565b6109ec9190611dd5565b610dc4565b600191505092915050565b610a0d610a07610dbd565b82611521565b50565b600560159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a7061174d565b600560159054906101000a900460ff16610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690612072565b60405180910390fd5b610ac76117cb565b565b610adb82610ad5610dbd565b836117de565b610ae58282611521565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b2090611c77565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4c90611c77565b8015610b975780601f10610b6e57610100808354040283529160200191610b97565b820191905f5260205f20905b815481529060010190602001808311610b7a57829003601f168201915b5050505050905090565b5f80610bab610dbd565b90505f610bb88286610c95565b905083811015610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490612100565b60405180910390fd5b610c0a8286868403610dc4565b60019250505092915050565b600560149054906101000a900460ff1681565b5f610c3c610c35610dbd565b8484610ffe565b6001905092915050565b610c4e61174d565b6001600560156101000a81548160ff021916908315150217905550565b610c7361174d565b5f600560146101000a81548160ff021916908315150217905550565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d1f61174d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d849061218e565b60405180910390fd5b610d9681611869565b50565b610da161174d565b5f600560156101000a81548160ff021916908315150217905550565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061221c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e97906122aa565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f7a9190611af1565b60405180910390a3505050565b5f600560149054906101000a900460ff1615610fcb57610fc46064610fb6600785610fd490919063ffffffff16565b610fe990919063ffffffff16565b9050610fcf565b5f90505b919050565b5f8183610fe191906122c8565b905092915050565b5f8183610ff69190612336565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361106c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611063906123d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612464565b60405180910390fd5b5f811161111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906124f2565b60405180910390fd5b8061112684610a23565b1015611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e9061255a565b60405180910390fd5b5f61117182610f87565b90505f61119b600761118d600485610fd490919063ffffffff16565b610fe990919063ffffffff16565b90505f6111c560076111b7600286610fd490919063ffffffff16565b610fe990919063ffffffff16565b90505f6111ef60076111e1600187610fd490919063ffffffff16565b610fe990919063ffffffff16565b90506112178730611212876112048c30610c95565b6116e490919063ffffffff16565b610dc4565b6112218784611521565b6112408773d5f346bce4846e94c7600d54e487f810dd53305e846112b5565b61125f877399b26c4d4d5e8e29f32c43e8dca59d7fdeee8348836112b5565b61127c878761127787896112a090919063ffffffff16565b6112b5565b611291836007546116e490919063ffffffff16565b60078190555050505050505050565b5f81836112ad9190612578565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a906123d6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890612464565b60405180910390fd5b61139c83838361192c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561141f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114169061261b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115089190611af1565b60405180910390a361151b848484611931565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611586906126a9565b60405180910390fd5b61159a825f8361192c565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490612737565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116cc9190611af1565b60405180910390a36116df835f84611931565b505050565b5f81836116f19190611dd5565b905092915050565b5f838311158290611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173791906119c0565b60405180910390fd5b5082840390509392505050565b611755610dbd565b73ffffffffffffffffffffffffffffffffffffffff16611773610ae9565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c09061279f565b60405180910390fd5b565b6117d361174d565b6117dc5f611869565b565b5f6117e98484610c95565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118635781811015611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90612807565b60405180910390fd5b6118628484848403610dc4565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561196d578082015181840152602081019050611952565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61199282611936565b61199c8185611940565b93506119ac818560208601611950565b6119b581611978565b840191505092915050565b5f6020820190508181035f8301526119d88184611988565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a0d826119e4565b9050919050565b611a1d81611a03565b8114611a27575f80fd5b50565b5f81359050611a3881611a14565b92915050565b5f819050919050565b611a5081611a3e565b8114611a5a575f80fd5b50565b5f81359050611a6b81611a47565b92915050565b5f8060408385031215611a8757611a866119e0565b5b5f611a9485828601611a2a565b9250506020611aa585828601611a5d565b9150509250929050565b5f8115159050919050565b611ac381611aaf565b82525050565b5f602082019050611adc5f830184611aba565b92915050565b611aeb81611a3e565b82525050565b5f602082019050611b045f830184611ae2565b92915050565b5f60208284031215611b1f57611b1e6119e0565b5b5f611b2c84828501611a5d565b91505092915050565b5f805f60608486031215611b4c57611b4b6119e0565b5b5f611b5986828701611a2a565b9350506020611b6a86828701611a2a565b9250506040611b7b86828701611a5d565b9150509250925092565b5f60ff82169050919050565b611b9a81611b85565b82525050565b5f602082019050611bb35f830184611b91565b92915050565b5f60208284031215611bce57611bcd6119e0565b5b5f611bdb84828501611a2a565b91505092915050565b611bed81611a03565b82525050565b5f602082019050611c065f830184611be4565b92915050565b5f8060408385031215611c2257611c216119e0565b5b5f611c2f85828601611a2a565b9250506020611c4085828601611a2a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c8e57607f821691505b602082108103611ca157611ca0611c4a565b5b50919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611cdb601483611940565b9150611ce682611ca7565b602082019050919050565b5f6020820190508181035f830152611d0881611ccf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050611d7781611a14565b92915050565b5f60208284031215611d9257611d916119e0565b5b5f611d9f84828501611d69565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ddf82611a3e565b9150611dea83611a3e565b9250828201905080821115611e0257611e01611da8565b5b92915050565b5f819050919050565b5f819050919050565b5f611e34611e2f611e2a84611e08565b611e11565b611a3e565b9050919050565b611e4481611e1a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611e7c81611a03565b82525050565b5f611e8d8383611e73565b60208301905092915050565b5f602082019050919050565b5f611eaf82611e4a565b611eb98185611e54565b9350611ec483611e64565b805f5b83811015611ef4578151611edb8882611e82565b9750611ee683611e99565b925050600181019050611ec7565b5085935050505092915050565b5f60a082019050611f145f830188611ae2565b611f216020830187611e3b565b8181036040830152611f338186611ea5565b9050611f426060830185611be4565b611f4f6080830184611ae2565b9695505050505050565b5f81905092915050565b50565b5f611f715f83611f59565b9150611f7c82611f63565b5f82019050919050565b5f611f9082611f66565b9150819050919050565b7f4661696c656420746f207472616e7366657220455448000000000000000000005f82015250565b5f611fce601683611940565b9150611fd982611f9a565b602082019050919050565b5f6020820190508181035f830152611ffb81611fc2565b9050919050565b7f4f776e6572736869702072656e6f756e63656d656e742069732064697361626c5f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f61205c602283611940565b915061206782612002565b604082019050919050565b5f6020820190508181035f83015261208981612050565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6120ea602583611940565b91506120f582612090565b604082019050919050565b5f6020820190508181035f830152612117816120de565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612178602683611940565b91506121838261211e565b604082019050919050565b5f6020820190508181035f8301526121a58161216c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612206602483611940565b9150612211826121ac565b604082019050919050565b5f6020820190508181035f830152612233816121fa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612294602283611940565b915061229f8261223a565b604082019050919050565b5f6020820190508181035f8301526122c181612288565b9050919050565b5f6122d282611a3e565b91506122dd83611a3e565b92508282026122eb81611a3e565b9150828204841483151761230257612301611da8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61234082611a3e565b915061234b83611a3e565b92508261235b5761235a612309565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6123c0602583611940565b91506123cb82612366565b604082019050919050565b5f6020820190508181035f8301526123ed816123b4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61244e602383611940565b9150612459826123f4565b604082019050919050565b5f6020820190508181035f83015261247b81612442565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d75737420626520675f8201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b5f6124dc603083611940565b91506124e782612482565b604082019050919050565b5f6020820190508181035f830152612509816124d0565b9050919050565b7f45524332303a20696e73756666696369656e742062616c616e636500000000005f82015250565b5f612544601b83611940565b915061254f82612510565b602082019050919050565b5f6020820190508181035f83015261257181612538565b9050919050565b5f61258282611a3e565b915061258d83611a3e565b92508282039050818111156125a5576125a4611da8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612605602683611940565b9150612610826125ab565b604082019050919050565b5f6020820190508181035f830152612632816125f9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612693602183611940565b915061269e82612639565b604082019050919050565b5f6020820190508181035f8301526126c081612687565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612721602283611940565b915061272c826126c7565b604082019050919050565b5f6020820190508181035f83015261274e81612715565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612789602083611940565b915061279482612755565b602082019050919050565b5f6020820190508181035f8301526127b68161277d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6127f1601d83611940565b91506127fc826127bd565b602082019050919050565b5f6020820190508181035f83015261281e816127e5565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b493c43237ff4fa2c7c14ff698170392b578764e0fea81a89701d47065caec3964736f6c63430008140033
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.