ERC-20
Overview
Max Total Supply
10,000,000,000 BRRR
Holders
219
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,416,531.006119667791892211 BRRRValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BRRRToken
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; /// @title BRRR Token - Get ready to make some noise with $BRRR – your fun token designed to echo the excitement of the Valkyrie ETF journey contract BRRRToken is ERC20, Ownable { bool public tradingActivated; uint256 private tradingStartTime; // Initial Allocation Addresses address public operationsWallet; address public initialMarketingWallet; address public prolongedMarketingWallet; address public reserveWallet; address public wethTokenAddr; IUniswapV2Router02 public uniswapV2RouterInstance; address public uniswapV2TokenPair; uint256 public constant TOKEN_MAX_SUPPLY = 10_000_000_000 * 10 ** 18; // 10 billion tokens mapping(address => bool) private permittedAddresses; mapping(address => bool) public blockedAccounts; constructor( address router, address wethAddress, address operationsAddress, address initialMarketingAddress, address prolongedMarketingAddress, address reserveAddress ) ERC20("VALKYRIE BITCOIN FUND", "BRRR") { wethTokenAddr = wethAddress; operationsWallet = operationsAddress; initialMarketingWallet = initialMarketingAddress; prolongedMarketingWallet = prolongedMarketingAddress; reserveWallet = reserveAddress; // Allocate 80% of the total supply to the owner for liquidity _mint(msg.sender, (TOKEN_MAX_SUPPLY * 80) / 100); // Allocate 5% of the total supply to the operations wallet _mint(operationsWallet, (TOKEN_MAX_SUPPLY * 5) / 100); // Allocate 5% of the total supply to the initial marketing wallet _mint(initialMarketingWallet, (TOKEN_MAX_SUPPLY * 5) / 100); // Allocate 5% of the total supply to the prolonged marketing wallet _mint(prolongedMarketingWallet, (TOKEN_MAX_SUPPLY * 5) / 100); // Allocate 5% of the total supply to the reserve wallet _mint(reserveWallet, (TOKEN_MAX_SUPPLY * 5) / 100); // Create a uniswap pair for this new token uniswapV2RouterInstance = IUniswapV2Router02(router); uniswapV2TokenPair = IUniswapV2Factory( uniswapV2RouterInstance.factory() ).createPair(address(this), wethAddress); // Setting permitted addresses permittedAddresses[owner()] = true; permittedAddresses[address(this)] = true; permittedAddresses[router] = true; permittedAddresses[operationsWallet] = true; permittedAddresses[initialMarketingWallet] = true; permittedAddresses[prolongedMarketingWallet] = true; permittedAddresses[reserveWallet] = true; } function _transfer( address sender, address recipient, uint256 amount ) internal override { require(sender != address(0), "Cannot send from zero address"); require(!blockedAccounts[sender], "Sender account is blocked"); require(!blockedAccounts[recipient], "Recipient account is blocked"); if (permittedAddresses[sender] || permittedAddresses[recipient]) { super._transfer(sender, recipient, amount); return; } // Check is trading is activated require(tradingActivated, "Trading is not activated"); if (recipient == uniswapV2TokenPair || sender == uniswapV2TokenPair) { // Apply a 99% tax on trades that occur within 5 minutes of trading activation // This tax is specifically designed to prevent sniper bots and destructive trading // practices that often target new tokens in their initial trading phase if (block.timestamp < tradingStartTime + 5 minutes) { // Calculate the tax amount (99% of the transaction) uint256 taxAmount = (amount * 99) / 100; uint256 taxedAmount = amount - taxAmount; // Redirect the tax amount to the treasury or a specified wallet super._transfer(sender, reserveWallet, taxAmount); // Proceed with the transaction for the remaining amount after tax deduction super._transfer(sender, recipient, taxedAmount); } else { // If the transaction occurs more than 5 minutes after trading has been activated, // proceed with the transaction without applying any tax super._transfer(sender, recipient, amount); } } else { // If it's not a buy or sell transaction, proceed without tax super._transfer(sender, recipient, amount); } } /// @notice Activates trading, enabling token transfers function activateTrading() external onlyOwner { tradingActivated = true; tradingStartTime = block.timestamp; } /// @notice Adds multiple addresses to the blacklist /// @param accounts Array of addresses to be blacklisted function blacklists(address[] memory accounts) external onlyOwner { for (uint i = 0; i < accounts.length; i++) { blockedAccounts[accounts[i]] = true; } } /// @notice Removes multiple addresses from the blacklist /// @param accounts Array of addresses to be unblacklisted function unblacklists(address[] memory accounts) external onlyOwner { for (uint i = 0; i < accounts.length; i++) { blockedAccounts[accounts[i]] = false; } } // Function to update the operations wallet address function updateOperationsWallet(address newWallet) external onlyOwner { require(newWallet != address(0), "Invalid address"); operationsWallet = newWallet; } // Function to update the initial marketing wallet address function updateInitialMarketingWallet( address newWallet ) external onlyOwner { require(newWallet != address(0), "Invalid address"); initialMarketingWallet = newWallet; } // Function to update the prolonged marketing wallet address function updateProlongedMarketingWallet( address newWallet ) external onlyOwner { require(newWallet != address(0), "Invalid address"); prolongedMarketingWallet = newWallet; } // Function to update the reserve wallet address function updateReserveWallet(address newWallet) external onlyOwner { require(newWallet != address(0), "Invalid address"); reserveWallet = newWallet; } }
// 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.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 // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
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); }
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; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"wethAddress","type":"address"},{"internalType":"address","name":"operationsAddress","type":"address"},{"internalType":"address","name":"initialMarketingAddress","type":"address"},{"internalType":"address","name":"prolongedMarketingAddress","type":"address"},{"internalType":"address","name":"reserveAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOKEN_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"blacklists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blockedAccounts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialMarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prolongedMarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tradingActivated","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":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"unblacklists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2RouterInstance","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2TokenPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateInitialMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateProlongedMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateReserveWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wethTokenAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200396d3803806200396d833981810160405281019062000037919062000b53565b6040518060400160405280601581526020017f56414c4b5952494520424954434f494e2046554e4400000000000000000000008152506040518060400160405280600481526020017f42525252000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000e69565b508060049081620000c6919062000e69565b505050620000e9620000dd6200087a60201b60201c565b6200088260201b60201c565b84600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200026833606460506b204fce5e3e2502611000000062000250919062000f7f565b6200025c919062000ff9565b6200094860201b60201c565b620002c4600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606460056b204fce5e3e25026110000000620002ac919062000f7f565b620002b8919062000ff9565b6200094860201b60201c565b62000320600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606460056b204fce5e3e2502611000000062000308919062000f7f565b62000314919062000ff9565b6200094860201b60201c565b6200037c600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606460056b204fce5e3e2502611000000062000364919062000f7f565b62000370919062000ff9565b6200094860201b60201c565b620003d8600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606460056b204fce5e3e25026110000000620003c0919062000f7f565b620003cc919062000ff9565b6200094860201b60201c565b85600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000487573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ad919062001031565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630876040518363ffffffff1660e01b8152600401620004e992919062001074565b6020604051808303816000875af115801562000509573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200052f919062001031565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60006200058562000ab560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050506200118d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b19062001102565b60405180910390fd5b620009ce6000838362000adf60201b60201c565b8060026000828254620009e2919062001124565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a95919062001170565b60405180910390a362000ab16000838362000ae460201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b1b8262000aee565b9050919050565b62000b2d8162000b0e565b811462000b3957600080fd5b50565b60008151905062000b4d8162000b22565b92915050565b60008060008060008060c0878903121562000b735762000b7262000ae9565b5b600062000b8389828a0162000b3c565b965050602062000b9689828a0162000b3c565b955050604062000ba989828a0162000b3c565b945050606062000bbc89828a0162000b3c565b935050608062000bcf89828a0162000b3c565b92505060a062000be289828a0162000b3c565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7157607f821691505b60208210810362000c875762000c8662000c29565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cf17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cb2565b62000cfd868362000cb2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d4a62000d4462000d3e8462000d15565b62000d1f565b62000d15565b9050919050565b6000819050919050565b62000d668362000d29565b62000d7e62000d758262000d51565b84845462000cbf565b825550505050565b600090565b62000d9562000d86565b62000da281848462000d5b565b505050565b5b8181101562000dca5762000dbe60008262000d8b565b60018101905062000da8565b5050565b601f82111562000e195762000de38162000c8d565b62000dee8462000ca2565b8101602085101562000dfe578190505b62000e1662000e0d8562000ca2565b83018262000da7565b50505b505050565b600082821c905092915050565b600062000e3e6000198460080262000e1e565b1980831691505092915050565b600062000e59838362000e2b565b9150826002028217905092915050565b62000e748262000bef565b67ffffffffffffffff81111562000e905762000e8f62000bfa565b5b62000e9c825462000c58565b62000ea982828562000dce565b600060209050601f83116001811462000ee1576000841562000ecc578287015190505b62000ed8858262000e4b565b86555062000f48565b601f19841662000ef18662000c8d565b60005b8281101562000f1b5784890151825560018201915060208501945060208101905062000ef4565b8683101562000f3b578489015162000f37601f89168262000e2b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f8c8262000d15565b915062000f998362000d15565b925082820262000fa98162000d15565b9150828204841483151762000fc35762000fc262000f50565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010068262000d15565b9150620010138362000d15565b92508262001026576200102562000fca565b5b828204905092915050565b6000602082840312156200104a576200104962000ae9565b5b60006200105a8482850162000b3c565b91505092915050565b6200106e8162000b0e565b82525050565b60006040820190506200108b600083018562001063565b6200109a602083018462001063565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ea601f83620010a1565b9150620010f782620010b2565b602082019050919050565b600060208201905081810360008301526200111d81620010db565b9050919050565b6000620011318262000d15565b91506200113e8362000d15565b925082820190508082111562001159576200115862000f50565b5b92915050565b6200116a8162000d15565b82525050565b60006020820190506200118760008301846200115f565b92915050565b6127d0806200119d6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a9059cbb116100a2578063f2fde38b11610071578063f2fde38b1461055e578063f45bf3d21461057a578063fa46a530146105aa578063fd72e22a146105c8576101e5565b8063a9059cbb146104c2578063aa774afb146104f2578063d72b11bd14610510578063dd62ed3e1461052e576101e5565b806395d89b41116100de57806395d89b411461043c5780639f9c62481461045a578063a457c2d714610476578063a4bd5cf3146104a6576101e5565b8063715018a6146103da5780638da5cb5b146103e45780638ee2c4b81461040257806394e8b58114610420576101e5565b806330d5d18d1161018757806355d8d3b61161015657806355d8d3b6146103525780635852fad1146103705780635b3def411461038c57806370a08231146103aa576101e5565b806330d5d18d146102ca578063313ce567146102e657806339509351146103045780634c44a53814610334576101e5565b806318160ddd116101c357806318160ddd14610242578063199c27c51461026057806323b872dd1461027c5780632faf143d146102ac576101e5565b806306fdde03146101ea578063095ea7b3146102085780630bd05b6914610238575b600080fd5b6101f26105e6565b6040516101ff9190611a02565b60405180910390f35b610222600480360381019061021d9190611acc565b610678565b60405161022f9190611b27565b60405180910390f35b61024061069b565b005b61024a6106c7565b6040516102579190611b51565b60405180910390f35b61027a60048036038101906102759190611b6c565b6106d1565b005b61029660048036038101906102919190611b99565b61078c565b6040516102a39190611b27565b60405180910390f35b6102b46107bb565b6040516102c19190611bfb565b60405180910390f35b6102e460048036038101906102df9190611b6c565b6107e1565b005b6102ee61089c565b6040516102fb9190611c32565b60405180910390f35b61031e60048036038101906103199190611acc565b6108a5565b60405161032b9190611b27565b60405180910390f35b61033c6108dc565b6040516103499190611b27565b60405180910390f35b61035a6108ef565b6040516103679190611bfb565b60405180910390f35b61038a60048036038101906103859190611d95565b610915565b005b6103946109b2565b6040516103a19190611bfb565b60405180910390f35b6103c460048036038101906103bf9190611b6c565b6109d8565b6040516103d19190611b51565b60405180910390f35b6103e2610a20565b005b6103ec610a34565b6040516103f99190611bfb565b60405180910390f35b61040a610a5e565b6040516104179190611b51565b60405180910390f35b61043a60048036038101906104359190611d95565b610a6e565b005b610444610b0b565b6040516104519190611a02565b60405180910390f35b610474600480360381019061046f9190611b6c565b610b9d565b005b610490600480360381019061048b9190611acc565b610c58565b60405161049d9190611b27565b60405180910390f35b6104c060048036038101906104bb9190611b6c565b610ccf565b005b6104dc60048036038101906104d79190611acc565b610d8a565b6040516104e99190611b27565b60405180910390f35b6104fa610dad565b6040516105079190611e3d565b60405180910390f35b610518610dd3565b6040516105259190611bfb565b60405180910390f35b61054860048036038101906105439190611e58565b610df9565b6040516105559190611b51565b60405180910390f35b61057860048036038101906105739190611b6c565b610e80565b005b610594600480360381019061058f9190611b6c565b610f03565b6040516105a19190611b27565b60405180910390f35b6105b2610f23565b6040516105bf9190611bfb565b60405180910390f35b6105d0610f49565b6040516105dd9190611bfb565b60405180910390f35b6060600380546105f590611ec7565b80601f016020809104026020016040519081016040528092919081815260200182805461062190611ec7565b801561066e5780601f106106435761010080835404028352916020019161066e565b820191906000526020600020905b81548152906001019060200180831161065157829003601f168201915b5050505050905090565b600080610683610f6f565b9050610690818585610f77565b600191505092915050565b6106a3611140565b6001600560146101000a81548160ff02191690831515021790555042600681905550565b6000600254905090565b6106d9611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073f90611f44565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610797610f6f565b90506107a48582856111be565b6107af85858561124a565b60019150509392505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107e9611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90611f44565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b6000806108b0610f6f565b90506108d18185856108c28589610df9565b6108cc9190611f93565b610f77565b600191505092915050565b600560149054906101000a900460ff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61091d611140565b60005b81518110156109ae576000600f600084848151811061094257610941611fc7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109a690611ff6565b915050610920565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a28611140565b610a32600061162c565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b204fce5e3e2502611000000081565b610a76611140565b60005b8151811015610b07576001600f6000848481518110610a9b57610a9a611fc7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610aff90611ff6565b915050610a79565b5050565b606060048054610b1a90611ec7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690611ec7565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b610ba5611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90611f44565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610c63610f6f565b90506000610c718286610df9565b905083811015610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad906120b0565b60405180910390fd5b610cc38286868403610f77565b60019250505092915050565b610cd7611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611f44565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d95610f6f565b9050610da281858561124a565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e88611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90612142565b60405180910390fd5b610f008161162c565b50565b600f6020528060005260406000206000915054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd906121d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90612266565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111339190611b51565b60405180910390a3505050565b611148610f6f565b73ffffffffffffffffffffffffffffffffffffffff16611166610a34565b73ffffffffffffffffffffffffffffffffffffffff16146111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b3906122d2565b60405180910390fd5b565b60006111ca8484610df9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112445781811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d9061233e565b60405180910390fd5b6112438484848403610f77565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906123aa565b60405180910390fd5b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90612416565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90612482565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114745750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611489576114848383836116f2565b611627565b600560149054906101000a900460ff166114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf906124ee565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806115815750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561161a5761012c6006546115969190611f93565b42101561160957600060646063836115ae919061250e565b6115b8919061257f565b9050600081836115c891906125b0565b90506115f785600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846116f2565b6116028585836116f2565b5050611615565b6116148383836116f2565b5b611626565b6116258383836116f2565b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890612656565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c7906126e8565b60405180910390fd5b6117db838383611968565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118589061277a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194f9190611b51565b60405180910390a361196284848461196d565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119ac578082015181840152602081019050611991565b60008484015250505050565b6000601f19601f8301169050919050565b60006119d482611972565b6119de818561197d565b93506119ee81856020860161198e565b6119f7816119b8565b840191505092915050565b60006020820190508181036000830152611a1c81846119c9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a6382611a38565b9050919050565b611a7381611a58565b8114611a7e57600080fd5b50565b600081359050611a9081611a6a565b92915050565b6000819050919050565b611aa981611a96565b8114611ab457600080fd5b50565b600081359050611ac681611aa0565b92915050565b60008060408385031215611ae357611ae2611a2e565b5b6000611af185828601611a81565b9250506020611b0285828601611ab7565b9150509250929050565b60008115159050919050565b611b2181611b0c565b82525050565b6000602082019050611b3c6000830184611b18565b92915050565b611b4b81611a96565b82525050565b6000602082019050611b666000830184611b42565b92915050565b600060208284031215611b8257611b81611a2e565b5b6000611b9084828501611a81565b91505092915050565b600080600060608486031215611bb257611bb1611a2e565b5b6000611bc086828701611a81565b9350506020611bd186828701611a81565b9250506040611be286828701611ab7565b9150509250925092565b611bf581611a58565b82525050565b6000602082019050611c106000830184611bec565b92915050565b600060ff82169050919050565b611c2c81611c16565b82525050565b6000602082019050611c476000830184611c23565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c8a826119b8565b810181811067ffffffffffffffff82111715611ca957611ca8611c52565b5b80604052505050565b6000611cbc611a24565b9050611cc88282611c81565b919050565b600067ffffffffffffffff821115611ce857611ce7611c52565b5b602082029050602081019050919050565b600080fd5b6000611d11611d0c84611ccd565b611cb2565b90508083825260208201905060208402830185811115611d3457611d33611cf9565b5b835b81811015611d5d5780611d498882611a81565b845260208401935050602081019050611d36565b5050509392505050565b600082601f830112611d7c57611d7b611c4d565b5b8135611d8c848260208601611cfe565b91505092915050565b600060208284031215611dab57611daa611a2e565b5b600082013567ffffffffffffffff811115611dc957611dc8611a33565b5b611dd584828501611d67565b91505092915050565b6000819050919050565b6000611e03611dfe611df984611a38565b611dde565b611a38565b9050919050565b6000611e1582611de8565b9050919050565b6000611e2782611e0a565b9050919050565b611e3781611e1c565b82525050565b6000602082019050611e526000830184611e2e565b92915050565b60008060408385031215611e6f57611e6e611a2e565b5b6000611e7d85828601611a81565b9250506020611e8e85828601611a81565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611edf57607f821691505b602082108103611ef257611ef1611e98565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611f2e600f8361197d565b9150611f3982611ef8565b602082019050919050565b60006020820190508181036000830152611f5d81611f21565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f9e82611a96565b9150611fa983611a96565b9250828201905080821115611fc157611fc0611f64565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061200182611a96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361203357612032611f64565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061209a60258361197d565b91506120a58261203e565b604082019050919050565b600060208201905081810360008301526120c98161208d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061212c60268361197d565b9150612137826120d0565b604082019050919050565b6000602082019050818103600083015261215b8161211f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121be60248361197d565b91506121c982612162565b604082019050919050565b600060208201905081810360008301526121ed816121b1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061225060228361197d565b915061225b826121f4565b604082019050919050565b6000602082019050818103600083015261227f81612243565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122bc60208361197d565b91506122c782612286565b602082019050919050565b600060208201905081810360008301526122eb816122af565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612328601d8361197d565b9150612333826122f2565b602082019050919050565b600060208201905081810360008301526123578161231b565b9050919050565b7f43616e6e6f742073656e642066726f6d207a65726f2061646472657373000000600082015250565b6000612394601d8361197d565b915061239f8261235e565b602082019050919050565b600060208201905081810360008301526123c381612387565b9050919050565b7f53656e646572206163636f756e7420697320626c6f636b656400000000000000600082015250565b600061240060198361197d565b915061240b826123ca565b602082019050919050565b6000602082019050818103600083015261242f816123f3565b9050919050565b7f526563697069656e74206163636f756e7420697320626c6f636b656400000000600082015250565b600061246c601c8361197d565b915061247782612436565b602082019050919050565b6000602082019050818103600083015261249b8161245f565b9050919050565b7f54726164696e67206973206e6f74206163746976617465640000000000000000600082015250565b60006124d860188361197d565b91506124e3826124a2565b602082019050919050565b60006020820190508181036000830152612507816124cb565b9050919050565b600061251982611a96565b915061252483611a96565b925082820261253281611a96565b9150828204841483151761254957612548611f64565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061258a82611a96565b915061259583611a96565b9250826125a5576125a4612550565b5b828204905092915050565b60006125bb82611a96565b91506125c683611a96565b92508282039050818111156125de576125dd611f64565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061264060258361197d565b915061264b826125e4565b604082019050919050565b6000602082019050818103600083015261266f81612633565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006126d260238361197d565b91506126dd82612676565b604082019050919050565b60006020820190508181036000830152612701816126c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061276460268361197d565b915061276f82612708565b604082019050919050565b6000602082019050818103600083015261279381612757565b905091905056fea2646970667358221220d6552f3621a7262d4c16e6a30943c9caacb2f7527d1f9d3e609882161e37185864736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000dee1aceccbfb1ef9b00da1c257bc24ae9fd5a020000000000000000000000006f2fbeb5806e1215d1f5d4e0517cfcfb09163cac000000000000000000000000c01f25805fafee696e8d5cc477960b964a003e910000000000000000000000005319dd6214db9b715a44ee0d0146d70f63840e72
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a9059cbb116100a2578063f2fde38b11610071578063f2fde38b1461055e578063f45bf3d21461057a578063fa46a530146105aa578063fd72e22a146105c8576101e5565b8063a9059cbb146104c2578063aa774afb146104f2578063d72b11bd14610510578063dd62ed3e1461052e576101e5565b806395d89b41116100de57806395d89b411461043c5780639f9c62481461045a578063a457c2d714610476578063a4bd5cf3146104a6576101e5565b8063715018a6146103da5780638da5cb5b146103e45780638ee2c4b81461040257806394e8b58114610420576101e5565b806330d5d18d1161018757806355d8d3b61161015657806355d8d3b6146103525780635852fad1146103705780635b3def411461038c57806370a08231146103aa576101e5565b806330d5d18d146102ca578063313ce567146102e657806339509351146103045780634c44a53814610334576101e5565b806318160ddd116101c357806318160ddd14610242578063199c27c51461026057806323b872dd1461027c5780632faf143d146102ac576101e5565b806306fdde03146101ea578063095ea7b3146102085780630bd05b6914610238575b600080fd5b6101f26105e6565b6040516101ff9190611a02565b60405180910390f35b610222600480360381019061021d9190611acc565b610678565b60405161022f9190611b27565b60405180910390f35b61024061069b565b005b61024a6106c7565b6040516102579190611b51565b60405180910390f35b61027a60048036038101906102759190611b6c565b6106d1565b005b61029660048036038101906102919190611b99565b61078c565b6040516102a39190611b27565b60405180910390f35b6102b46107bb565b6040516102c19190611bfb565b60405180910390f35b6102e460048036038101906102df9190611b6c565b6107e1565b005b6102ee61089c565b6040516102fb9190611c32565b60405180910390f35b61031e60048036038101906103199190611acc565b6108a5565b60405161032b9190611b27565b60405180910390f35b61033c6108dc565b6040516103499190611b27565b60405180910390f35b61035a6108ef565b6040516103679190611bfb565b60405180910390f35b61038a60048036038101906103859190611d95565b610915565b005b6103946109b2565b6040516103a19190611bfb565b60405180910390f35b6103c460048036038101906103bf9190611b6c565b6109d8565b6040516103d19190611b51565b60405180910390f35b6103e2610a20565b005b6103ec610a34565b6040516103f99190611bfb565b60405180910390f35b61040a610a5e565b6040516104179190611b51565b60405180910390f35b61043a60048036038101906104359190611d95565b610a6e565b005b610444610b0b565b6040516104519190611a02565b60405180910390f35b610474600480360381019061046f9190611b6c565b610b9d565b005b610490600480360381019061048b9190611acc565b610c58565b60405161049d9190611b27565b60405180910390f35b6104c060048036038101906104bb9190611b6c565b610ccf565b005b6104dc60048036038101906104d79190611acc565b610d8a565b6040516104e99190611b27565b60405180910390f35b6104fa610dad565b6040516105079190611e3d565b60405180910390f35b610518610dd3565b6040516105259190611bfb565b60405180910390f35b61054860048036038101906105439190611e58565b610df9565b6040516105559190611b51565b60405180910390f35b61057860048036038101906105739190611b6c565b610e80565b005b610594600480360381019061058f9190611b6c565b610f03565b6040516105a19190611b27565b60405180910390f35b6105b2610f23565b6040516105bf9190611bfb565b60405180910390f35b6105d0610f49565b6040516105dd9190611bfb565b60405180910390f35b6060600380546105f590611ec7565b80601f016020809104026020016040519081016040528092919081815260200182805461062190611ec7565b801561066e5780601f106106435761010080835404028352916020019161066e565b820191906000526020600020905b81548152906001019060200180831161065157829003601f168201915b5050505050905090565b600080610683610f6f565b9050610690818585610f77565b600191505092915050565b6106a3611140565b6001600560146101000a81548160ff02191690831515021790555042600681905550565b6000600254905090565b6106d9611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073f90611f44565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610797610f6f565b90506107a48582856111be565b6107af85858561124a565b60019150509392505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107e9611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90611f44565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b6000806108b0610f6f565b90506108d18185856108c28589610df9565b6108cc9190611f93565b610f77565b600191505092915050565b600560149054906101000a900460ff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61091d611140565b60005b81518110156109ae576000600f600084848151811061094257610941611fc7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109a690611ff6565b915050610920565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a28611140565b610a32600061162c565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b204fce5e3e2502611000000081565b610a76611140565b60005b8151811015610b07576001600f6000848481518110610a9b57610a9a611fc7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610aff90611ff6565b915050610a79565b5050565b606060048054610b1a90611ec7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690611ec7565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b610ba5611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90611f44565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610c63610f6f565b90506000610c718286610df9565b905083811015610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad906120b0565b60405180910390fd5b610cc38286868403610f77565b60019250505092915050565b610cd7611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611f44565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d95610f6f565b9050610da281858561124a565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e88611140565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90612142565b60405180910390fd5b610f008161162c565b50565b600f6020528060005260406000206000915054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd906121d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90612266565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111339190611b51565b60405180910390a3505050565b611148610f6f565b73ffffffffffffffffffffffffffffffffffffffff16611166610a34565b73ffffffffffffffffffffffffffffffffffffffff16146111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b3906122d2565b60405180910390fd5b565b60006111ca8484610df9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112445781811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d9061233e565b60405180910390fd5b6112438484848403610f77565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906123aa565b60405180910390fd5b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90612416565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90612482565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114745750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611489576114848383836116f2565b611627565b600560149054906101000a900460ff166114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf906124ee565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806115815750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561161a5761012c6006546115969190611f93565b42101561160957600060646063836115ae919061250e565b6115b8919061257f565b9050600081836115c891906125b0565b90506115f785600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846116f2565b6116028585836116f2565b5050611615565b6116148383836116f2565b5b611626565b6116258383836116f2565b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890612656565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c7906126e8565b60405180910390fd5b6117db838383611968565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118589061277a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194f9190611b51565b60405180910390a361196284848461196d565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119ac578082015181840152602081019050611991565b60008484015250505050565b6000601f19601f8301169050919050565b60006119d482611972565b6119de818561197d565b93506119ee81856020860161198e565b6119f7816119b8565b840191505092915050565b60006020820190508181036000830152611a1c81846119c9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a6382611a38565b9050919050565b611a7381611a58565b8114611a7e57600080fd5b50565b600081359050611a9081611a6a565b92915050565b6000819050919050565b611aa981611a96565b8114611ab457600080fd5b50565b600081359050611ac681611aa0565b92915050565b60008060408385031215611ae357611ae2611a2e565b5b6000611af185828601611a81565b9250506020611b0285828601611ab7565b9150509250929050565b60008115159050919050565b611b2181611b0c565b82525050565b6000602082019050611b3c6000830184611b18565b92915050565b611b4b81611a96565b82525050565b6000602082019050611b666000830184611b42565b92915050565b600060208284031215611b8257611b81611a2e565b5b6000611b9084828501611a81565b91505092915050565b600080600060608486031215611bb257611bb1611a2e565b5b6000611bc086828701611a81565b9350506020611bd186828701611a81565b9250506040611be286828701611ab7565b9150509250925092565b611bf581611a58565b82525050565b6000602082019050611c106000830184611bec565b92915050565b600060ff82169050919050565b611c2c81611c16565b82525050565b6000602082019050611c476000830184611c23565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c8a826119b8565b810181811067ffffffffffffffff82111715611ca957611ca8611c52565b5b80604052505050565b6000611cbc611a24565b9050611cc88282611c81565b919050565b600067ffffffffffffffff821115611ce857611ce7611c52565b5b602082029050602081019050919050565b600080fd5b6000611d11611d0c84611ccd565b611cb2565b90508083825260208201905060208402830185811115611d3457611d33611cf9565b5b835b81811015611d5d5780611d498882611a81565b845260208401935050602081019050611d36565b5050509392505050565b600082601f830112611d7c57611d7b611c4d565b5b8135611d8c848260208601611cfe565b91505092915050565b600060208284031215611dab57611daa611a2e565b5b600082013567ffffffffffffffff811115611dc957611dc8611a33565b5b611dd584828501611d67565b91505092915050565b6000819050919050565b6000611e03611dfe611df984611a38565b611dde565b611a38565b9050919050565b6000611e1582611de8565b9050919050565b6000611e2782611e0a565b9050919050565b611e3781611e1c565b82525050565b6000602082019050611e526000830184611e2e565b92915050565b60008060408385031215611e6f57611e6e611a2e565b5b6000611e7d85828601611a81565b9250506020611e8e85828601611a81565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611edf57607f821691505b602082108103611ef257611ef1611e98565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611f2e600f8361197d565b9150611f3982611ef8565b602082019050919050565b60006020820190508181036000830152611f5d81611f21565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f9e82611a96565b9150611fa983611a96565b9250828201905080821115611fc157611fc0611f64565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061200182611a96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361203357612032611f64565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061209a60258361197d565b91506120a58261203e565b604082019050919050565b600060208201905081810360008301526120c98161208d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061212c60268361197d565b9150612137826120d0565b604082019050919050565b6000602082019050818103600083015261215b8161211f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121be60248361197d565b91506121c982612162565b604082019050919050565b600060208201905081810360008301526121ed816121b1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061225060228361197d565b915061225b826121f4565b604082019050919050565b6000602082019050818103600083015261227f81612243565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122bc60208361197d565b91506122c782612286565b602082019050919050565b600060208201905081810360008301526122eb816122af565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612328601d8361197d565b9150612333826122f2565b602082019050919050565b600060208201905081810360008301526123578161231b565b9050919050565b7f43616e6e6f742073656e642066726f6d207a65726f2061646472657373000000600082015250565b6000612394601d8361197d565b915061239f8261235e565b602082019050919050565b600060208201905081810360008301526123c381612387565b9050919050565b7f53656e646572206163636f756e7420697320626c6f636b656400000000000000600082015250565b600061240060198361197d565b915061240b826123ca565b602082019050919050565b6000602082019050818103600083015261242f816123f3565b9050919050565b7f526563697069656e74206163636f756e7420697320626c6f636b656400000000600082015250565b600061246c601c8361197d565b915061247782612436565b602082019050919050565b6000602082019050818103600083015261249b8161245f565b9050919050565b7f54726164696e67206973206e6f74206163746976617465640000000000000000600082015250565b60006124d860188361197d565b91506124e3826124a2565b602082019050919050565b60006020820190508181036000830152612507816124cb565b9050919050565b600061251982611a96565b915061252483611a96565b925082820261253281611a96565b9150828204841483151761254957612548611f64565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061258a82611a96565b915061259583611a96565b9250826125a5576125a4612550565b5b828204905092915050565b60006125bb82611a96565b91506125c683611a96565b92508282039050818111156125de576125dd611f64565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061264060258361197d565b915061264b826125e4565b604082019050919050565b6000602082019050818103600083015261266f81612633565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006126d260238361197d565b91506126dd82612676565b604082019050919050565b60006020820190508181036000830152612701816126c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061276460268361197d565b915061276f82612708565b604082019050919050565b6000602082019050818103600083015261279381612757565b905091905056fea2646970667358221220d6552f3621a7262d4c16e6a30943c9caacb2f7527d1f9d3e609882161e37185864736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000dee1aceccbfb1ef9b00da1c257bc24ae9fd5a020000000000000000000000006f2fbeb5806e1215d1f5d4e0517cfcfb09163cac000000000000000000000000c01f25805fafee696e8d5cc477960b964a003e910000000000000000000000005319dd6214db9b715a44ee0d0146d70f63840e72
-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : wethAddress (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [2] : operationsAddress (address): 0x0Dee1ACECCBFB1eF9B00DA1c257bc24aE9FD5a02
Arg [3] : initialMarketingAddress (address): 0x6F2FBeb5806e1215d1f5d4E0517cfCFb09163cAC
Arg [4] : prolongedMarketingAddress (address): 0xc01F25805fafee696e8d5Cc477960b964a003e91
Arg [5] : reserveAddress (address): 0x5319dd6214dB9B715a44EE0D0146d70F63840E72
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [2] : 0000000000000000000000000dee1aceccbfb1ef9b00da1c257bc24ae9fd5a02
Arg [3] : 0000000000000000000000006f2fbeb5806e1215d1f5d4e0517cfcfb09163cac
Arg [4] : 000000000000000000000000c01f25805fafee696e8d5cc477960b964a003e91
Arg [5] : 0000000000000000000000005319dd6214db9b715a44ee0d0146d70f63840e72
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.