ERC-20
Privacy
Overview
Max Total Supply
9,800,527.066171265897713164 BMDA
Holders
500 (0.00%)
Market
Price
$0.01 @ 0.000004 ETH
Onchain Market Cap
$107,597.73
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bermuda
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "./UniswapV2Interfaces.sol"; contract Bermuda is ERC20Burnable, Ownable { //Variables //Immutable IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; //Public address public devWallet; uint256 public devTax; address public marketingWallet; uint256 public marketingTax; uint256 public burnTax; uint256 public holderLimit; uint256 public sellerLimit; mapping(address => bool) public botBlacklist; mapping(address => bool) public excludeFromTax; bool public tradingEnabled; bool public disableBotKiller; //Rudimentary bot protection, really nothing serious, despite the name. Any //half-decent bot will bypass this. Only here for legacy reasons. //Constructor constructor(address dev, address marketing, address router) ERC20("Bermuda", "BMDA") { devTax = 600; //6% (600/10000) marketingTax = 500; //5% (500/10000) burnTax = 100; //1% (100/10000) holderLimit = 200; //2% (200/10000) sellerLimit = 50; //0.5% (50/10000) tradingEnabled = false; disableBotKiller = false; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; devWallet = dev; marketingWallet = marketing; _mint(msg.sender, 10000000 ether); } //Internal Functions function _beforeTokenTransfer( address from, address to, uint256 /*amount*/ ) internal virtual override { require(!botBlacklist[from], "Blacklisted from."); require(!botBlacklist[to], "Blacklisted to."); } function swapToETH(address to, uint256 amount) internal { //Generate path address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), amount); //Swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, //Full slippage path, to, block.timestamp ); } function _transfer( address from, address to, uint256 amount ) internal virtual override { //Check if trading is disabled and we're trying to trade (or add/remove liquidity). if (!tradingEnabled && ( //Is Buy/Remove from == uniswapV2Pair || //Is Sell/Add to == uniswapV2Pair )) { //Bypassed only by owner, or from pair to router (removeLiquidity). if (from != owner() && to != owner() && !(from == uniswapV2Pair && to == address(uniswapV2Router))) { if (disableBotKiller) { revert("Trading disabled."); } else { emit Transfer(from, to, 0); return; } } } if( //Only if selling to our main pair. There is no case where transferring from the router to the pair, or from //the pair to itself, so we can leave those out of the exclusion. There is also no case where we transfer //directly to the router nor does the router use its own balance (except for removeLiquidity, //which we don't care about), so we can leave the router out of the "to" as well. to != uniswapV2Pair || //From exclusion from == address(this) || from == owner() || excludeFromTax[from] ) return super._transfer(from, to, amount); //Truncation could cause these to be zero but gas fees would make it undesirable. require(amount <= totalSupply() * sellerLimit / 10000, "Sell limit reached."); //Sell limit uint256 amountToDev = amount * devTax / 10000; uint256 amountToMarketing = amount * marketingTax / 10000; uint256 amountToBurn = amount * burnTax / 10000; super._transfer(from, address(this), amountToDev + amountToMarketing + amountToBurn); swapToETH(devWallet, amountToDev); swapToETH(marketingWallet, amountToMarketing); _burn(address(this), amountToBurn); uint256 amountToTransfer = amount - amountToDev - amountToMarketing - amountToBurn; return super._transfer(from, to, amountToTransfer); } function _afterTokenTransfer( address /*from*/, address to, uint256 /*amount*/ ) internal virtual override { require(to == uniswapV2Pair || to == address(this) || to == address(0) || to == owner() || excludeFromTax[to] || balanceOf(to) <= totalSupply() * holderLimit / 10000, "Holder limit reached."); //super._afterTokenTransfer(from, to, amount); } //User Functions function feelessAddLiquidity( uint amountBMDADesired, uint amountWETHDesired, uint amountBMDAMin, uint amountWETHMin, address to, uint deadline ) external returns (uint amountBMDA, uint amountWETH, uint liquidity) { //Be careful! As usual when adding liquidity, make sure the to address is correct! //NOTE: Calling this will reject if trading is disabled, even if you are the owner. //The owner already doesn't have any fees, so just call addLiquidity from the router directly. _transfer(msg.sender, address(this), amountBMDADesired); _approve(address(this), address(uniswapV2Router), amountBMDADesired); IERC20 WETH = IERC20(uniswapV2Router.WETH()); WETH.transferFrom(msg.sender, address(this), amountWETHDesired - amountWETH); WETH.approve(address(uniswapV2Router), amountWETHDesired); (amountBMDA, amountWETH, liquidity) = uniswapV2Router.addLiquidity(address(this), uniswapV2Router.WETH(), amountBMDADesired, amountWETHDesired, amountBMDAMin, amountWETHMin, to, deadline ); //Get rid of dust approval + send back dust. if (amountBMDADesired > amountBMDA) { _approve(address(this), address(uniswapV2Router), 0); _transfer(address(this), msg.sender, amountBMDADesired - amountBMDA); } if (amountWETHDesired > amountWETH) { WETH.approve(address(uniswapV2Router), 0); WETH.transfer(msg.sender, amountWETHDesired - amountWETH); } } function feelessAddLiquidityETH( uint amountBMDADesired, uint amountBMDAMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountBMDA, uint amountETH, uint liquidity) { //Be careful! As usual when adding liquidity, make sure the to address is correct! //NOTE: Calling this will reject if trading is disabled, even if you are the owner. //The owner already doesn't have any fees, so just call addLiquidityETH from the router directly. _transfer(msg.sender, address(this), amountBMDADesired); _approve(address(this), address(uniswapV2Router), amountBMDADesired); (amountBMDA, amountETH, liquidity) = uniswapV2Router.addLiquidityETH{value:msg.value}(address(this), amountBMDADesired, amountBMDAMin, amountETHMin, to, deadline); //Get rid of dust approval + send back dust. if (amountBMDADesired > amountBMDA) { _approve(address(this), address(uniswapV2Router), 0); _transfer(address(this), msg.sender, amountBMDADesired - amountBMDA); } if (msg.value > amountETH) { payable(msg.sender).transfer(msg.value - amountETH); } } //Admin Functions function enableTrading() external onlyOwner { tradingEnabled = true; //Can't disable trading. } function recoverLostTokens(IERC20 _token, uint256 _amount, address _to) external onlyOwner { //Careful! If you transfer an unknown token, it may be malicious. if(address(_token) == address(0)) payable(_to).transfer(_amount); //ETH fallback else _token.transfer(_to, _amount); } function setBotBlacklist(address bot, bool blacklist) external onlyOwner { botBlacklist[bot] = blacklist; } function setExcludeFromTax(address wallet, bool exclude) external onlyOwner { excludeFromTax[wallet] = exclude; } function setWallets(address dev, address marketing) external onlyOwner { devWallet = dev; marketingWallet = marketing; } function setPercentages(uint256 dev, uint256 marketing, uint256 burn, uint256 holder, uint256 seller) external onlyOwner { require(dev <= 1000 && marketing <= 1000, "Dev/Marketing tax amount must be lower than or equal to 10%."); require(burn <= 500, "Burn tax amount must be lower than or equal to 5%."); require(holder >= 1 && holder <= 1000 && seller >= 1 && seller <= 1000, "Holder/Seller limit must be lower than or equal to 10% and greater than or equal 0.01%."); devTax = dev; marketingTax = marketing; burnTax = burn; holderLimit = holder; sellerLimit = seller; } function setDisableBotKiller(bool disabled) external onlyOwner { disableBotKiller = disabled; } //Receive function for feelessAddLiquidityETH receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using 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.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 pragma solidity ^0.8.9; 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; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns(string memory); function symbol() external pure returns(string memory); function decimals() external pure returns(uint8); function totalSupply() external view returns(uint); function balanceOf(address owner) external view returns(uint); function allowance(address owner, address spender) external view returns(uint); function approve(address spender, uint value) external returns(bool); function transfer(address to, uint value) external returns(bool); function transferFrom(address from, address to, uint value) external returns(bool); function DOMAIN_SEPARATOR() external view returns(bytes32); function PERMIT_TYPEHASH() external pure returns(bytes32); function nonces(address owner) external view returns(uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns(uint); function factory() external view returns(address); function token0() external view returns(address); function token1() external view returns(address); function getReserves() external view returns(uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns(uint); function price1CumulativeLast() external view returns(uint); function kLast() external view returns(uint); function mint(address to) external returns(uint liquidity); function burn(address to) external returns(uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } 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); } 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 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 (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _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; _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; } _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); }
{ "optimizer": { "enabled": true, "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":"dev","type":"address"},{"internalType":"address","name":"marketing","type":"address"},{"internalType":"address","name":"router","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":[{"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":"","type":"address"}],"name":"botBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"burnTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"devTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableBotKiller","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludeFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountBMDADesired","type":"uint256"},{"internalType":"uint256","name":"amountWETHDesired","type":"uint256"},{"internalType":"uint256","name":"amountBMDAMin","type":"uint256"},{"internalType":"uint256","name":"amountWETHMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"feelessAddLiquidity","outputs":[{"internalType":"uint256","name":"amountBMDA","type":"uint256"},{"internalType":"uint256","name":"amountWETH","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountBMDADesired","type":"uint256"},{"internalType":"uint256","name":"amountBMDAMin","type":"uint256"},{"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"feelessAddLiquidityETH","outputs":[{"internalType":"uint256","name":"amountBMDA","type":"uint256"},{"internalType":"uint256","name":"amountETH","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"holderLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"recoverLostTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellerLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"blacklist","type":"bool"}],"name":"setBotBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"disabled","type":"bool"}],"name":"setDisableBotKiller","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"setExcludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"burn","type":"uint256"},{"internalType":"uint256","name":"holder","type":"uint256"},{"internalType":"uint256","name":"seller","type":"uint256"}],"name":"setPercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dev","type":"address"},{"internalType":"address","name":"marketing","type":"address"}],"name":"setWallets","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":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162002dc438038062002dc48339810160408190526200003491620006af565b60408051808201825260078152664265726d75646160c81b602080830191825283518085019094526004845263424d444160e01b9084015281519192916200007f91600391620005ec565b50805162000095906004906020840190620005ec565b505050620000b2620000ac620002bb60201b60201c565b620002bf565b6102586007556101f46009556064600a5560c8600b556032600c55600f805461ffff191690556040805163c45a015560e01b8152905182916001600160a01b0383169163c45a015591600480820192602092909190829003018186803b1580156200011c57600080fd5b505afa15801562000131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001579190620006f9565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a057600080fd5b505afa158015620001b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001db9190620006f9565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200022457600080fd5b505af115801562000239573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025f9190620006f9565b6001600160a01b0390811660a052818116608052600680546001600160a01b03199081168784161790915560088054909116918516919091179055620002b1336a084595161401484a00000062000311565b50505050620007d1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200036d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200037b6000838362000416565b80600260008282546200038f919062000734565b90915550506001600160a01b03821660009081526020819052604081208054839290620003be90849062000734565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36200041260008383620004d7565b5050565b6001600160a01b0383166000908152600d602052604090205460ff1615620004755760405162461bcd60e51b8152602060048201526011602482015270213630b1b5b634b9ba32b210333937b69760791b604482015260640162000364565b6001600160a01b0382166000908152600d602052604090205460ff1615620004d25760405162461bcd60e51b815260206004820152600f60248201526e213630b1b5b634b9ba32b2103a379760891b604482015260640162000364565b505050565b60a0516001600160a01b0316826001600160a01b031614806200050257506001600160a01b03821630145b806200051557506001600160a01b038216155b806200052e57506005546001600160a01b038381169116145b806200055257506001600160a01b0382166000908152600e602052604090205460ff165b806200059e5750600b54612710906200056a60025490565b6200057691906200074f565b62000582919062000771565b6001600160a01b03831660009081526020819052604090205411155b620004d25760405162461bcd60e51b815260206004820152601560248201527f486f6c646572206c696d697420726561636865642e0000000000000000000000604482015260640162000364565b828054620005fa9062000794565b90600052602060002090601f0160209004810192826200061e576000855562000669565b82601f106200063957805160ff191683800117855562000669565b8280016001018555821562000669579182015b82811115620006695782518255916020019190600101906200064c565b50620006779291506200067b565b5090565b5b808211156200067757600081556001016200067c565b80516001600160a01b0381168114620006aa57600080fd5b919050565b600080600060608486031215620006c557600080fd5b620006d08462000692565b9250620006e06020850162000692565b9150620006f06040850162000692565b90509250925092565b6000602082840312156200070c57600080fd5b620007178262000692565b9392505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156200074a576200074a6200071e565b500190565b60008160001904831182151516156200076c576200076c6200071e565b500290565b6000826200078f57634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680620007a957607f821691505b60208210811415620007cb57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516125486200087c6000396000818161044701528181611580015281816115bb01528181611629015281816117340152611f850152600081816102d2015281816108d0015281816108f901528181610a4401528181610ad201528181610b0201528181610c5301528181610cac015281816110160152818161107c0152818161110f0152818161166501528181611d5b01528181611e230152611e5f01526125486000f3fe6080604052600436106102295760003560e01c8063665c6de911610123578063949735e6116100ab578063cfa45d401161006f578063cfa45d4014610696578063d3f6a157146106b5578063dd62ed3e146106d5578063e7697781146106f5578063f2fde38b1461071557600080fd5b8063949735e61461061857806395d89b411461062b5780639811572c14610640578063a457c2d714610656578063a9059cbb1461067657600080fd5b806379cc6790116100f257806379cc67901461058557806383e06ead146105a55780638a8c523c146105c55780638da5cb5b146105da5780638ea5220f146105f857600080fd5b8063665c6de91461050457806370a082311461051a578063715018a61461055057806375f0a8741461056557600080fd5b806337c9be87116101b157806349bd5a5e1161017557806349bd5a5e146104355780634ada218b1461046957806360d1259e1461048357806362dd7132146104b357806363be4153146104ee57600080fd5b806337c9be871461039357806339509351146103b557806339fb86c5146103d557806342966c68146103f557806349b65c781461041557600080fd5b806318160ddd116101f857806318160ddd1461030c5780631d2cb02d1461032b5780631d4eaead1461034157806323b872dd14610357578063313ce5671461037757600080fd5b806306fdde03146102355780630867130014610260578063095ea7b3146102a05780631694505e146102c057600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a610735565b60405161025791906120a1565b60405180910390f35b34801561026c57600080fd5b5061029061027b36600461210b565b600d6020526000908152604090205460ff1681565b6040519015158152602001610257565b3480156102ac57600080fd5b506102906102bb36600461212f565b6107c7565b3480156102cc57600080fd5b506102f47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610257565b34801561031857600080fd5b506002545b604051908152602001610257565b34801561033757600080fd5b5061031d60095481565b34801561034d57600080fd5b5061031d600a5481565b34801561036357600080fd5b5061029061037236600461215b565b6107df565b34801561038357600080fd5b5060405160128152602001610257565b34801561039f57600080fd5b506103b36103ae3660046121aa565b610803565b005b3480156103c157600080fd5b506102906103d036600461212f565b610836565b3480156103e157600080fd5b506103b36103f03660046121aa565b610858565b34801561040157600080fd5b506103b36104103660046121e3565b61088b565b34801561042157600080fd5b506103b36104303660046121fc565b610898565b34801561044157600080fd5b506102f47f000000000000000000000000000000000000000000000000000000000000000081565b34801561047557600080fd5b50600f546102909060ff1681565b34801561048f57600080fd5b5061029061049e36600461210b565b600e6020526000908152604090205460ff1681565b3480156104bf57600080fd5b506104d36104ce366004612219565b6108ba565b60408051938452602084019290925290820152606001610257565b3480156104fa57600080fd5b5061031d600c5481565b34801561051057600080fd5b5061031d60075481565b34801561052657600080fd5b5061031d61053536600461210b565b6001600160a01b031660009081526020819052604090205490565b34801561055c57600080fd5b506103b3610ddf565b34801561057157600080fd5b506008546102f4906001600160a01b031681565b34801561059157600080fd5b506103b36105a036600461212f565b610df3565b3480156105b157600080fd5b506103b36105c036600461226e565b610e0c565b3480156105d157600080fd5b506103b3610fe9565b3480156105e657600080fd5b506005546001600160a01b03166102f4565b34801561060457600080fd5b506006546102f4906001600160a01b031681565b6104d36106263660046122a9565b611000565b34801561063757600080fd5b5061024a61118f565b34801561064c57600080fd5b5061031d600b5481565b34801561066257600080fd5b5061029061067136600461212f565b61119e565b34801561068257600080fd5b5061029061069136600461212f565b611219565b3480156106a257600080fd5b50600f5461029090610100900460ff1681565b3480156106c157600080fd5b506103b36106d03660046122f2565b611227565b3480156106e157600080fd5b5061031d6106f03660046122f2565b61125d565b34801561070157600080fd5b506103b3610710366004612320565b611288565b34801561072157600080fd5b506103b361073036600461210b565b611361565b60606003805461074490612362565b80601f016020809104026020016040519081016040528092919081815260200182805461077090612362565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b6000336107d58185856113d7565b5060019392505050565b6000336107ed8582856114fc565b6107f8858585611570565b506001949350505050565b61080b611918565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6000336107d5818585610849838361125d565b61085391906123b3565b6113d7565b610860611918565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6108953382611972565b50565b6108a0611918565b600f80549115156101000261ff0019909216919091179055565b60008060006108ca33308b611570565b6108f5307f00000000000000000000000000000000000000000000000000000000000000008b6113d7565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561095057600080fd5b505afa158015610964573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098891906123cb565b90506001600160a01b0381166323b872dd33306109a5878e6123e8565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156109f457600080fd5b505af1158015610a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2c91906123ff565b5060405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018b905282169063095ea7b390604401602060405180830381600087803b158015610a9757600080fd5b505af1158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf91906123ff565b507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e8e33700307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5957600080fd5b505afa158015610b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9191906123cb565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529082166024820152604481018e9052606481018d9052608481018c905260a481018b905290891660c482015260e4810188905261010401606060405180830381600087803b158015610c0657600080fd5b505af1158015610c1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3e919061241c565b91955093509150838a1115610c8d57610c79307f000000000000000000000000000000000000000000000000000000000000000060006113d7565b610c8d3033610c88878e6123e8565b611570565b82891115610dd25760405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526000602483015282169063095ea7b390604401602060405180830381600087803b158015610cff57600080fd5b505af1158015610d13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3791906123ff565b506001600160a01b03811663a9059cbb33610d52868d6123e8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610d9857600080fd5b505af1158015610dac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd091906123ff565b505b5096509650969350505050565b610de7611918565b610df16000611ad3565b565b610dfe8233836114fc565b610e088282611972565b5050565b610e14611918565b6103e88511158015610e2857506103e88411155b610e9f5760405162461bcd60e51b815260206004820152603c60248201527f4465762f4d61726b6574696e672074617820616d6f756e74206d75737420626560448201527f206c6f776572207468616e206f7220657175616c20746f203130252e0000000060648201526084015b60405180910390fd5b6101f4831115610f0c5760405162461bcd60e51b815260206004820152603260248201527f4275726e2074617820616d6f756e74206d757374206265206c6f77657220746860448201527130b71037b91032b8bab0b6103a37901a929760711b6064820152608401610e96565b60018210158015610f1f57506103e88211155b8015610f2c575060018110155b8015610f3a57506103e88111155b610fd25760405162461bcd60e51b815260206004820152605760248201527f486f6c6465722f53656c6c6572206c696d6974206d757374206265206c6f776560448201527f72207468616e206f7220657175616c20746f2031302520616e6420677265617460648201527f6572207468616e206f7220657175616c20302e3031252e000000000000000000608482015260a401610e96565b600794909455600992909255600a55600b55600c55565b610ff1611918565b600f805460ff19166001179055565b600080600061101033308a611570565b61103b307f00000000000000000000000000000000000000000000000000000000000000008a6113d7565b60405163f305d71960e01b81523060048201526024810189905260448101889052606481018790526001600160a01b03868116608483015260a482018690527f0000000000000000000000000000000000000000000000000000000000000000169063f305d71990349060c4016060604051808303818588803b1580156110c157600080fd5b505af11580156110d5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110fa919061241c565b919450925090508288111561114457611135307f000000000000000000000000000000000000000000000000000000000000000060006113d7565b6111443033610c88868c6123e8565b8134111561118457336108fc61115a84346123e8565b6040518115909202916000818181858888f19350505050158015611182573d6000803e3d6000fd5b505b955095509592505050565b60606004805461074490612362565b600033816111ac828661125d565b90508381101561120c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e96565b6107f882868684036113d7565b6000336107d5818585611570565b61122f611918565b600680546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611290611918565b6001600160a01b0383166112da576040516001600160a01b0382169083156108fc029084906000818181858888f193505050501580156112d4573d6000803e3d6000fd5b50505050565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb90604401602060405180830381600087803b15801561132457600080fd5b505af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d491906123ff565b505050565b611369611918565b6001600160a01b0381166113ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e96565b61089581611ad3565b6001600160a01b0383166114395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e96565b6001600160a01b03821661149a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e96565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000611508848461125d565b905060001981146112d457818110156115635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e96565b6112d484848484036113d7565b600f5460ff161580156115ef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614806115ef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b15611732576005546001600160a01b0384811691161480159061162057506005546001600160a01b03838116911614155b801561169b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561169957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b155b1561173257600f54610100900460ff16156116ec5760405162461bcd60e51b81526020600482015260116024820152702a3930b234b733903234b9b0b13632b21760791b6044820152606401610e96565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60006040516114ef91815260200190565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614158061177b57506001600160a01b03831630145b8061179357506005546001600160a01b038481169116145b806117b657506001600160a01b0383166000908152600e602052604090205460ff165b156117c65761135c838383611b25565b612710600c546117d560025490565b6117df919061244a565b6117e99190612469565b81111561182e5760405162461bcd60e51b815260206004820152601360248201527229b2b636103634b6b4ba103932b0b1b432b21760691b6044820152606401610e96565b600061271060075483611841919061244a565b61184b9190612469565b9050600061271060095484611860919061244a565b61186a9190612469565b90506000612710600a548561187f919061244a565b6118899190612469565b90506118aa86308361189b86886123b3565b6118a591906123b3565b611b25565b6006546118c0906001600160a01b031684611d04565b6008546118d6906001600160a01b031683611d04565b6118e03082611972565b600081836118ee86886123e8565b6118f891906123e8565b61190291906123e8565b905061190f878783611b25565b50505050505050565b6005546001600160a01b03163314610df15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e96565b6001600160a01b0382166119d25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e96565b6119de82600083611ecb565b6001600160a01b03821660009081526020819052604090205481811015611a525760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610e96565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611a819084906123e8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361135c83600084611f83565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611b895760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e96565b6001600160a01b038216611beb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e96565b611bf6838383611ecb565b6001600160a01b03831660009081526020819052604090205481811015611c6e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e96565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ca59084906123b3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cf191815260200190565b60405180910390a36112d4848484611f83565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d3957611d3961248b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611db257600080fd5b505afa158015611dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dea91906123cb565b81600181518110611dfd57611dfd61248b565b60200260200101906001600160a01b031690816001600160a01b031681525050611e48307f0000000000000000000000000000000000000000000000000000000000000000846113d7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e9d9085906000908690899042906004016124a1565b600060405180830381600087803b158015611eb757600080fd5b505af115801561190f573d6000803e3d6000fd5b6001600160a01b0383166000908152600d602052604090205460ff1615611f285760405162461bcd60e51b8152602060048201526011602482015270213630b1b5b634b9ba32b210333937b69760791b6044820152606401610e96565b6001600160a01b0382166000908152600d602052604090205460ff161561135c5760405162461bcd60e51b815260206004820152600f60248201526e213630b1b5b634b9ba32b2103a379760891b6044820152606401610e96565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480611fcb57506001600160a01b03821630145b80611fdd57506001600160a01b038216155b80611ff557506005546001600160a01b038381169116145b8061201857506001600160a01b0382166000908152600e602052604090205460ff165b8061205d5750612710600b5461202d60025490565b612037919061244a565b6120419190612469565b6001600160a01b03831660009081526020819052604090205411155b61135c5760405162461bcd60e51b81526020600482015260156024820152742437b63232b9103634b6b4ba103932b0b1b432b21760591b6044820152606401610e96565b600060208083528351808285015260005b818110156120ce578581018301518582016040015282016120b2565b818111156120e0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461089557600080fd5b60006020828403121561211d57600080fd5b8135612128816120f6565b9392505050565b6000806040838503121561214257600080fd5b823561214d816120f6565b946020939093013593505050565b60008060006060848603121561217057600080fd5b833561217b816120f6565b9250602084013561218b816120f6565b929592945050506040919091013590565b801515811461089557600080fd5b600080604083850312156121bd57600080fd5b82356121c8816120f6565b915060208301356121d88161219c565b809150509250929050565b6000602082840312156121f557600080fd5b5035919050565b60006020828403121561220e57600080fd5b81356121288161219c565b60008060008060008060c0878903121561223257600080fd5b863595506020870135945060408701359350606087013592506080870135612259816120f6565b8092505060a087013590509295509295509295565b600080600080600060a0868803121561228657600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080600080600060a086880312156122c157600080fd5b85359450602086013593506040860135925060608601356122e1816120f6565b949793965091946080013592915050565b6000806040838503121561230557600080fd5b8235612310816120f6565b915060208301356121d8816120f6565b60008060006060848603121561233557600080fd5b8335612340816120f6565b9250602084013591506040840135612357816120f6565b809150509250925092565b600181811c9082168061237657607f821691505b6020821081141561239757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156123c6576123c661239d565b500190565b6000602082840312156123dd57600080fd5b8151612128816120f6565b6000828210156123fa576123fa61239d565b500390565b60006020828403121561241157600080fd5b81516121288161219c565b60008060006060848603121561243157600080fd5b8351925060208401519150604084015190509250925092565b60008160001904831182151516156124645761246461239d565b500290565b60008261248657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124f15784516001600160a01b0316835293830193918301916001016124cc565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d5c3b8b6ab4078968fd7052279c4eab0065f8ab3efeb51b49b4ae9962077527664736f6c63430008090033000000000000000000000000f38afd88614f15baafc96e9462944592b0d4b0cb0000000000000000000000002811fa3c09dce9a377096e8709f2ed1af4ffbfdd0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106102295760003560e01c8063665c6de911610123578063949735e6116100ab578063cfa45d401161006f578063cfa45d4014610696578063d3f6a157146106b5578063dd62ed3e146106d5578063e7697781146106f5578063f2fde38b1461071557600080fd5b8063949735e61461061857806395d89b411461062b5780639811572c14610640578063a457c2d714610656578063a9059cbb1461067657600080fd5b806379cc6790116100f257806379cc67901461058557806383e06ead146105a55780638a8c523c146105c55780638da5cb5b146105da5780638ea5220f146105f857600080fd5b8063665c6de91461050457806370a082311461051a578063715018a61461055057806375f0a8741461056557600080fd5b806337c9be87116101b157806349bd5a5e1161017557806349bd5a5e146104355780634ada218b1461046957806360d1259e1461048357806362dd7132146104b357806363be4153146104ee57600080fd5b806337c9be871461039357806339509351146103b557806339fb86c5146103d557806342966c68146103f557806349b65c781461041557600080fd5b806318160ddd116101f857806318160ddd1461030c5780631d2cb02d1461032b5780631d4eaead1461034157806323b872dd14610357578063313ce5671461037757600080fd5b806306fdde03146102355780630867130014610260578063095ea7b3146102a05780631694505e146102c057600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a610735565b60405161025791906120a1565b60405180910390f35b34801561026c57600080fd5b5061029061027b36600461210b565b600d6020526000908152604090205460ff1681565b6040519015158152602001610257565b3480156102ac57600080fd5b506102906102bb36600461212f565b6107c7565b3480156102cc57600080fd5b506102f47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610257565b34801561031857600080fd5b506002545b604051908152602001610257565b34801561033757600080fd5b5061031d60095481565b34801561034d57600080fd5b5061031d600a5481565b34801561036357600080fd5b5061029061037236600461215b565b6107df565b34801561038357600080fd5b5060405160128152602001610257565b34801561039f57600080fd5b506103b36103ae3660046121aa565b610803565b005b3480156103c157600080fd5b506102906103d036600461212f565b610836565b3480156103e157600080fd5b506103b36103f03660046121aa565b610858565b34801561040157600080fd5b506103b36104103660046121e3565b61088b565b34801561042157600080fd5b506103b36104303660046121fc565b610898565b34801561044157600080fd5b506102f47f00000000000000000000000043b82c90ebb869c4687105863b8881499a412e6c81565b34801561047557600080fd5b50600f546102909060ff1681565b34801561048f57600080fd5b5061029061049e36600461210b565b600e6020526000908152604090205460ff1681565b3480156104bf57600080fd5b506104d36104ce366004612219565b6108ba565b60408051938452602084019290925290820152606001610257565b3480156104fa57600080fd5b5061031d600c5481565b34801561051057600080fd5b5061031d60075481565b34801561052657600080fd5b5061031d61053536600461210b565b6001600160a01b031660009081526020819052604090205490565b34801561055c57600080fd5b506103b3610ddf565b34801561057157600080fd5b506008546102f4906001600160a01b031681565b34801561059157600080fd5b506103b36105a036600461212f565b610df3565b3480156105b157600080fd5b506103b36105c036600461226e565b610e0c565b3480156105d157600080fd5b506103b3610fe9565b3480156105e657600080fd5b506005546001600160a01b03166102f4565b34801561060457600080fd5b506006546102f4906001600160a01b031681565b6104d36106263660046122a9565b611000565b34801561063757600080fd5b5061024a61118f565b34801561064c57600080fd5b5061031d600b5481565b34801561066257600080fd5b5061029061067136600461212f565b61119e565b34801561068257600080fd5b5061029061069136600461212f565b611219565b3480156106a257600080fd5b50600f5461029090610100900460ff1681565b3480156106c157600080fd5b506103b36106d03660046122f2565b611227565b3480156106e157600080fd5b5061031d6106f03660046122f2565b61125d565b34801561070157600080fd5b506103b3610710366004612320565b611288565b34801561072157600080fd5b506103b361073036600461210b565b611361565b60606003805461074490612362565b80601f016020809104026020016040519081016040528092919081815260200182805461077090612362565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b6000336107d58185856113d7565b5060019392505050565b6000336107ed8582856114fc565b6107f8858585611570565b506001949350505050565b61080b611918565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6000336107d5818585610849838361125d565b61085391906123b3565b6113d7565b610860611918565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6108953382611972565b50565b6108a0611918565b600f80549115156101000261ff0019909216919091179055565b60008060006108ca33308b611570565b6108f5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8b6113d7565b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561095057600080fd5b505afa158015610964573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098891906123cb565b90506001600160a01b0381166323b872dd33306109a5878e6123e8565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156109f457600080fd5b505af1158015610a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2c91906123ff565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81166004830152602482018b905282169063095ea7b390604401602060405180830381600087803b158015610a9757600080fd5b505af1158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf91906123ff565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663e8e33700307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5957600080fd5b505afa158015610b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9191906123cb565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529082166024820152604481018e9052606481018d9052608481018c905260a481018b905290891660c482015260e4810188905261010401606060405180830381600087803b158015610c0657600080fd5b505af1158015610c1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3e919061241c565b91955093509150838a1115610c8d57610c79307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60006113d7565b610c8d3033610c88878e6123e8565b611570565b82891115610dd25760405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301526000602483015282169063095ea7b390604401602060405180830381600087803b158015610cff57600080fd5b505af1158015610d13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3791906123ff565b506001600160a01b03811663a9059cbb33610d52868d6123e8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610d9857600080fd5b505af1158015610dac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd091906123ff565b505b5096509650969350505050565b610de7611918565b610df16000611ad3565b565b610dfe8233836114fc565b610e088282611972565b5050565b610e14611918565b6103e88511158015610e2857506103e88411155b610e9f5760405162461bcd60e51b815260206004820152603c60248201527f4465762f4d61726b6574696e672074617820616d6f756e74206d75737420626560448201527f206c6f776572207468616e206f7220657175616c20746f203130252e0000000060648201526084015b60405180910390fd5b6101f4831115610f0c5760405162461bcd60e51b815260206004820152603260248201527f4275726e2074617820616d6f756e74206d757374206265206c6f77657220746860448201527130b71037b91032b8bab0b6103a37901a929760711b6064820152608401610e96565b60018210158015610f1f57506103e88211155b8015610f2c575060018110155b8015610f3a57506103e88111155b610fd25760405162461bcd60e51b815260206004820152605760248201527f486f6c6465722f53656c6c6572206c696d6974206d757374206265206c6f776560448201527f72207468616e206f7220657175616c20746f2031302520616e6420677265617460648201527f6572207468616e206f7220657175616c20302e3031252e000000000000000000608482015260a401610e96565b600794909455600992909255600a55600b55600c55565b610ff1611918565b600f805460ff19166001179055565b600080600061101033308a611570565b61103b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8a6113d7565b60405163f305d71960e01b81523060048201526024810189905260448101889052606481018790526001600160a01b03868116608483015260a482018690527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d71990349060c4016060604051808303818588803b1580156110c157600080fd5b505af11580156110d5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110fa919061241c565b919450925090508288111561114457611135307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60006113d7565b6111443033610c88868c6123e8565b8134111561118457336108fc61115a84346123e8565b6040518115909202916000818181858888f19350505050158015611182573d6000803e3d6000fd5b505b955095509592505050565b60606004805461074490612362565b600033816111ac828661125d565b90508381101561120c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e96565b6107f882868684036113d7565b6000336107d5818585611570565b61122f611918565b600680546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611290611918565b6001600160a01b0383166112da576040516001600160a01b0382169083156108fc029084906000818181858888f193505050501580156112d4573d6000803e3d6000fd5b50505050565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb90604401602060405180830381600087803b15801561132457600080fd5b505af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d491906123ff565b505050565b611369611918565b6001600160a01b0381166113ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e96565b61089581611ad3565b6001600160a01b0383166114395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e96565b6001600160a01b03821661149a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e96565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000611508848461125d565b905060001981146112d457818110156115635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e96565b6112d484848484036113d7565b600f5460ff161580156115ef57507f00000000000000000000000043b82c90ebb869c4687105863b8881499a412e6c6001600160a01b0316836001600160a01b031614806115ef57507f00000000000000000000000043b82c90ebb869c4687105863b8881499a412e6c6001600160a01b0316826001600160a01b0316145b15611732576005546001600160a01b0384811691161480159061162057506005546001600160a01b03838116911614155b801561169b57507f00000000000000000000000043b82c90ebb869c4687105863b8881499a412e6c6001600160a01b0316836001600160a01b031614801561169957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b0316145b155b1561173257600f54610100900460ff16156116ec5760405162461bcd60e51b81526020600482015260116024820152702a3930b234b733903234b9b0b13632b21760791b6044820152606401610e96565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60006040516114ef91815260200190565b7f00000000000000000000000043b82c90ebb869c4687105863b8881499a412e6c6001600160a01b0316826001600160a01b031614158061177b57506001600160a01b03831630145b8061179357506005546001600160a01b038481169116145b806117b657506001600160a01b0383166000908152600e602052604090205460ff165b156117c65761135c838383611b25565b612710600c546117d560025490565b6117df919061244a565b6117e99190612469565b81111561182e5760405162461bcd60e51b815260206004820152601360248201527229b2b636103634b6b4ba103932b0b1b432b21760691b6044820152606401610e96565b600061271060075483611841919061244a565b61184b9190612469565b9050600061271060095484611860919061244a565b61186a9190612469565b90506000612710600a548561187f919061244a565b6118899190612469565b90506118aa86308361189b86886123b3565b6118a591906123b3565b611b25565b6006546118c0906001600160a01b031684611d04565b6008546118d6906001600160a01b031683611d04565b6118e03082611972565b600081836118ee86886123e8565b6118f891906123e8565b61190291906123e8565b905061190f878783611b25565b50505050505050565b6005546001600160a01b03163314610df15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e96565b6001600160a01b0382166119d25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e96565b6119de82600083611ecb565b6001600160a01b03821660009081526020819052604090205481811015611a525760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610e96565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611a819084906123e8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361135c83600084611f83565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611b895760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e96565b6001600160a01b038216611beb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e96565b611bf6838383611ecb565b6001600160a01b03831660009081526020819052604090205481811015611c6e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e96565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ca59084906123b3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cf191815260200190565b60405180910390a36112d4848484611f83565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d3957611d3961248b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611db257600080fd5b505afa158015611dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dea91906123cb565b81600181518110611dfd57611dfd61248b565b60200260200101906001600160a01b031690816001600160a01b031681525050611e48307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113d7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e9d9085906000908690899042906004016124a1565b600060405180830381600087803b158015611eb757600080fd5b505af115801561190f573d6000803e3d6000fd5b6001600160a01b0383166000908152600d602052604090205460ff1615611f285760405162461bcd60e51b8152602060048201526011602482015270213630b1b5b634b9ba32b210333937b69760791b6044820152606401610e96565b6001600160a01b0382166000908152600d602052604090205460ff161561135c5760405162461bcd60e51b815260206004820152600f60248201526e213630b1b5b634b9ba32b2103a379760891b6044820152606401610e96565b7f00000000000000000000000043b82c90ebb869c4687105863b8881499a412e6c6001600160a01b0316826001600160a01b03161480611fcb57506001600160a01b03821630145b80611fdd57506001600160a01b038216155b80611ff557506005546001600160a01b038381169116145b8061201857506001600160a01b0382166000908152600e602052604090205460ff165b8061205d5750612710600b5461202d60025490565b612037919061244a565b6120419190612469565b6001600160a01b03831660009081526020819052604090205411155b61135c5760405162461bcd60e51b81526020600482015260156024820152742437b63232b9103634b6b4ba103932b0b1b432b21760591b6044820152606401610e96565b600060208083528351808285015260005b818110156120ce578581018301518582016040015282016120b2565b818111156120e0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461089557600080fd5b60006020828403121561211d57600080fd5b8135612128816120f6565b9392505050565b6000806040838503121561214257600080fd5b823561214d816120f6565b946020939093013593505050565b60008060006060848603121561217057600080fd5b833561217b816120f6565b9250602084013561218b816120f6565b929592945050506040919091013590565b801515811461089557600080fd5b600080604083850312156121bd57600080fd5b82356121c8816120f6565b915060208301356121d88161219c565b809150509250929050565b6000602082840312156121f557600080fd5b5035919050565b60006020828403121561220e57600080fd5b81356121288161219c565b60008060008060008060c0878903121561223257600080fd5b863595506020870135945060408701359350606087013592506080870135612259816120f6565b8092505060a087013590509295509295509295565b600080600080600060a0868803121561228657600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080600080600060a086880312156122c157600080fd5b85359450602086013593506040860135925060608601356122e1816120f6565b949793965091946080013592915050565b6000806040838503121561230557600080fd5b8235612310816120f6565b915060208301356121d8816120f6565b60008060006060848603121561233557600080fd5b8335612340816120f6565b9250602084013591506040840135612357816120f6565b809150509250925092565b600181811c9082168061237657607f821691505b6020821081141561239757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156123c6576123c661239d565b500190565b6000602082840312156123dd57600080fd5b8151612128816120f6565b6000828210156123fa576123fa61239d565b500390565b60006020828403121561241157600080fd5b81516121288161219c565b60008060006060848603121561243157600080fd5b8351925060208401519150604084015190509250925092565b60008160001904831182151516156124645761246461239d565b500290565b60008261248657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124f15784516001600160a01b0316835293830193918301916001016124cc565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d5c3b8b6ab4078968fd7052279c4eab0065f8ab3efeb51b49b4ae9962077527664736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f38afd88614f15baafc96e9462944592b0d4b0cb0000000000000000000000002811fa3c09dce9a377096e8709f2ed1af4ffbfdd0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : dev (address): 0xf38Afd88614f15bAaFC96E9462944592B0d4b0cb
Arg [1] : marketing (address): 0x2811Fa3C09DCE9A377096E8709F2Ed1af4fFBFDd
Arg [2] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000f38afd88614f15baafc96e9462944592b0d4b0cb
Arg [1] : 0000000000000000000000002811fa3c09dce9a377096e8709f2ed1af4ffbfdd
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
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.