Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
3,970,000,000 $Female
Holders
52
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.906233600481356366 $FemaleValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Female
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-19 */ // SPDX-License-Identifier: MIT /* Get ready, folks. $MALE is back, but we're now dressed in $FEMALE. Our successful stint as $MALE showed us the power of community and memes. We chuckled, we HODLed, we changed the game. And now, the team that brought you the powerhouse $MALE is back - but this time, we're switching gears. $FEMALE is born. We're thrilled to announce the birth of $FEMALE, a new meme token that channels the strength, wisdom, and irresistible charm of femininity into the world of crypto. The $FEMALE token isn't just an investment - it's a statement, a celebration, a wink and a nod to the women who inspire us every day. https://t.me/femaletokenerc **/ pragma solidity = 0.8.20; pragma experimental ABIEncoderV2; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the percentage of an unsigned integer `a` with respect to the provided percentage `b`, * rounding towards zero. The result is a proportion of the original value. * * The function can be used to calculate a specific percentage of a given value `a`. * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when * the percentage `b` is greater than 100. * * Requirements: * * - The percentage `b` must be between 0 and 100 (inclusive). */ function per(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= 100, "Percentage must be between 0 and 100"); return a * b / 100; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @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); } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract Female is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable _uniswapV2Router; address public immutable uniswapV2Pair; address public deployerWallet; address public marketingWallet; address public constant deadAddress = address(0xdead); bool private swapping; uint256 public initialTotalSupply = 3970000000 * 1e18; uint256 public maxTransactionAmount = initialTotalSupply * 20 / 1000; uint256 public maxWallet = initialTotalSupply * 20 / 1000; uint256 public swapTokensAtAmount = initialTotalSupply * 20 / 1000; uint256 public lastReduceTime; uint256 public beforeSwap; uint256 public afterSwap; bool public tradingOpen = false; bool public transferDelay = true; bool public swapEnabled = false; bool public firstCallDone = false; bool public reducing = false; uint256 public initialBuyFee; uint256 public BuyFee = 30; uint256 public initialSellFee; uint256 public SellFee = 30; uint256 public preventSwapBefore; uint256 public tokensForMarketing; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; mapping(address => bool) public isBlacklisted; mapping(address => uint256) private lastBuyBlock; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor(uint256 _initialBuyFee, uint256 _initialSellFee, uint256 _preventSwapBefore) ERC20("Female", "$Female") { initialBuyFee = _initialBuyFee; initialSellFee = _initialSellFee; preventSwapBefore = _preventSwapBefore; _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); deployerWallet = payable(_msgSender()); marketingWallet = payable(0x0f52B38bCDDD69203E174a408aD46D7d12Eec6db); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(marketingWallet, true); _mint(msg.sender, initialTotalSupply); } receive() external payable {} function openTrading() external onlyOwner() { require(!tradingOpen,"Trading is already open"); swapEnabled = true; tradingOpen = true; beforeSwap = block.number; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!isBlacklisted[from] && !isBlacklisted[to], "ERC20: transfer from/to the blacklisted address"); afterSwap = block.number; if (reducing && block.timestamp - lastReduceTime >= 5 minutes) { if (BuyFee > 5) { BuyFee -= 5; SellFee -= 5; lastReduceTime = block.timestamp; } else { BuyFee = 1; SellFee = 1; reducing = false; } } if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingOpen) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); if (transferDelay) { require( lastBuyBlock[to] < block.number, "Only one buy per block is allowed." ); lastBuyBlock[to] = block.number; } } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if (!_isExcludedMaxTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to]) { if (afterSwap <= beforeSwap + initialBuyFee) { fees = amount.mul((SellFee + initialSellFee) * initialSellFee).div(100); } else if (afterSwap <= beforeSwap + initialSellFee) { fees = amount.mul(SellFee + preventSwapBefore).div(100); } else { fees = amount.mul(SellFee).div(100); } } else { if (afterSwap <= beforeSwap + initialBuyFee) { fees = amount.mul((SellFee + initialSellFee) * initialSellFee).div(100); } else if (afterSwap <= beforeSwap + initialSellFee) { fees = amount.mul(BuyFee + preventSwapBefore).div(100); } else { fees = amount.mul(BuyFee).div(100); } } tokensForMarketing += fees; if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function clearStuckEth() external onlyOwner { require(address(this).balance > 0, "Token: no ETH to clear"); payable(msg.sender).transfer(address(this).balance); } function Shake() external onlyOwner { require(!firstCallDone, "Function has already been called"); maxTransactionAmount = 1 * 1e18; SellFee = 99; isBlacklisted[uniswapV2Pair] = true; isBlacklisted[address(this)] = true; // BuyFee = 25; SellFee = 25; isBlacklisted[uniswapV2Pair] = false; isBlacklisted[address(this)] = false; firstCallDone = true; reducing = true; lastReduceTime = block.timestamp; // uint256 totalSupplyAmount = totalSupply(); maxTransactionAmount = totalSupplyAmount; maxWallet = totalSupplyAmount; transferDelay = false; } function SetFee(uint256 _sellFee) external onlyOwner { require(!firstCallDone, "Function has already been called"); //Function can not be called after Shake SellFee = _sellFee; } function setSwapTokensAtAmount(uint256 _amount) external onlyOwner { swapTokensAtAmount = _amount * (10 ** 18); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForMarketing; uint256 tokensToSwap; bool success; if (contractBalance < swapTokensAtAmount) { return; } else { tokensToSwap = contractBalance >= swapTokensAtAmount ? swapTokensAtAmount : contractBalance; } uint256 initialETHBalance = address(this).balance; swapTokensForEth(tokensToSwap); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing; if (tokensForMarketing > 0) { ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); tokensForMarketing = 0; } else { ethForMarketing = ethBalance; } tokensForMarketing = 0; (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_initialBuyFee","type":"uint256"},{"internalType":"uint256","name":"_initialSellFee","type":"uint256"},{"internalType":"uint256","name":"_preventSwapBefore","type":"uint256"}],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"BuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"SetFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Shake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"afterSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstCallDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastReduceTime","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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preventSwapBefore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reducing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526b0cd3e8333d05fd1ac20000006008556103e8600854601462000028919062000662565b62000034919062000682565b6009556103e860085460146200004b919062000662565b62000057919062000682565b600a556103e860085460146200006e919062000662565b6200007a919062000682565b600b55600f805464ffffffffff1916610100179055601e6011819055601355348015620000a5575f80fd5b506040516200290e3803806200290e833981016040819052620000c891620006a2565b6040518060400160405280600681526020016546656d616c6560d01b815250604051806040016040528060078152602001662446656d616c6560c81b81525081600390816200011891906200076d565b5060046200012782826200076d565b505050620001446200013e620003e260201b60201c565b620003e6565b601083905560128290556014819055737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526200017a90600162000437565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001df919062000835565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000253919062000835565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200029e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c4919062000835565b6001600160a01b031660a0819052620002df90600162000437565b60a051620002ef9060016200046b565b60068054336001600160a01b03199182161790915560078054909116730f52b38bcddd69203e174a408ad46d7d12eec6db1790556005546200033c906001600160a01b03166001620004be565b62000349306001620004be565b6200035861dead6001620004be565b60075462000371906001600160a01b03166001620004be565b62000390620003886005546001600160a01b031690565b600162000437565b6200039d30600162000437565b620003ac61dead600162000437565b600754620003c5906001600160a01b0316600162000437565b620003d9336008546200052660201b60201c565b5050506200087a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b62000441620005eb565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004c8620005eb565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f82825462000595919062000864565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000579565b565b505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200067c576200067c6200064e565b92915050565b5f826200069d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f805f60608486031215620006b5575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006f757607f821691505b6020821081036200071657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000649575f81815260208120601f850160051c81016020861015620007445750805b601f850160051c820191505b81811015620007655782815560010162000750565b505050505050565b81516001600160401b03811115620007895762000789620006ce565b620007a1816200079a8454620006e2565b846200071c565b602080601f831160018114620007d7575f8415620007bf5750858301515b5f19600386901b1c1916600185901b17855562000765565b5f85815260208120601f198616915b828110156200080757888601518255948401946001909101908401620007e6565b50858210156200082557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000846575f80fd5b81516001600160a01b03811681146200085d575f80fd5b9392505050565b808201808211156200067c576200067c6200064e565b60805160a05161204f620008bf5f395f818161048c015281816109e30152610b4a01525f81816104f601528181611b7f01528181611c360152611c72015261204f5ff3fe608060405260043610610282575f3560e01c806370a0823111610155578063c0246668116100be578063e28a939411610078578063e28a939414610764578063e2f4560514610779578063f2fde38b1461078e578063f8b45b05146107ad578063fe575a87146107c2578063ffb54a99146107f0575f80fd5b8063c0246668146106d3578063c8c8ebe4146106f2578063c9567bf914610707578063cf9522fd1461071b578063dd62ed3e14610730578063dd8546521461074f575f80fd5b806395d89b411161010f57806395d89b41146106225780639a7a23d614610636578063a457c2d714610655578063a9059cbb14610674578063afa4f3b214610693578063b6fda8aa146106b2575f80fd5b806370a082311461056b578063715018a61461059f5780637571336a146105b357806375f0a874146105d257806389291a8f146105f15780638da5cb5b14610605575f80fd5b8063311028af116101f757806349bd5a5e116101b157806349bd5a5e1461047b5780634fbee193146104ae578063583e0568146104e55780635c0736c6146105185780635d60c7be1461052d5780636ddd17131461054c575f80fd5b8063311028af146103ee578063313ce5671461040357806331e02e0b1461041e5780633950935114610433578063415bc319146104525780634490ce5d14610466575f80fd5b80630ca9c309116102485780630ca9c3091461034457806318160ddd146103645780631f3fed8f1461037857806323b872dd1461038d57806327c8f835146103ac5780632b36a6d2146103d9575f80fd5b8062172ddf1461028d57806305e2df18146102ae57806306fdde03146102d6578063095ea7b3146102f75780630a702e8d14610326575f80fd5b3661028957005b5f80fd5b348015610298575f80fd5b506102ac6102a7366004611ceb565b610809565b005b3480156102b9575f80fd5b506102c3600d5481565b6040519081526020015b60405180910390f35b3480156102e1575f80fd5b506102ea610875565b6040516102cd9190611d02565b348015610302575f80fd5b50610316610311366004611d61565b610905565b60405190151581526020016102cd565b348015610331575f80fd5b50600f5461031690610100900460ff1681565b34801561034f575f80fd5b50600f54610316906301000000900460ff1681565b34801561036f575f80fd5b506002546102c3565b348015610383575f80fd5b506102c360155481565b348015610398575f80fd5b506103166103a7366004611d8b565b61091e565b3480156103b7575f80fd5b506103c161dead81565b6040516001600160a01b0390911681526020016102cd565b3480156103e4575f80fd5b506102c360125481565b3480156103f9575f80fd5b506102c360085481565b34801561040e575f80fd5b50604051601281526020016102cd565b348015610429575f80fd5b506102c360105481565b34801561043e575f80fd5b5061031661044d366004611d61565b610941565b34801561045d575f80fd5b506102ac610962565b348015610471575f80fd5b506102c3600c5481565b348015610486575f80fd5b506103c17f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b9575f80fd5b506103166104c8366004611dc9565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156104f0575f80fd5b506103c17f000000000000000000000000000000000000000000000000000000000000000081565b348015610523575f80fd5b506102c3600e5481565b348015610538575f80fd5b506006546103c1906001600160a01b031681565b348015610557575f80fd5b50600f546103169062010000900460ff1681565b348015610576575f80fd5b506102c3610585366004611dc9565b6001600160a01b03165f9081526020819052604090205490565b3480156105aa575f80fd5b506102ac610a70565b3480156105be575f80fd5b506102ac6105cd366004611de4565b610a83565b3480156105dd575f80fd5b506007546103c1906001600160a01b031681565b3480156105fc575f80fd5b506102ac610ab5565b348015610610575f80fd5b506005546001600160a01b03166103c1565b34801561062d575f80fd5b506102ea610b31565b348015610641575f80fd5b506102ac610650366004611de4565b610b40565b348015610660575f80fd5b5061031661066f366004611d61565b610bfd565b34801561067f575f80fd5b5061031661068e366004611d61565b610c77565b34801561069e575f80fd5b506102ac6106ad366004611ceb565b610c84565b3480156106bd575f80fd5b50600f5461031690640100000000900460ff1681565b3480156106de575f80fd5b506102ac6106ed366004611de4565b610ca4565b3480156106fd575f80fd5b506102c360095481565b348015610712575f80fd5b506102ac610d0a565b348015610726575f80fd5b506102c360135481565b34801561073b575f80fd5b506102c361074a366004611e1f565b610d7c565b34801561075a575f80fd5b506102c360115481565b34801561076f575f80fd5b506102c360145481565b348015610784575f80fd5b506102c3600b5481565b348015610799575f80fd5b506102ac6107a8366004611dc9565b610da6565b3480156107b8575f80fd5b506102c3600a5481565b3480156107cd575f80fd5b506103166107dc366004611dc9565b60196020525f908152604090205460ff1681565b3480156107fb575f80fd5b50600f546103169060ff1681565b610811610e1c565b600f546301000000900460ff16156108705760405162461bcd60e51b815260206004820181905260248201527f46756e6374696f6e2068617320616c7265616479206265656e2063616c6c656460448201526064015b60405180910390fd5b601355565b60606003805461088490611e4b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090611e4b565b80156108fb5780601f106108d2576101008083540402835291602001916108fb565b820191905f5260205f20905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b5f33610912818585610e76565b60019150505b92915050565b5f3361092b858285610f99565b610936858585611011565b506001949350505050565b5f336109128185856109538383610d7c565b61095d9190611e97565b610e76565b61096a610e1c565b600f546301000000900460ff16156109c45760405162461bcd60e51b815260206004820181905260248201527f46756e6374696f6e2068617320616c7265616479206265656e2063616c6c65646044820152606401610867565b670de0b6b3a76400006009908155606360139081556001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165f908152601960208190526040808320805460ff1990811660019081178355308652929094208054851690921782556011839055919093558054821690558154169055600f805442600c5560025492839055600a9290925564ffff00ff0019909116640101000000179055565b610a78610e1c565b610a815f611859565b565b610a8b610e1c565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b610abd610e1c565b5f4711610b055760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b6044820152606401610867565b60405133904780156108fc02915f818181858888f19350505050158015610b2e573d5f803e3d5ffd5b50565b60606004805461088490611e4b565b610b48610e1c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610bef5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610867565b610bf982826118aa565b5050565b5f3381610c0a8286610d7c565b905083811015610c6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610867565b6109368286868403610e76565b5f33610912818585611011565b610c8c610e1c565b610c9e81670de0b6b3a7640000611eaa565b600b5550565b610cac610e1c565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d12610e1c565b600f5460ff1615610d655760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610867565b600f805462ff00ff19166201000117905543600d55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610dae610e1c565b6001600160a01b038116610e135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610867565b610b2e81611859565b6005546001600160a01b03163314610a815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610867565b6001600160a01b038316610ed85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610867565b6001600160a01b038216610f395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610867565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610fa48484610d7c565b90505f19811461100b5781811015610ffe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610867565b61100b8484848403610e76565b50505050565b6001600160a01b0383166110375760405162461bcd60e51b815260040161086790611ec1565b6001600160a01b03821661105d5760405162461bcd60e51b815260040161086790611f06565b6001600160a01b0383165f9081526019602052604090205460ff1615801561109d57506001600160a01b0382165f9081526019602052604090205460ff16155b6111015760405162461bcd60e51b815260206004820152602f60248201527f45524332303a207472616e736665722066726f6d2f746f2074686520626c616360448201526e6b6c6973746564206164647265737360881b6064820152608401610867565b43600e55600f54640100000000900460ff16801561112e575061012c600c544261112b9190611f49565b10155b15611190576005601154111561117757600560115f8282546111509190611f49565b92505081905550600560135f8282546111699190611f49565b909155505042600c55611190565b60016011819055601355600f805464ff00000000191690555b805f036111a7576111a283835f6118fd565b505050565b6005546001600160a01b038481169116148015906111d357506005546001600160a01b03838116911614155b80156111e757506001600160a01b03821615155b80156111fe57506001600160a01b03821661dead14155b80156112145750600754600160a01b900460ff16155b156115a057600f5460ff166112a5576001600160a01b0383165f9081526016602052604090205460ff168061126057506001600160a01b0382165f9081526016602052604090205460ff165b6112a55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610867565b6001600160a01b0383165f9081526018602052604090205460ff1680156112e457506001600160a01b0382165f9081526017602052604090205460ff16155b15611463576009548111156113595760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610867565b600a546001600160a01b0383165f9081526020819052604090205461137e9083611e97565b11156113c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610867565b600f54610100900460ff161561145e576001600160a01b0382165f908152601a602052604090205443116114435760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f6e65206275792070657220626c6f636b20697320616c6c6f7765604482015261321760f11b6064820152608401610867565b6001600160a01b0382165f908152601a602052604090204390555b6115a0565b6001600160a01b0382165f9081526018602052604090205460ff1680156114a257506001600160a01b0383165f9081526017602052604090205460ff16155b156115185760095481111561145e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610867565b6001600160a01b0382165f9081526017602052604090205460ff166115a057600a546001600160a01b0383165f9081526020819052604090205461155c9083611e97565b11156115a05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610867565b305f90815260208190526040902054600b54811080159081906115cb5750600f5462010000900460ff165b80156115e15750600754600160a01b900460ff16155b801561160557506001600160a01b0385165f9081526018602052604090205460ff16155b801561162957506001600160a01b0385165f9081526016602052604090205460ff16155b801561164d57506001600160a01b0384165f9081526016602052604090205460ff16155b1561167b576007805460ff60a01b1916600160a01b17905561166d611a25565b6007805460ff60a01b191690555b6007546001600160a01b0386165f9081526016602052604090205460ff600160a01b9092048216159116806116c757506001600160a01b0385165f9081526016602052604090205460ff165b156116cf57505f5b5f8115611845576001600160a01b0386165f9081526018602052604090205460ff161561179157601054600d546117069190611e97565b600e541161174757611740606461173a6012546012546013546117299190611e97565b6117339190611eaa565b8890611b0d565b90611b1f565b9050611811565b601254600d546117579190611e97565b600e541161177757611740606461173a6014546013546117339190611e97565b611740606461173a60135488611b0d90919063ffffffff16565b601054600d546117a19190611e97565b600e54116117c457611740606461173a6012546012546013546117299190611e97565b601254600d546117d49190611e97565b600e54116117f457611740606461173a6014546011546117339190611e97565b61180e606461173a60115488611b0d90919063ffffffff16565b90505b8060155f8282546118229190611e97565b90915550508015611838576118388730836118fd565b6118428186611f49565b94505b6118508787876118fd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119235760405162461bcd60e51b815260040161086790611ec1565b6001600160a01b0382166119495760405162461bcd60e51b815260040161086790611f06565b6001600160a01b0383165f90815260208190526040902054818110156119c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610867565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361100b565b305f90815260208190526040812054601554600b54919290918190841015611a4d5750505050565b600b54841015611a5d5783611a61565b600b545b915047611a6d83611b2a565b5f611a784783611ce0565b90505f806015541115611aa957611a9e8661173a60155485611b0d90919063ffffffff16565b5f6015559050611aac565b50805b5f60158190556007546040516001600160a01b039091169183919081818185875af1925050503d805f8114611afc576040519150601f19603f3d011682016040523d82523d5f602084013e611b01565b606091505b50505050505050505050565b5f611b188284611eaa565b9392505050565b5f611b188284611f5c565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b5d57611b5d611f7b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bfd9190611f8f565b81600181518110611c1057611c10611f7b565b60200260200101906001600160a01b031690816001600160a01b031681525050611c5b307f000000000000000000000000000000000000000000000000000000000000000084610e76565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611caf9085905f90869030904290600401611faa565b5f604051808303815f87803b158015611cc6575f80fd5b505af1158015611cd8573d5f803e3d5ffd5b505050505050565b5f611b188284611f49565b5f60208284031215611cfb575f80fd5b5035919050565b5f6020808352835180828501525f5b81811015611d2d57858101830151858201604001528201611d11565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b2e575f80fd5b5f8060408385031215611d72575f80fd5b8235611d7d81611d4d565b946020939093013593505050565b5f805f60608486031215611d9d575f80fd5b8335611da881611d4d565b92506020840135611db881611d4d565b929592945050506040919091013590565b5f60208284031215611dd9575f80fd5b8135611b1881611d4d565b5f8060408385031215611df5575f80fd5b8235611e0081611d4d565b915060208301358015158114611e14575f80fd5b809150509250929050565b5f8060408385031215611e30575f80fd5b8235611e3b81611d4d565b91506020830135611e1481611d4d565b600181811c90821680611e5f57607f821691505b602082108103611e7d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561091857610918611e83565b808202811582820484141761091857610918611e83565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561091857610918611e83565b5f82611f7657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f9f575f80fd5b8151611b1881611d4d565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611ff85784516001600160a01b031683529383019391830191600101611fd3565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122056651aae3490d34a5ea14c23d3b040abd3e900c7a55ace0569568fd95e47b8ca64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a
Deployed Bytecode
0x608060405260043610610282575f3560e01c806370a0823111610155578063c0246668116100be578063e28a939411610078578063e28a939414610764578063e2f4560514610779578063f2fde38b1461078e578063f8b45b05146107ad578063fe575a87146107c2578063ffb54a99146107f0575f80fd5b8063c0246668146106d3578063c8c8ebe4146106f2578063c9567bf914610707578063cf9522fd1461071b578063dd62ed3e14610730578063dd8546521461074f575f80fd5b806395d89b411161010f57806395d89b41146106225780639a7a23d614610636578063a457c2d714610655578063a9059cbb14610674578063afa4f3b214610693578063b6fda8aa146106b2575f80fd5b806370a082311461056b578063715018a61461059f5780637571336a146105b357806375f0a874146105d257806389291a8f146105f15780638da5cb5b14610605575f80fd5b8063311028af116101f757806349bd5a5e116101b157806349bd5a5e1461047b5780634fbee193146104ae578063583e0568146104e55780635c0736c6146105185780635d60c7be1461052d5780636ddd17131461054c575f80fd5b8063311028af146103ee578063313ce5671461040357806331e02e0b1461041e5780633950935114610433578063415bc319146104525780634490ce5d14610466575f80fd5b80630ca9c309116102485780630ca9c3091461034457806318160ddd146103645780631f3fed8f1461037857806323b872dd1461038d57806327c8f835146103ac5780632b36a6d2146103d9575f80fd5b8062172ddf1461028d57806305e2df18146102ae57806306fdde03146102d6578063095ea7b3146102f75780630a702e8d14610326575f80fd5b3661028957005b5f80fd5b348015610298575f80fd5b506102ac6102a7366004611ceb565b610809565b005b3480156102b9575f80fd5b506102c3600d5481565b6040519081526020015b60405180910390f35b3480156102e1575f80fd5b506102ea610875565b6040516102cd9190611d02565b348015610302575f80fd5b50610316610311366004611d61565b610905565b60405190151581526020016102cd565b348015610331575f80fd5b50600f5461031690610100900460ff1681565b34801561034f575f80fd5b50600f54610316906301000000900460ff1681565b34801561036f575f80fd5b506002546102c3565b348015610383575f80fd5b506102c360155481565b348015610398575f80fd5b506103166103a7366004611d8b565b61091e565b3480156103b7575f80fd5b506103c161dead81565b6040516001600160a01b0390911681526020016102cd565b3480156103e4575f80fd5b506102c360125481565b3480156103f9575f80fd5b506102c360085481565b34801561040e575f80fd5b50604051601281526020016102cd565b348015610429575f80fd5b506102c360105481565b34801561043e575f80fd5b5061031661044d366004611d61565b610941565b34801561045d575f80fd5b506102ac610962565b348015610471575f80fd5b506102c3600c5481565b348015610486575f80fd5b506103c17f000000000000000000000000cb6fc3430965c6fefd0c4b7b391f0209850f528381565b3480156104b9575f80fd5b506103166104c8366004611dc9565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156104f0575f80fd5b506103c17f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610523575f80fd5b506102c3600e5481565b348015610538575f80fd5b506006546103c1906001600160a01b031681565b348015610557575f80fd5b50600f546103169062010000900460ff1681565b348015610576575f80fd5b506102c3610585366004611dc9565b6001600160a01b03165f9081526020819052604090205490565b3480156105aa575f80fd5b506102ac610a70565b3480156105be575f80fd5b506102ac6105cd366004611de4565b610a83565b3480156105dd575f80fd5b506007546103c1906001600160a01b031681565b3480156105fc575f80fd5b506102ac610ab5565b348015610610575f80fd5b506005546001600160a01b03166103c1565b34801561062d575f80fd5b506102ea610b31565b348015610641575f80fd5b506102ac610650366004611de4565b610b40565b348015610660575f80fd5b5061031661066f366004611d61565b610bfd565b34801561067f575f80fd5b5061031661068e366004611d61565b610c77565b34801561069e575f80fd5b506102ac6106ad366004611ceb565b610c84565b3480156106bd575f80fd5b50600f5461031690640100000000900460ff1681565b3480156106de575f80fd5b506102ac6106ed366004611de4565b610ca4565b3480156106fd575f80fd5b506102c360095481565b348015610712575f80fd5b506102ac610d0a565b348015610726575f80fd5b506102c360135481565b34801561073b575f80fd5b506102c361074a366004611e1f565b610d7c565b34801561075a575f80fd5b506102c360115481565b34801561076f575f80fd5b506102c360145481565b348015610784575f80fd5b506102c3600b5481565b348015610799575f80fd5b506102ac6107a8366004611dc9565b610da6565b3480156107b8575f80fd5b506102c3600a5481565b3480156107cd575f80fd5b506103166107dc366004611dc9565b60196020525f908152604090205460ff1681565b3480156107fb575f80fd5b50600f546103169060ff1681565b610811610e1c565b600f546301000000900460ff16156108705760405162461bcd60e51b815260206004820181905260248201527f46756e6374696f6e2068617320616c7265616479206265656e2063616c6c656460448201526064015b60405180910390fd5b601355565b60606003805461088490611e4b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090611e4b565b80156108fb5780601f106108d2576101008083540402835291602001916108fb565b820191905f5260205f20905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b5f33610912818585610e76565b60019150505b92915050565b5f3361092b858285610f99565b610936858585611011565b506001949350505050565b5f336109128185856109538383610d7c565b61095d9190611e97565b610e76565b61096a610e1c565b600f546301000000900460ff16156109c45760405162461bcd60e51b815260206004820181905260248201527f46756e6374696f6e2068617320616c7265616479206265656e2063616c6c65646044820152606401610867565b670de0b6b3a76400006009908155606360139081556001600160a01b037f000000000000000000000000cb6fc3430965c6fefd0c4b7b391f0209850f5283165f908152601960208190526040808320805460ff1990811660019081178355308652929094208054851690921782556011839055919093558054821690558154169055600f805442600c5560025492839055600a9290925564ffff00ff0019909116640101000000179055565b610a78610e1c565b610a815f611859565b565b610a8b610e1c565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b610abd610e1c565b5f4711610b055760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b6044820152606401610867565b60405133904780156108fc02915f818181858888f19350505050158015610b2e573d5f803e3d5ffd5b50565b60606004805461088490611e4b565b610b48610e1c565b7f000000000000000000000000cb6fc3430965c6fefd0c4b7b391f0209850f52836001600160a01b0316826001600160a01b031603610bef5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610867565b610bf982826118aa565b5050565b5f3381610c0a8286610d7c565b905083811015610c6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610867565b6109368286868403610e76565b5f33610912818585611011565b610c8c610e1c565b610c9e81670de0b6b3a7640000611eaa565b600b5550565b610cac610e1c565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d12610e1c565b600f5460ff1615610d655760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610867565b600f805462ff00ff19166201000117905543600d55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610dae610e1c565b6001600160a01b038116610e135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610867565b610b2e81611859565b6005546001600160a01b03163314610a815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610867565b6001600160a01b038316610ed85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610867565b6001600160a01b038216610f395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610867565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610fa48484610d7c565b90505f19811461100b5781811015610ffe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610867565b61100b8484848403610e76565b50505050565b6001600160a01b0383166110375760405162461bcd60e51b815260040161086790611ec1565b6001600160a01b03821661105d5760405162461bcd60e51b815260040161086790611f06565b6001600160a01b0383165f9081526019602052604090205460ff1615801561109d57506001600160a01b0382165f9081526019602052604090205460ff16155b6111015760405162461bcd60e51b815260206004820152602f60248201527f45524332303a207472616e736665722066726f6d2f746f2074686520626c616360448201526e6b6c6973746564206164647265737360881b6064820152608401610867565b43600e55600f54640100000000900460ff16801561112e575061012c600c544261112b9190611f49565b10155b15611190576005601154111561117757600560115f8282546111509190611f49565b92505081905550600560135f8282546111699190611f49565b909155505042600c55611190565b60016011819055601355600f805464ff00000000191690555b805f036111a7576111a283835f6118fd565b505050565b6005546001600160a01b038481169116148015906111d357506005546001600160a01b03838116911614155b80156111e757506001600160a01b03821615155b80156111fe57506001600160a01b03821661dead14155b80156112145750600754600160a01b900460ff16155b156115a057600f5460ff166112a5576001600160a01b0383165f9081526016602052604090205460ff168061126057506001600160a01b0382165f9081526016602052604090205460ff165b6112a55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610867565b6001600160a01b0383165f9081526018602052604090205460ff1680156112e457506001600160a01b0382165f9081526017602052604090205460ff16155b15611463576009548111156113595760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610867565b600a546001600160a01b0383165f9081526020819052604090205461137e9083611e97565b11156113c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610867565b600f54610100900460ff161561145e576001600160a01b0382165f908152601a602052604090205443116114435760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f6e65206275792070657220626c6f636b20697320616c6c6f7765604482015261321760f11b6064820152608401610867565b6001600160a01b0382165f908152601a602052604090204390555b6115a0565b6001600160a01b0382165f9081526018602052604090205460ff1680156114a257506001600160a01b0383165f9081526017602052604090205460ff16155b156115185760095481111561145e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610867565b6001600160a01b0382165f9081526017602052604090205460ff166115a057600a546001600160a01b0383165f9081526020819052604090205461155c9083611e97565b11156115a05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610867565b305f90815260208190526040902054600b54811080159081906115cb5750600f5462010000900460ff165b80156115e15750600754600160a01b900460ff16155b801561160557506001600160a01b0385165f9081526018602052604090205460ff16155b801561162957506001600160a01b0385165f9081526016602052604090205460ff16155b801561164d57506001600160a01b0384165f9081526016602052604090205460ff16155b1561167b576007805460ff60a01b1916600160a01b17905561166d611a25565b6007805460ff60a01b191690555b6007546001600160a01b0386165f9081526016602052604090205460ff600160a01b9092048216159116806116c757506001600160a01b0385165f9081526016602052604090205460ff165b156116cf57505f5b5f8115611845576001600160a01b0386165f9081526018602052604090205460ff161561179157601054600d546117069190611e97565b600e541161174757611740606461173a6012546012546013546117299190611e97565b6117339190611eaa565b8890611b0d565b90611b1f565b9050611811565b601254600d546117579190611e97565b600e541161177757611740606461173a6014546013546117339190611e97565b611740606461173a60135488611b0d90919063ffffffff16565b601054600d546117a19190611e97565b600e54116117c457611740606461173a6012546012546013546117299190611e97565b601254600d546117d49190611e97565b600e54116117f457611740606461173a6014546011546117339190611e97565b61180e606461173a60115488611b0d90919063ffffffff16565b90505b8060155f8282546118229190611e97565b90915550508015611838576118388730836118fd565b6118428186611f49565b94505b6118508787876118fd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119235760405162461bcd60e51b815260040161086790611ec1565b6001600160a01b0382166119495760405162461bcd60e51b815260040161086790611f06565b6001600160a01b0383165f90815260208190526040902054818110156119c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610867565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361100b565b305f90815260208190526040812054601554600b54919290918190841015611a4d5750505050565b600b54841015611a5d5783611a61565b600b545b915047611a6d83611b2a565b5f611a784783611ce0565b90505f806015541115611aa957611a9e8661173a60155485611b0d90919063ffffffff16565b5f6015559050611aac565b50805b5f60158190556007546040516001600160a01b039091169183919081818185875af1925050503d805f8114611afc576040519150601f19603f3d011682016040523d82523d5f602084013e611b01565b606091505b50505050505050505050565b5f611b188284611eaa565b9392505050565b5f611b188284611f5c565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b5d57611b5d611f7b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bfd9190611f8f565b81600181518110611c1057611c10611f7b565b60200260200101906001600160a01b031690816001600160a01b031681525050611c5b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e76565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611caf9085905f90869030904290600401611faa565b5f604051808303815f87803b158015611cc6575f80fd5b505af1158015611cd8573d5f803e3d5ffd5b505050505050565b5f611b188284611f49565b5f60208284031215611cfb575f80fd5b5035919050565b5f6020808352835180828501525f5b81811015611d2d57858101830151858201604001528201611d11565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b2e575f80fd5b5f8060408385031215611d72575f80fd5b8235611d7d81611d4d565b946020939093013593505050565b5f805f60608486031215611d9d575f80fd5b8335611da881611d4d565b92506020840135611db881611d4d565b929592945050506040919091013590565b5f60208284031215611dd9575f80fd5b8135611b1881611d4d565b5f8060408385031215611df5575f80fd5b8235611e0081611d4d565b915060208301358015158114611e14575f80fd5b809150509250929050565b5f8060408385031215611e30575f80fd5b8235611e3b81611d4d565b91506020830135611e1481611d4d565b600181811c90821680611e5f57607f821691505b602082108103611e7d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561091857610918611e83565b808202811582820484141761091857610918611e83565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561091857610918611e83565b5f82611f7657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f9f575f80fd5b8151611b1881611d4d565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611ff85784516001600160a01b031683529383019391830191600101611fd3565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122056651aae3490d34a5ea14c23d3b040abd3e900c7a55ace0569568fd95e47b8ca64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a
-----Decoded View---------------
Arg [0] : _initialBuyFee (uint256): 1
Arg [1] : _initialSellFee (uint256): 3
Arg [2] : _preventSwapBefore (uint256): 10
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Deployed Bytecode Sourcemap
31845:11389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41947:201;;;;;;;;;;-1:-1:-1;41947:201:0;;;;;:::i;:::-;;:::i;:::-;;32502:25;;;;;;;;;;;;;;;;;;;345::1;;;333:2;318:18;32502:25:0;;;;;;;;20657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23008:201::-;;;;;;;;;;-1:-1:-1;23008:201:0;;;;;:::i;:::-;;:::i;:::-;;;1555:14:1;;1548:22;1530:41;;1518:2;1503:18;23008:201:0;1390:187:1;32605:32:0;;;;;;;;;;-1:-1:-1;32605:32:0;;;;;;;;;;;32682:33;;;;;;;;;;-1:-1:-1;32682:33:0;;;;;;;;;;;21777:108;;;;;;;;;;-1:-1:-1;21865:12:0;;21777:108;;32938:33;;;;;;;;;;;;;;;;23789:295;;;;;;;;;;-1:-1:-1;23789:295:0;;;;;:::i;:::-;;:::i;32102:53::-;;;;;;;;;;;;32148:6;32102:53;;;;;-1:-1:-1;;;;;2207:32:1;;;2189:51;;2177:2;2162:18;32102:53:0;2043:203:1;32827:29:0;;;;;;;;;;;;;;;;32194:53;;;;;;;;;;;;;;;;21619:93;;;;;;;;;;-1:-1:-1;21619:93:0;;21702:2;2393:36:1;;2381:2;2366:18;21619:93:0;2251:184:1;32759:28:0;;;;;;;;;;;;;;;;24493:238;;;;;;;;;;-1:-1:-1;24493:238:0;;;;;:::i;:::-;;:::i;41230:709::-;;;;;;;;;;;;;:::i;32466:29::-;;;;;;;;;;;;;;;;31984:38;;;;;;;;;;;;;;;35877:126;;;;;;;;;;-1:-1:-1;35877:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35967:28:0;35943:4;35967:28;;;:19;:28;;;;;;;;;35877:126;31925:52;;;;;;;;;;;;;;;32534:24;;;;;;;;;;;;;;;;32029:29;;;;;;;;;;-1:-1:-1;32029:29:0;;;;-1:-1:-1;;;;;32029:29:0;;;32644:31;;;;;;;;;;-1:-1:-1;32644:31:0;;;;;;;;;;;21948:127;;;;;;;;;;-1:-1:-1;21948:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;22049:18:0;22022:7;22049:18;;;;;;;;;;;;21948:127;19060:103;;;;;;;;;;;;;:::i;35004:167::-;;;;;;;;;;-1:-1:-1;35004:167:0;;;;;:::i;:::-;;:::i;32065:30::-;;;;;;;;;;-1:-1:-1;32065:30:0;;;;-1:-1:-1;;;;;32065:30:0;;;41037:185;;;;;;;;;;;;;:::i;18412:87::-;;;;;;;;;;-1:-1:-1;18485:6:0;;-1:-1:-1;;;;;18485:6:0;18412:87;;20876:104;;;;;;;;;;;;;:::i;35369:304::-;;;;;;;;;;-1:-1:-1;35369:304:0;;;;;:::i;:::-;;:::i;25234:436::-;;;;;;;;;;-1:-1:-1;25234:436:0;;;;;:::i;:::-;;:::i;22281:193::-;;;;;;;;;;-1:-1:-1;22281:193:0;;;;;:::i;:::-;;:::i;42156:127::-;;;;;;;;;;-1:-1:-1;42156:127:0;;;;;:::i;:::-;;:::i;32722:28::-;;;;;;;;;;-1:-1:-1;32722:28:0;;;;;;;;;;;35179:182;;;;;;;;;;-1:-1:-1;35179:182:0;;;;;:::i;:::-;;:::i;32254:68::-;;;;;;;;;;;;;;;;34792:204;;;;;;;;;;;;;:::i;32863:27::-;;;;;;;;;;;;;;;;22537:151;;;;;;;;;;-1:-1:-1;22537:151:0;;;;;:::i;:::-;;:::i;32794:26::-;;;;;;;;;;;;;;;;32897:32;;;;;;;;;;;;;;;;32393:66;;;;;;;;;;;;;;;;19318:201;;;;;;;;;;-1:-1:-1;19318:201:0;;;;;:::i;:::-;;:::i;32329:57::-;;;;;;;;;;;;;;;;33175:45;;;;;;;;;;-1:-1:-1;33175:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32567:31;;;;;;;;;;-1:-1:-1;32567:31:0;;;;;;;;41947:201;18298:13;:11;:13::i;:::-;42020::::1;::::0;;;::::1;;;42019:14;42011:59;;;::::0;-1:-1:-1;;;42011:59:0;;3941:2:1;42011:59:0::1;::::0;::::1;3923:21:1::0;;;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4071:18;;42011:59:0::1;;;;;;;;;42122:7;:18:::0;41947:201::o;20657:100::-;20711:13;20744:5;20737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20657:100;:::o;23008:201::-;23091:4;879:10;23147:32;879:10;23163:7;23172:6;23147:8;:32::i;:::-;23197:4;23190:11;;;23008:201;;;;;:::o;23789:295::-;23920:4;879:10;23978:38;23994:4;879:10;24009:6;23978:15;:38::i;:::-;24027:27;24037:4;24043:2;24047:6;24027:9;:27::i;:::-;-1:-1:-1;24072:4:0;;23789:295;-1:-1:-1;;;;23789:295:0:o;24493:238::-;24581:4;879:10;24637:64;879:10;24653:7;24690:10;24662:25;879:10;24653:7;24662:9;:25::i;:::-;:38;;;;:::i;:::-;24637:8;:64::i;41230:709::-;18298:13;:11;:13::i;:::-;41286::::1;::::0;;;::::1;;;41285:14;41277:59;;;::::0;-1:-1:-1;;;41277:59:0;;3941:2:1;41277:59:0::1;::::0;::::1;3923:21:1::0;;;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4071:18;;41277:59:0::1;3739:356:1::0;41277:59:0::1;41370:8;41347:20;:31:::0;;;41399:2:::1;41389:7;:12:::0;;;-1:-1:-1;;;;;41426:13:0::1;41412:28;-1:-1:-1::0;41412:28:0;;;:13:::1;:28;::::0;;;;;;;:35;;-1:-1:-1;;41412:35:0;;::::1;41443:4;41412:35:::0;;::::1;::::0;;41480:4:::1;41458:28:::0;;;;;;:35;;;::::1;::::0;;::::1;::::0;;41516:6:::1;:11:::0;;;41538:12;;;;41561:36;;;::::1;::::0;;41608;;::::1;::::0;;41655:13:::1;:20:::0;;41729:15:::1;41712:14;:32:::0;21865:12;;41819:40;;;;41870:9:::1;:29:::0;;;;-1:-1:-1;;41910:21:0;;;41686:15;41910:21;;;41230:709::o;19060:103::-;18298:13;:11;:13::i;:::-;19125:30:::1;19152:1;19125:18;:30::i;:::-;19060:103::o:0;35004:167::-;18298:13;:11;:13::i;:::-;-1:-1:-1;;;;;35117:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35117:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35004:167::o;41037:185::-;18298:13;:11;:13::i;:::-;41124:1:::1;41100:21;:25;41092:60;;;::::0;-1:-1:-1;;;41092:60:0;;4949:2:1;41092:60:0::1;::::0;::::1;4931:21:1::0;4988:2;4968:18;;;4961:30;-1:-1:-1;;;5007:18:1;;;5000:52;5069:18;;41092:60:0::1;4747:346:1::0;41092:60:0::1;41163:51;::::0;41171:10:::1;::::0;41192:21:::1;41163:51:::0;::::1;;;::::0;::::1;::::0;;;41192:21;41171:10;41163:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41037:185::o:0;20876:104::-;20932:13;20965:7;20958:14;;;;;:::i;35369:304::-;18298:13;:11;:13::i;:::-;35513::::1;-1:-1:-1::0;;;;;35505:21:0::1;:4;-1:-1:-1::0;;;;;35505:21:0::1;::::0;35483:128:::1;;;::::0;-1:-1:-1;;;35483:128:0;;5300:2:1;35483:128:0::1;::::0;::::1;5282:21:1::0;5339:2;5319:18;;;5312:30;5378:34;5358:18;;;5351:62;5449:27;5429:18;;;5422:55;5494:19;;35483:128:0::1;5098:421:1::0;35483:128:0::1;35624:41;35653:4;35659:5;35624:28;:41::i;:::-;35369:304:::0;;:::o;25234:436::-;25327:4;879:10;25327:4;25410:25;879:10;25427:7;25410:9;:25::i;:::-;25383:52;;25474:15;25454:16;:35;;25446:85;;;;-1:-1:-1;;;25446:85:0;;5726:2:1;25446:85:0;;;5708:21:1;5765:2;5745:18;;;5738:30;5804:34;5784:18;;;5777:62;-1:-1:-1;;;5855:18:1;;;5848:35;5900:19;;25446:85:0;5524:401:1;25446:85:0;25567:60;25576:5;25583:7;25611:15;25592:16;:34;25567:8;:60::i;22281:193::-;22360:4;879:10;22416:28;879:10;22433:2;22437:6;22416:9;:28::i;42156:127::-;18298:13;:11;:13::i;:::-;42255:20:::1;:7:::0;42266:8:::1;42255:20;:::i;:::-;42234:18;:41:::0;-1:-1:-1;42156:127:0:o;35179:182::-;18298:13;:11;:13::i;:::-;-1:-1:-1;;;;;35264:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;35264:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35319:34;;1530:41:1;;;35319:34:0::1;::::0;1503:18:1;35319:34:0::1;;;;;;;35179:182:::0;;:::o;34792:204::-;18298:13;:11;:13::i;:::-;34856:11:::1;::::0;::::1;;34855:12;34847:47;;;::::0;-1:-1:-1;;;34847:47:0;;6305:2:1;34847:47:0::1;::::0;::::1;6287:21:1::0;6344:2;6324:18;;;6317:30;6383:25;6363:18;;;6356:53;6426:18;;34847:47:0::1;6103:347:1::0;34847:47:0::1;34905:11;:18:::0;;-1:-1:-1;;34934:18:0;;;;;34976:12:::1;34963:10;:25:::0;34792:204::o;22537:151::-;-1:-1:-1;;;;;22653:18:0;;;22626:7;22653:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22537:151::o;19318:201::-;18298:13;:11;:13::i;:::-;-1:-1:-1;;;;;19407:22:0;::::1;19399:73;;;::::0;-1:-1:-1;;;19399:73:0;;6657:2:1;19399:73:0::1;::::0;::::1;6639:21:1::0;6696:2;6676:18;;;6669:30;6735:34;6715:18;;;6708:62;-1:-1:-1;;;6786:18:1;;;6779:36;6832:19;;19399:73:0::1;6455:402:1::0;19399:73:0::1;19483:28;19502:8;19483:18;:28::i;18577:132::-:0;18485:6;;-1:-1:-1;;;;;18485:6:0;879:10;18641:23;18633:68;;;;-1:-1:-1;;;18633:68:0;;7064:2:1;18633:68:0;;;7046:21:1;;;7083:18;;;7076:30;7142:34;7122:18;;;7115:62;7194:18;;18633:68:0;6862:356:1;29261:380:0;-1:-1:-1;;;;;29397:19:0;;29389:68;;;;-1:-1:-1;;;29389:68:0;;7425:2:1;29389:68:0;;;7407:21:1;7464:2;7444:18;;;7437:30;7503:34;7483:18;;;7476:62;-1:-1:-1;;;7554:18:1;;;7547:34;7598:19;;29389:68:0;7223:400:1;29389:68:0;-1:-1:-1;;;;;29476:21:0;;29468:68;;;;-1:-1:-1;;;29468:68:0;;7830:2:1;29468:68:0;;;7812:21:1;7869:2;7849:18;;;7842:30;7908:34;7888:18;;;7881:62;-1:-1:-1;;;7959:18:1;;;7952:32;8001:19;;29468:68:0;7628:398:1;29468:68:0;-1:-1:-1;;;;;29549:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29601:32;;345:25:1;;;29601:32:0;;318:18:1;29601:32:0;;;;;;;29261:380;;;:::o;29932:453::-;30067:24;30094:25;30104:5;30111:7;30094:9;:25::i;:::-;30067:52;;-1:-1:-1;;30134:16:0;:37;30130:248;;30216:6;30196:16;:26;;30188:68;;;;-1:-1:-1;;;30188:68:0;;8233:2:1;30188:68:0;;;8215:21:1;8272:2;8252:18;;;8245:30;8311:31;8291:18;;;8284:59;8360:18;;30188:68:0;8031:353:1;30188:68:0;30300:51;30309:5;30316:7;30344:6;30325:16;:25;30300:8;:51::i;:::-;30056:329;29932:453;;;:::o;36011:4530::-;-1:-1:-1;;;;;36143:18:0;;36135:68;;;;-1:-1:-1;;;36135:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36222:16:0;;36214:64;;;;-1:-1:-1;;;36214:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36298:19:0;;;;;;:13;:19;;;;;;;;36297:20;:42;;;;-1:-1:-1;;;;;;36322:17:0;;;;;;:13;:17;;;;;;;;36321:18;36297:42;36289:102;;;;-1:-1:-1;;;36289:102:0;;9401:2:1;36289:102:0;;;9383:21:1;9440:2;9420:18;;;9413:30;9479:34;9459:18;;;9452:62;-1:-1:-1;;;9530:18:1;;;9523:45;9585:19;;36289:102:0;9199:411:1;36289:102:0;36414:12;36402:9;:24;36443:8;;;;;;;:57;;;;;36491:9;36473:14;;36455:15;:32;;;;:::i;:::-;:45;;36443:57;36439:349;;;36530:1;36521:6;;:10;36517:260;;;36562:1;36552:6;;:11;;;;;;;:::i;:::-;;;;;;;;36593:1;36582:7;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;36630:15:0;36613:14;:32;36517:260;;;36695:1;36686:6;:10;;;36715:7;:11;36745:8;:16;;-1:-1:-1;;36745:16:0;;;36517:260;36804:6;36814:1;36804:11;36800:93;;36832:28;36848:4;36854:2;36858:1;36832:15;:28::i;:::-;36011:4530;;;:::o;36800:93::-;18485:6;;-1:-1:-1;;;;;36935:15:0;;;18485:6;;36935:15;;;;:49;;-1:-1:-1;18485:6:0;;-1:-1:-1;;;;;36971:13:0;;;18485:6;;36971:13;;36935:49;:86;;;;-1:-1:-1;;;;;;37005:16:0;;;;36935:86;:128;;;;-1:-1:-1;;;;;;37042:21:0;;37056:6;37042:21;;36935:128;:158;;;;-1:-1:-1;37085:8:0;;-1:-1:-1;;;37085:8:0;;;;37084:9;36935:158;36913:1818;;;37133:11;;;;37128:221;;-1:-1:-1;;;;;37203:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37232:23:0;;;;;;:19;:23;;;;;;;;37203:52;37169:160;;;;-1:-1:-1;;;37169:160:0;;9950:2:1;37169:160:0;;;9932:21:1;9989:2;9969:18;;;9962:30;-1:-1:-1;;;10008:18:1;;;10001:52;10070:18;;37169:160:0;9748:346:1;37169:160:0;-1:-1:-1;;;;;37395:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;37452:35:0;;;;;;:31;:35;;;;;;;;37451:36;37395:92;37369:1347;;;37574:20;;37564:6;:30;;37530:169;;;;-1:-1:-1;;;37530:169:0;;10301:2:1;37530:169:0;;;10283:21:1;10340:2;10320:18;;;10313:30;10379:34;10359:18;;;10352:62;-1:-1:-1;;;10430:18:1;;;10423:51;10491:19;;37530:169:0;10099:417:1;37530:169:0;37782:9;;-1:-1:-1;;;;;22049:18:0;;22022:7;22049:18;;;;;;;;;;;37756:22;;:6;:22;:::i;:::-;:35;;37722:140;;;;-1:-1:-1;;;37722:140:0;;10723:2:1;37722:140:0;;;10705:21:1;10762:2;10742:18;;;10735:30;-1:-1:-1;;;10781:18:1;;;10774:49;10840:18;;37722:140:0;10521:343:1;37722:140:0;37891:13;;;;;;;37887:291;;;-1:-1:-1;;;;;37971:16:0;;;;;;:12;:16;;;;;;37990:12;-1:-1:-1;37933:163:0;;;;-1:-1:-1;;;37933:163:0;;11071:2:1;37933:163:0;;;11053:21:1;11110:2;11090:18;;;11083:30;11149:34;11129:18;;;11122:62;-1:-1:-1;;;11200:18:1;;;11193:32;11242:19;;37933:163:0;10869:398:1;37933:163:0;-1:-1:-1;;;;;38123:16:0;;;;;;:12;:16;;;;;38142:12;38123:31;;37887:291;37369:1347;;;-1:-1:-1;;;;;38248:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;38303:37:0;;;;;;:31;:37;;;;;;;;38302:38;38248:92;38222:494;;;38401:20;;38391:6;:30;;38383:97;;;;-1:-1:-1;;;38383:97:0;;11474:2:1;38383:97:0;;;11456:21:1;11513:2;11493:18;;;11486:30;11552:34;11532:18;;;11525:62;-1:-1:-1;;;11603:18:1;;;11596:52;11665:19;;38383:97:0;11272:418:1;38222:494:0;-1:-1:-1;;;;;38569:35:0;;;;;;:31;:35;;;;;;;;38564:152;;38663:9;;-1:-1:-1;;;;;22049:18:0;;22022:7;22049:18;;;;;;;;;;;38637:22;;:6;:22;:::i;:::-;:35;;38629:67;;;;-1:-1:-1;;;38629:67:0;;10723:2:1;38629:67:0;;;10705:21:1;10762:2;10742:18;;;10735:30;-1:-1:-1;;;10781:18:1;;;10774:49;10840:18;;38629:67:0;10521:343:1;38629:67:0;38792:4;38743:28;22049:18;;;;;;;;;;;38850;;38826:42;;;;;;;38899:35;;-1:-1:-1;38923:11:0;;;;;;;38899:35;:61;;;;-1:-1:-1;38952:8:0;;-1:-1:-1;;;38952:8:0;;;;38951:9;38899:61;:110;;;;-1:-1:-1;;;;;;38978:31:0;;;;;;:25;:31;;;;;;;;38977:32;38899:110;:153;;;;-1:-1:-1;;;;;;39027:25:0;;;;;;:19;:25;;;;;;;;39026:26;38899:153;:194;;;;-1:-1:-1;;;;;;39070:23:0;;;;;;:19;:23;;;;;;;;39069:24;38899:194;38881:326;;;39120:8;:15;;-1:-1:-1;;;;39120:15:0;-1:-1:-1;;;39120:15:0;;;39152:10;:8;:10::i;:::-;39179:8;:16;;-1:-1:-1;;;;39179:16:0;;;38881:326;39235:8;;-1:-1:-1;;;;;39260:25:0;;39219:12;39260:25;;;:19;:25;;;;;;39235:8;-1:-1:-1;;;39235:8:0;;;;;39234:9;;39260:25;;:52;;-1:-1:-1;;;;;;39289:23:0;;;;;;:19;:23;;;;;;;;39260:52;39256:100;;;-1:-1:-1;39339:5:0;39256:100;39368:12;39401:7;39397:1089;;;-1:-1:-1;;;;;39429:29:0;;;;;;:25;:29;;;;;;;;39425:893;;;39509:13;;39496:10;;:26;;;;:::i;:::-;39483:9;;:39;39479:393;;39554:64;39614:3;39554:55;39594:14;;39576;;39566:7;;:24;;;;:::i;:::-;39565:43;;;;:::i;:::-;39554:6;;:10;:55::i;:::-;:59;;:64::i;:::-;39547:71;;39425:893;;39479:393;39674:14;;39661:10;;:27;;;;:::i;:::-;39648:9;;:40;39644:228;;39720:48;39764:3;39720:39;39741:17;;39731:7;;:27;;;;:::i;39644:228::-;39824:28;39848:3;39824:19;39835:7;;39824:6;:10;;:19;;;;:::i;39425:893::-;39942:13;;39929:10;;:26;;;;:::i;:::-;39916:9;;:39;39912:391;;39987:64;40047:3;39987:55;40027:14;;40009;;39999:7;;:24;;;;:::i;39912:391::-;40107:14;;40094:10;;:27;;;;:::i;:::-;40081:9;;:40;40077:226;;40153:47;40196:3;40153:38;40173:17;;40164:6;;:26;;;;:::i;40077:226::-;40256:27;40279:3;40256:18;40267:6;;40256;:10;;:18;;;;:::i;:27::-;40249:34;;40077:226;40352:4;40330:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;40373:8:0;;40369:83;;40398:42;40414:4;40428;40435;40398:15;:42::i;:::-;40464:14;40474:4;40464:14;;:::i;:::-;;;39397:1089;40498:33;40514:4;40520:2;40524:6;40498:15;:33::i;:::-;36124:4417;;;;36011:4530;;;:::o;19679:191::-;19772:6;;;-1:-1:-1;;;;;19789:17:0;;;-1:-1:-1;;;;;;19789:17:0;;;;;;;19822:40;;19772:6;;;19789:17;19772:6;;19822:40;;19753:16;;19822:40;19742:128;19679:191;:::o;35681:188::-;-1:-1:-1;;;;;35764:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35764:39:0;;;;;;;;;;35821:40;;35764:39;;:31;35821:40;;;35681:188;;:::o;26140:840::-;-1:-1:-1;;;;;26271:18:0;;26263:68;;;;-1:-1:-1;;;26263:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26350:16:0;;26342:64;;;;-1:-1:-1;;;26342:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26492:15:0;;26470:19;26492:15;;;;;;;;;;;26526:21;;;;26518:72;;;;-1:-1:-1;;;26518:72:0;;11897:2:1;26518:72:0;;;11879:21:1;11936:2;11916:18;;;11909:30;11975:34;11955:18;;;11948:62;-1:-1:-1;;;12026:18:1;;;12019:36;12072:19;;26518:72:0;11695:402:1;26518:72:0;-1:-1:-1;;;;;26626:15:0;;;:9;:15;;;;;;;;;;;26644:20;;;26626:38;;26844:13;;;;;;;;;;:23;;;;;;26896:26;;345:25:1;;;26844:13:0;;26896:26;;318:18:1;26896:26:0;;;;;;;26935:37;36011:4530;42291:940;42374:4;42330:23;22049:18;;;;;;;;;;;42419;;42523;;22049;;42419;;42330:23;;42505:36;;42501:195;;;42554:7;;;;42291:940::o;42501:195::-;42631:18;;42612:15;:37;;:76;;42673:15;42612:76;;;42652:18;;42612:76;42597:91;;42732:21;42762:30;42779:12;42762:16;:30::i;:::-;42801:18;42822:44;:21;42848:17;42822:25;:44::i;:::-;42801:65;;42875:23;42932:1;42911:18;;:22;42907:208;;;42964:57;43003:17;42964:34;42979:18;;42964:10;:14;;:34;;;;:::i;:57::-;43053:1;43032:18;:22;42946:75;-1:-1:-1;42907:208:0;;;-1:-1:-1;43097:10:0;42907:208;43144:1;43123:18;:22;;;43176:15;;43168:57;;-1:-1:-1;;;;;43176:15:0;;;;43205;;43168:57;;43144:1;43168:57;43205:15;43176;43168:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;42291:940:0:o;8888:98::-;8946:7;8973:5;8977:1;8973;:5;:::i;:::-;8966:12;8888:98;-1:-1:-1;;;8888:98:0:o;9287:::-;9345:7;9372:5;9376:1;9372;:5;:::i;40549:480::-;40641:16;;;40655:1;40641:16;;;;;;;;40617:21;;40641:16;;;;;;;;;;-1:-1:-1;40641:16:0;40617:40;;40686:4;40668;40673:1;40668:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40668:23:0;;;-1:-1:-1;;;;;40668:23:0;;;;;40712:16;-1:-1:-1;;;;;40712:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40702:4;40707:1;40702:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;40702:33:0;;;-1:-1:-1;;;;;40702:33:0;;;;;40748:63;40765:4;40780:16;40799:11;40748:8;:63::i;:::-;40824:197;;-1:-1:-1;;;40824:197:0;;-1:-1:-1;;;;;40824:16:0;:67;;;;:197;;40906:11;;40932:1;;40948:4;;40975;;40995:15;;40824:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40604:425;40549:480;:::o;8531:98::-;8589:7;8616:5;8620:1;8616;:5;:::i;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;381:548::-;493:4;522:2;551;540:9;533:21;583:6;577:13;626:6;621:2;610:9;606:18;599:34;651:1;661:140;675:6;672:1;669:13;661:140;;;770:14;;;766:23;;760:30;736:17;;;755:2;732:26;725:66;690:10;;661:140;;;665:3;850:1;845:2;836:6;825:9;821:22;817:31;810:42;920:2;913;909:7;904:2;896:6;892:15;888:29;877:9;873:45;869:54;861:62;;;;381:548;;;;:::o;934:131::-;-1:-1:-1;;;;;1009:31:1;;999:42;;989:70;;1055:1;1052;1045:12;1070:315;1138:6;1146;1199:2;1187:9;1178:7;1174:23;1170:32;1167:52;;;1215:1;1212;1205:12;1167:52;1254:9;1241:23;1273:31;1298:5;1273:31;:::i;:::-;1323:5;1375:2;1360:18;;;;1347:32;;-1:-1:-1;;;1070:315:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2440:247::-;2499:6;2552:2;2540:9;2531:7;2527:23;2523:32;2520:52;;;2568:1;2565;2558:12;2520:52;2607:9;2594:23;2626:31;2651:5;2626:31;:::i;2925:416::-;2990:6;2998;3051:2;3039:9;3030:7;3026:23;3022:32;3019:52;;;3067:1;3064;3057:12;3019:52;3106:9;3093:23;3125:31;3150:5;3125:31;:::i;:::-;3175:5;-1:-1:-1;3232:2:1;3217:18;;3204:32;3274:15;;3267:23;3255:36;;3245:64;;3305:1;3302;3295:12;3245:64;3328:7;3318:17;;;2925:416;;;;;:::o;3346:388::-;3414:6;3422;3475:2;3463:9;3454:7;3450:23;3446:32;3443:52;;;3491:1;3488;3481:12;3443:52;3530:9;3517:23;3549:31;3574:5;3549:31;:::i;:::-;3599:5;-1:-1:-1;3656:2:1;3641:18;;3628:32;3669:33;3628:32;3669:33;:::i;4100:380::-;4179:1;4175:12;;;;4222;;;4243:61;;4297:4;4289:6;4285:17;4275:27;;4243:61;4350:2;4342:6;4339:14;4319:18;4316:38;4313:161;;4396:10;4391:3;4387:20;4384:1;4377:31;4431:4;4428:1;4421:15;4459:4;4456:1;4449:15;4313:161;;4100:380;;;:::o;4485:127::-;4546:10;4541:3;4537:20;4534:1;4527:31;4577:4;4574:1;4567:15;4601:4;4598:1;4591:15;4617:125;4682:9;;;4703:10;;;4700:36;;;4716:18;;:::i;5930:168::-;6003:9;;;6034;;6051:15;;;6045:22;;6031:37;6021:71;;6072:18;;:::i;8389:401::-;8591:2;8573:21;;;8630:2;8610:18;;;8603:30;8669:34;8664:2;8649:18;;8642:62;-1:-1:-1;;;8735:2:1;8720:18;;8713:35;8780:3;8765:19;;8389:401::o;8795:399::-;8997:2;8979:21;;;9036:2;9016:18;;;9009:30;9075:34;9070:2;9055:18;;9048:62;-1:-1:-1;;;9141:2:1;9126:18;;9119:33;9184:3;9169:19;;8795:399::o;9615:128::-;9682:9;;;9703:11;;;9700:37;;;9717:18;;:::i;12312:217::-;12352:1;12378;12368:132;;12422:10;12417:3;12413:20;12410:1;12403:31;12457:4;12454:1;12447:15;12485:4;12482:1;12475:15;12368:132;-1:-1:-1;12514:9:1;;12312:217::o;12666:127::-;12727:10;12722:3;12718:20;12715:1;12708:31;12758:4;12755:1;12748:15;12782:4;12779:1;12772:15;12798:251;12868:6;12921:2;12909:9;12900:7;12896:23;12892:32;12889:52;;;12937:1;12934;12927:12;12889:52;12969:9;12963:16;12988:31;13013:5;12988:31;:::i;13054:980::-;13316:4;13364:3;13353:9;13349:19;13395:6;13384:9;13377:25;13421:2;13459:6;13454:2;13443:9;13439:18;13432:34;13502:3;13497:2;13486:9;13482:18;13475:31;13526:6;13561;13555:13;13592:6;13584;13577:22;13630:3;13619:9;13615:19;13608:26;;13669:2;13661:6;13657:15;13643:29;;13690:1;13700:195;13714:6;13711:1;13708:13;13700:195;;;13779:13;;-1:-1:-1;;;;;13775:39:1;13763:52;;13870:15;;;;13835:12;;;;13811:1;13729:9;13700:195;;;-1:-1:-1;;;;;;;13951:32:1;;;;13946:2;13931:18;;13924:60;-1:-1:-1;;;14015:3:1;14000:19;13993:35;13912:3;13054:980;-1:-1:-1;;;13054:980:1:o
Swarm Source
ipfs://56651aae3490d34a5ea14c23d3b040abd3e900c7a55ace0569568fd95e47b8ca
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.