Sponsored
Latest 25 from a total of 34,757 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19488926 | 1 hr ago | IN | 0 ETH | 0.00000012 | ||||
Approve | 19488077 | 2 hrs ago | IN | 0 ETH | 0.00000006 | ||||
Approve | 19483896 | 4 hrs ago | IN | 0 ETH | 0.00000007 | ||||
Approve | 19483808 | 4 hrs ago | IN | 0 ETH | 0.00000015 | ||||
Approve | 19478853 | 7 hrs ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 19478817 | 7 hrs ago | IN | 0 ETH | 0.00000008 | ||||
Approve | 19475846 | 9 hrs ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 19475659 | 9 hrs ago | IN | 0 ETH | 0.00000007 | ||||
Approve | 19475641 | 9 hrs ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 19475032 | 9 hrs ago | IN | 0 ETH | 0.00000014 | ||||
Approve | 19462719 | 16 hrs ago | IN | 0 ETH | 0.00000014 | ||||
Transfer | 19457944 | 19 hrs ago | IN | 0 ETH | 0.00000022 | ||||
Approve | 19456979 | 19 hrs ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 19450759 | 23 hrs ago | IN | 0 ETH | 0.00000016 | ||||
Approve | 19450073 | 23 hrs ago | IN | 0 ETH | 0.00000014 | ||||
Approve | 19450057 | 23 hrs ago | IN | 0 ETH | 0.00000014 | ||||
Approve | 19449129 | 24 hrs ago | IN | 0 ETH | 0.00000016 | ||||
Transfer | 19442846 | 27 hrs ago | IN | 0 ETH | 0.00000021 | ||||
Transfer | 19442835 | 27 hrs ago | IN | 0 ETH | 0.00000035 | ||||
Approve | 19436938 | 30 hrs ago | IN | 0 ETH | 0.00000018 | ||||
Approve | 19427977 | 35 hrs ago | IN | 0 ETH | 0.00000062 | ||||
Approve | 19426649 | 36 hrs ago | IN | 0 ETH | 0.00000028 | ||||
Approve | 19422680 | 38 hrs ago | IN | 0 ETH | 0.00000073 | ||||
Approve | 19418491 | 41 hrs ago | IN | 0 ETH | 0.00000036 | ||||
Approve | 19417147 | 41 hrs ago | IN | 0 ETH | 0.00000023 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
14993353 | 104 days ago | 1.06334321 ETH | ||||
14993353 | 104 days ago | 0.75172919 ETH | ||||
12964976 | 151 days ago | 0.04618672 ETH | ||||
12964976 | 151 days ago | 0.04618672 ETH | ||||
12964974 | 151 days ago | 0.0729282 ETH | ||||
12964974 | 151 days ago | 0.0729282 ETH | ||||
12964967 | 151 days ago | 0.03198566 ETH | ||||
12964967 | 151 days ago | 0.03198566 ETH | ||||
12964964 | 151 days ago | 0.03198566 ETH | ||||
12964964 | 151 days ago | 0.03198566 ETH | ||||
12964958 | 151 days ago | 0.19907941 ETH | ||||
12964958 | 151 days ago | 0.19907941 ETH | ||||
12964947 | 151 days ago | 0.16774811 ETH | ||||
12964947 | 151 days ago | 0.16774811 ETH | ||||
12964946 | 151 days ago | 0.04103514 ETH | ||||
12964946 | 151 days ago | 0.04103514 ETH | ||||
12964926 | 151 days ago | 0.04052469 ETH | ||||
12964926 | 151 days ago | 0.04052469 ETH | ||||
12964892 | 151 days ago | 0.04847825 ETH | ||||
12964892 | 151 days ago | 0.04847825 ETH | ||||
12964883 | 151 days ago | 0.08943116 ETH | ||||
12964883 | 151 days ago | 0.08943116 ETH | ||||
12964840 | 151 days ago | 0.16387855 ETH | ||||
12964840 | 151 days ago | 0.16387855 ETH | ||||
12964816 | 151 days ago | 0.38175314 ETH |
Loading...
Loading
Contract Name:
Bonk
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)Audit Report
/** *Submitted for verification at basescan.org on 2024-04-10 */ /* * SPDX-License-Identifier: MIT * https://bonkonbase.vip/ * https://t.me/Bonk_On_Base * https://twitter.com/bonk_onbase */ pragma solidity 0.8.19; 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 substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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 ); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 upd 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 upd 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 upd 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"); require(recipient != address(0), "ERC20: transfer to 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 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 {} } 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); } } interface IDexFactory { 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 IDexRouter { 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 Bonk is Context, ERC20, Ownable { using SafeMath for uint256; mapping(address => bool) private _isExcludedFromFee; address payable private _taxWallet; uint256 firstBlock; uint64 private lastLiquifyTime; uint256 private buyFee = 15; uint256 private sellFee = 40; uint256 private _preventSwapBefore = 1; uint256 private _buyCount = 0; uint256 private _txAmountLimit; uint256 private _walletAmountLimit; uint256 private _swapbackMin; uint256 private _swapbackMax; IDexRouter private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private launchmode = true; mapping(address => bool) private _canTx; event MaxTxAmountUpdated(uint _txAmountLimit); event MaxWalletAmountUpdated(uint _walletAmountLimit); event FeesUpdated(uint buyFee, uint sellFee); event SwapbackUpdated(uint _swapbackMin, uint _swapbackMax); event FeeReceiverUpdated(address _taxWallet); event ExcludedFromFee(address account, bool status); event LimitsRemoved(); event TradingOpened(); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() ERC20("Bonk", "BONK") { uint256 _totalSupply = 100_000_000_000_000 * 10 ** 18; _txAmountLimit = (_totalSupply * 10) / 1000; _walletAmountLimit = (_totalSupply * 10) / 1000; _swapbackMin = (_totalSupply * 5) / 10000; _swapbackMax = (_totalSupply * 400) / 10000; _canTx [address(this)] = true; _taxWallet = payable(0xeeC4D0849341Bf537ad77A57dE8198cf1be45a1E); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; _mint(_msgSender(), _totalSupply); } receive() external payable {} function open() external onlyOwner { require(!tradingOpen, "trading is already open"); uniswapV2Router = IDexRouter( 0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24 ); _approve(address(this), address(uniswapV2Router), totalSupply()); uniswapV2Pair = IDexFactory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; firstBlock = block.number; lastLiquifyTime = uint64(block.number); _isExcludedFromFee[address(this)] = true; buyFee = 25; sellFee = 40; emit TradingOpened(); } function setMkt(address payable marketingWallet) external onlyOwner { _taxWallet = marketingWallet; emit FeeReceiverUpdated(marketingWallet); } function setTx(uint256 newValue) external onlyOwner { require(newValue >= 1, "Max tx cant be lower than 0.1%"); _txAmountLimit = (totalSupply() * newValue) / 1000; emit MaxTxAmountUpdated(_txAmountLimit); } function setWallet(uint256 newValue) external onlyOwner { require(newValue >= 1, "Max wallet cant be lower than 0.1%"); _walletAmountLimit = (totalSupply() * newValue) / 1000; emit MaxWalletAmountUpdated(_walletAmountLimit); } function setSwapback( uint256 taxSwapThreshold, uint256 maxTaxSwap ) external onlyOwner { _swapbackMin = (totalSupply() * taxSwapThreshold) / 10000; _swapbackMax = (totalSupply() * maxTaxSwap) / 10000; emit SwapbackUpdated(taxSwapThreshold, maxTaxSwap); } function setMode() external onlyOwner { require(launchmode, "Launch mode is already disabled"); launchmode = false; } function rmvLimits() external onlyOwner { _txAmountLimit = totalSupply(); _walletAmountLimit = totalSupply(); emit MaxTxAmountUpdated(totalSupply()); emit MaxWalletAmountUpdated(totalSupply()); } function setTax(uint256 buyTax, uint256 sellTax) external onlyOwner { require(buyTax <= 99, "Invalid buy tax value"); require(sellTax <= 99, "Invalid sell tax value"); buyFee = buyTax; sellFee = sellTax; emit FeesUpdated(buyTax, sellTax); } function removeETH() external { require(msg.sender == _taxWallet, "Only fee receiver can trigger"); _taxWallet.transfer(address(this).balance); } function addAddress(address[] calldata amount, bool status) external onlyOwner { for (uint256 i = 0; i < amount.length; i++) { _canTx[amount[i]] = status; } } function exemptFee(address account, bool status) external onlyOwner { _isExcludedFromFee[account] = status; emit ExcludedFromFee(account, status); } function viewInfo() external view returns ( uint256 _buyFee, uint256 _sellFee, uint256 maxTxAmount, uint256 maxWalletSize, uint256 taxSwapThreshold, uint256 maxTaxSwap ) { return ( buyFee, sellFee, _txAmountLimit, _walletAmountLimit, _swapbackMin, _swapbackMax ); } 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(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; if (from != owner() && to != owner() && !inSwap) { if (launchmode){ require(_canTx[from] || _canTx[to], ""); } taxAmount = amount.mul(buyFee).div(100); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) { require(amount <= _txAmountLimit, "Exceeds the _txAmountLimit."); require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); if (firstBlock + 3 > block.number) { require(!isContract(to)); } _buyCount++; } if (to != uniswapV2Pair && !_isExcludedFromFee[to]) { require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); } if (to == uniswapV2Pair && from != address(this)) { taxAmount = amount.mul(sellFee).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _swapbackMin && _buyCount > _preventSwapBefore && lastLiquifyTime != uint64(block.number) ) { swapTokensForEth(min(contractTokenBalance, _swapbackMax)); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } } if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function triggerSwap() external { require( msg.sender == _taxWallet || msg.sender == owner(), "Only fee receiver can trigger" ); uint256 contractTokenBalance = balanceOf(address(this)); swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { lastLiquifyTime = uint64(block.number); 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 sendETHToFee() private { bool success; (success, ) = address(_taxWallet).call{value: address(this).balance}( "" ); } }
Contract Security Audit
- Solidproof- Apr 12th, 2024 - Security Audit Report
[{"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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_txAmountLimit","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_walletAmountLimit","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":false,"internalType":"uint256","name":"_swapbackMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_swapbackMax","type":"uint256"}],"name":"SwapbackUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingOpened","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":"amount","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"addAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"exemptFee","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rmvLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWallet","type":"address"}],"name":"setMkt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"name":"setSwapback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewInfo","outputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletSize","type":"uint256"},{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600f600a556028600b556001600c556000600d556013805462ffffff60a81b1916600160b81b1790553480156200003a57600080fd5b5060405180604001604052806004815260200163426f6e6b60e01b81525060405180604001604052806004815260200163424f4e4b60e01b8152508160039081620000869190620003f0565b506004620000958282620003f0565b505050620000b2620000ac6200020960201b60201c565b6200020d565b6d04ee2d6d415b85acef81000000006103e8620000d182600a620004d2565b620000dd9190620004f2565b600e556103e8620000f082600a620004d2565b620000fc9190620004f2565b600f556127106200010f826005620004d2565b6200011b9190620004f2565b6010556127106200012f82610190620004d2565b6200013b9190620004f2565b601155306000908152601460205260408120805460ff19166001908117909155600780546001600160a01b03191673eec4d0849341bf537ad77a57de8198cf1be45a1e17905590600690620001986005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600690935281832080548516600190811790915560075490911683529120805490921617905562000202620001fb3390565b826200025f565b506200052b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002ba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002ce919062000515565b90915550506001600160a01b03821660009081526020819052604081208054839290620002fd90849062000515565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037757607f821691505b6020821081036200039857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034757600081815260208120601f850160051c81016020861015620003c75750805b601f850160051c820191505b81811015620003e857828155600101620003d3565b505050505050565b81516001600160401b038111156200040c576200040c6200034c565b62000424816200041d845462000362565b846200039e565b602080601f8311600181146200045c5760008415620004435750858301515b600019600386901b1c1916600185901b178555620003e8565b600085815260208120601f198616915b828110156200048d578886015182559484019460019091019084016200046c565b5085821015620004ac5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004ec57620004ec620004bc565b92915050565b6000826200051057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004ec57620004ec620004bc565b61227a806200053b6000396000f3fe6080604052600436106101a05760003560e01c8063667f6526116100ec578063a457c2d71161008a578063b5973bd411610064578063b5973bd4146104ac578063dd62ed3e146104cc578063f2fde38b14610512578063fcfff16f1461053257600080fd5b8063a457c2d714610420578063a9059cbb14610440578063ae6014801461046057600080fd5b8063715018a6116100c6578063715018a6146103b95780638da5cb5b146103ce5780638f937cc4146103f657806395d89b411461040b57600080fd5b8063667f65261461034e5780636ed6a48d1461036e57806370a082311461038357600080fd5b80631c537de5116101595780632dc4f5e6116101335780632dc4f5e6146102d2578063313ce567146102f2578063395093511461030e578063620cc86c1461032e57600080fd5b80631c537de51461027d578063217b6da61461029d57806323b872dd146102b257600080fd5b80630313fc4b146101ac57806306fdde03146101ce57806308ade0c9146101f9578063095ea7b31461020e57806314d0c4341461023e57806318160ddd1461025e57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101cc6101c7366004611db3565b610547565b005b3480156101da57600080fd5b506101e3610600565b6040516101f09190611dd5565b60405180910390f35b34801561020557600080fd5b506101cc610692565b34801561021a57600080fd5b5061022e610229366004611e38565b610724565b60405190151581526020016101f0565b34801561024a57600080fd5b506101cc610259366004611e64565b61073b565b34801561026a57600080fd5b506002545b6040519081526020016101f0565b34801561028957600080fd5b506101cc610298366004611e8b565b61081e565b3480156102a957600080fd5b506101cc6108bf565b3480156102be57600080fd5b5061022e6102cd366004611f11565b610955565b3480156102de57600080fd5b506101cc6102ed366004611f52565b6109ff565b3480156102fe57600080fd5b50604051601281526020016101f0565b34801561031a57600080fd5b5061022e610329366004611e38565b610a85565b34801561033a57600080fd5b506101cc610349366004611e64565b610ac1565b34801561035a57600080fd5b506101cc610369366004611db3565b610b92565b34801561037a57600080fd5b506101cc610c8f565b34801561038f57600080fd5b5061026f61039e366004611f8b565b6001600160a01b031660009081526020819052604090205490565b3480156103c557600080fd5b506101cc610d3d565b3480156103da57600080fd5b506005546040516001600160a01b0390911681526020016101f0565b34801561040257600080fd5b506101cc610d73565b34801561041757600080fd5b506101e3610e0e565b34801561042c57600080fd5b5061022e61043b366004611e38565b610e1d565b34801561044c57600080fd5b5061022e61045b366004611e38565b610eb6565b34801561046c57600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101f0565b3480156104b857600080fd5b506101cc6104c7366004611f8b565b610ec3565b3480156104d857600080fd5b5061026f6104e7366004611fa8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051e57600080fd5b506101cc61052d366004611f8b565b610f3b565b34801561053e57600080fd5b506101cc610fd3565b6005546001600160a01b0316331461057a5760405162461bcd60e51b815260040161057190611fd6565b60405180910390fd5b6127108261058760025490565b6105919190612021565b61059b9190612038565b601055612710816105ab60025490565b6105b59190612021565b6105bf9190612038565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191015b60405180910390a15050565b60606003805461060f9061205a565b80601f016020809104026020016040519081016040528092919081815260200182805461063b9061205a565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b6005546001600160a01b031633146106bc5760405162461bcd60e51b815260040161057190611fd6565b601354600160b81b900460ff166107155760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c6564006044820152606401610571565b6013805460ff60b81b19169055565b60006107313384846113ef565b5060015b92915050565b6005546001600160a01b031633146107655760405162461bcd60e51b815260040161057190611fd6565b60018110156107c15760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b6064820152608401610571565b6103e8816107ce60025490565b6107d89190612021565b6107e29190612038565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b6005546001600160a01b031633146108485760405162461bcd60e51b815260040161057190611fd6565b60005b828110156108b957816014600086868581811061086a5761086a61208e565b905060200201602081019061087f9190611f8b565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108b1816120a4565b91505061084b565b50505050565b6007546001600160a01b031633146109195760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610571565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610952573d6000803e3d6000fd5b50565b6000610962848484611513565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109e75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610571565b6109f485338584036113ef565b506001949350505050565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260040161057190611fd6565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991016105f4565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610731918590610abc9086906120bd565b6113ef565b6005546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161057190611fd6565b6001811015610b3c5760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e312500006044820152606401610571565b6103e881610b4960025490565b610b539190612021565b610b5d9190612038565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610813565b6005546001600160a01b03163314610bbc5760405162461bcd60e51b815260040161057190611fd6565b6063821115610c055760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b6044820152606401610571565b6063811115610c4f5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b6044820152606401610571565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191016105f4565b6005546001600160a01b03163314610cb95760405162461bcd60e51b815260040161057190611fd6565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610cef60025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610d2a60025490565b60405190815260200160405180910390a1565b6005546001600160a01b03163314610d675760405162461bcd60e51b815260040161057190611fd6565b610d7160006119e7565b565b6007546001600160a01b0316331480610d9657506005546001600160a01b031633145b610de25760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610571565b30600090815260208190526040902054610dfb81611a39565b478015610e0a57610e0a611bd2565b5050565b60606004805461060f9061205a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e9f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610571565b610eac33858584036113ef565b5060019392505050565b6000610731338484611513565b6005546001600160a01b03163314610eed5760405162461bcd60e51b815260040161057190611fd6565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee90602001610813565b6005546001600160a01b03163314610f655760405162461bcd60e51b815260040161057190611fd6565b6001600160a01b038116610fca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610571565b610952816119e7565b6005546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161057190611fd6565b601354600160a01b900460ff16156110575760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610571565b601280546001600160a01b031916734752ba5dbc23f44d87826276bf6fd6b1c372ad2490811790915561108f903090610abc60025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110691906120d0565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118c91906120d0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fd91906120d0565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730611245816001600160a01b031660009081526020819052604090205490565b60008061125a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112c2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112e791906120ed565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015611340573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611364919061211b565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff191660011790556019600a556028600b55517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6001600160a01b0383166114515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610571565b6001600160a01b0382166114b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610571565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115395760405162461bcd60e51b815260040161057190612138565b6001600160a01b03821661155f5760405162461bcd60e51b81526004016105719061217d565b600081116115c15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610571565b60006115d56005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561160457506005546001600160a01b03848116911614155b801561161a5750601354600160a81b900460ff16155b156119c257601354600160b81b900460ff1615611696576001600160a01b03841660009081526014602052604090205460ff168061167057506001600160a01b03831660009081526014602052604090205460ff165b6116965760405162461bcd60e51b81526020600482015260006024820152604401610571565b6116b660646116b0600a5485611c1f90919063ffffffff16565b90611c32565b6013549091506001600160a01b0385811691161480156116e457506012546001600160a01b03848116911614155b801561170957506001600160a01b03831660009081526006602052604090205460ff16155b1561181357600e548211156117605760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e00000000006044820152606401610571565b600f5482611783856001600160a01b031660009081526020819052604090205490565b61178d91906120bd565b11156117db5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610571565b4360085460036117eb91906120bd565b11156117fd57823b156117fd57600080fd5b600d805490600061180d836120a4565b91905055505b6013546001600160a01b0384811691161480159061184a57506001600160a01b03831660009081526006602052604090205460ff16155b156118ca57600f5482611872856001600160a01b031660009081526020819052604090205490565b61187c91906120bd565b11156118ca5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610571565b6013546001600160a01b0384811691161480156118f057506001600160a01b0384163014155b156119125761190f60646116b0600b5485611c1f90919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561194957506013546001600160a01b038581169116145b801561195e5750601354600160b01b900460ff165b801561196b575060105481115b801561197a5750600c54600d54115b801561199657506009544367ffffffffffffffff908116911614155b156119c0576119af6119aa82601154611c3e565b611a39565b4780156119be576119be611bd2565b505b505b80156119d3576119d3843083611c53565b6108b984846119e28585611da7565b611c53565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611aa057611aa061208e565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611af9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1d91906120d0565b81600181518110611b3057611b3061208e565b6001600160a01b039283166020918202929092010152601254611b5691309116846113ef565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b8f9085906000908690309042906004016121c0565b600060405180830381600087803b158015611ba957600080fd5b505af1158015611bbd573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146108b9576040519150601f19603f3d011682016040523d82523d6000602084013e6108b9565b6000611c2b8284612021565b9392505050565b6000611c2b8284612038565b6000818311611c4d5782611c2b565b50919050565b6001600160a01b038316611c795760405162461bcd60e51b815260040161057190612138565b6001600160a01b038216611c9f5760405162461bcd60e51b81526004016105719061217d565b6001600160a01b03831660009081526020819052604090205481811015611d175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610571565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d4e9084906120bd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d9a91815260200190565b60405180910390a36108b9565b6000611c2b8284612231565b60008060408385031215611dc657600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611e0257858101830151858201604001528201611de6565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461095257600080fd5b60008060408385031215611e4b57600080fd5b8235611e5681611e23565b946020939093013593505050565b600060208284031215611e7657600080fd5b5035919050565b801515811461095257600080fd5b600080600060408486031215611ea057600080fd5b833567ffffffffffffffff80821115611eb857600080fd5b818601915086601f830112611ecc57600080fd5b813581811115611edb57600080fd5b8760208260051b8501011115611ef057600080fd5b60209283019550935050840135611f0681611e7d565b809150509250925092565b600080600060608486031215611f2657600080fd5b8335611f3181611e23565b92506020840135611f4181611e23565b929592945050506040919091013590565b60008060408385031215611f6557600080fd5b8235611f7081611e23565b91506020830135611f8081611e7d565b809150509250929050565b600060208284031215611f9d57600080fd5b8135611c2b81611e23565b60008060408385031215611fbb57600080fd5b8235611fc681611e23565b91506020830135611f8081611e23565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107355761073561200b565b60008261205557634e487b7160e01b600052601260045260246000fd5b500490565b600181811c9082168061206e57607f821691505b602082108103611c4d57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000600182016120b6576120b661200b565b5060010190565b808201808211156107355761073561200b565b6000602082840312156120e257600080fd5b8151611c2b81611e23565b60008060006060848603121561210257600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561212d57600080fd5b8151611c2b81611e7d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122105784516001600160a01b0316835293830193918301916001016121eb565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156107355761073561200b56fea26469706673582212201c67b801847579c1c9d87b9ebc8c4fcf74c62abcc1888cd7afcded24fadc0f8d64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c8063667f6526116100ec578063a457c2d71161008a578063b5973bd411610064578063b5973bd4146104ac578063dd62ed3e146104cc578063f2fde38b14610512578063fcfff16f1461053257600080fd5b8063a457c2d714610420578063a9059cbb14610440578063ae6014801461046057600080fd5b8063715018a6116100c6578063715018a6146103b95780638da5cb5b146103ce5780638f937cc4146103f657806395d89b411461040b57600080fd5b8063667f65261461034e5780636ed6a48d1461036e57806370a082311461038357600080fd5b80631c537de5116101595780632dc4f5e6116101335780632dc4f5e6146102d2578063313ce567146102f2578063395093511461030e578063620cc86c1461032e57600080fd5b80631c537de51461027d578063217b6da61461029d57806323b872dd146102b257600080fd5b80630313fc4b146101ac57806306fdde03146101ce57806308ade0c9146101f9578063095ea7b31461020e57806314d0c4341461023e57806318160ddd1461025e57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101cc6101c7366004611db3565b610547565b005b3480156101da57600080fd5b506101e3610600565b6040516101f09190611dd5565b60405180910390f35b34801561020557600080fd5b506101cc610692565b34801561021a57600080fd5b5061022e610229366004611e38565b610724565b60405190151581526020016101f0565b34801561024a57600080fd5b506101cc610259366004611e64565b61073b565b34801561026a57600080fd5b506002545b6040519081526020016101f0565b34801561028957600080fd5b506101cc610298366004611e8b565b61081e565b3480156102a957600080fd5b506101cc6108bf565b3480156102be57600080fd5b5061022e6102cd366004611f11565b610955565b3480156102de57600080fd5b506101cc6102ed366004611f52565b6109ff565b3480156102fe57600080fd5b50604051601281526020016101f0565b34801561031a57600080fd5b5061022e610329366004611e38565b610a85565b34801561033a57600080fd5b506101cc610349366004611e64565b610ac1565b34801561035a57600080fd5b506101cc610369366004611db3565b610b92565b34801561037a57600080fd5b506101cc610c8f565b34801561038f57600080fd5b5061026f61039e366004611f8b565b6001600160a01b031660009081526020819052604090205490565b3480156103c557600080fd5b506101cc610d3d565b3480156103da57600080fd5b506005546040516001600160a01b0390911681526020016101f0565b34801561040257600080fd5b506101cc610d73565b34801561041757600080fd5b506101e3610e0e565b34801561042c57600080fd5b5061022e61043b366004611e38565b610e1d565b34801561044c57600080fd5b5061022e61045b366004611e38565b610eb6565b34801561046c57600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101f0565b3480156104b857600080fd5b506101cc6104c7366004611f8b565b610ec3565b3480156104d857600080fd5b5061026f6104e7366004611fa8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051e57600080fd5b506101cc61052d366004611f8b565b610f3b565b34801561053e57600080fd5b506101cc610fd3565b6005546001600160a01b0316331461057a5760405162461bcd60e51b815260040161057190611fd6565b60405180910390fd5b6127108261058760025490565b6105919190612021565b61059b9190612038565b601055612710816105ab60025490565b6105b59190612021565b6105bf9190612038565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191015b60405180910390a15050565b60606003805461060f9061205a565b80601f016020809104026020016040519081016040528092919081815260200182805461063b9061205a565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b6005546001600160a01b031633146106bc5760405162461bcd60e51b815260040161057190611fd6565b601354600160b81b900460ff166107155760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c6564006044820152606401610571565b6013805460ff60b81b19169055565b60006107313384846113ef565b5060015b92915050565b6005546001600160a01b031633146107655760405162461bcd60e51b815260040161057190611fd6565b60018110156107c15760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b6064820152608401610571565b6103e8816107ce60025490565b6107d89190612021565b6107e29190612038565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b6005546001600160a01b031633146108485760405162461bcd60e51b815260040161057190611fd6565b60005b828110156108b957816014600086868581811061086a5761086a61208e565b905060200201602081019061087f9190611f8b565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108b1816120a4565b91505061084b565b50505050565b6007546001600160a01b031633146109195760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610571565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610952573d6000803e3d6000fd5b50565b6000610962848484611513565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109e75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610571565b6109f485338584036113ef565b506001949350505050565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260040161057190611fd6565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991016105f4565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610731918590610abc9086906120bd565b6113ef565b6005546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161057190611fd6565b6001811015610b3c5760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e312500006044820152606401610571565b6103e881610b4960025490565b610b539190612021565b610b5d9190612038565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610813565b6005546001600160a01b03163314610bbc5760405162461bcd60e51b815260040161057190611fd6565b6063821115610c055760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b6044820152606401610571565b6063811115610c4f5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b6044820152606401610571565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191016105f4565b6005546001600160a01b03163314610cb95760405162461bcd60e51b815260040161057190611fd6565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610cef60025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610d2a60025490565b60405190815260200160405180910390a1565b6005546001600160a01b03163314610d675760405162461bcd60e51b815260040161057190611fd6565b610d7160006119e7565b565b6007546001600160a01b0316331480610d9657506005546001600160a01b031633145b610de25760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610571565b30600090815260208190526040902054610dfb81611a39565b478015610e0a57610e0a611bd2565b5050565b60606004805461060f9061205a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e9f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610571565b610eac33858584036113ef565b5060019392505050565b6000610731338484611513565b6005546001600160a01b03163314610eed5760405162461bcd60e51b815260040161057190611fd6565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee90602001610813565b6005546001600160a01b03163314610f655760405162461bcd60e51b815260040161057190611fd6565b6001600160a01b038116610fca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610571565b610952816119e7565b6005546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161057190611fd6565b601354600160a01b900460ff16156110575760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610571565b601280546001600160a01b031916734752ba5dbc23f44d87826276bf6fd6b1c372ad2490811790915561108f903090610abc60025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110691906120d0565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118c91906120d0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fd91906120d0565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730611245816001600160a01b031660009081526020819052604090205490565b60008061125a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112c2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112e791906120ed565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015611340573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611364919061211b565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff191660011790556019600a556028600b55517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6001600160a01b0383166114515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610571565b6001600160a01b0382166114b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610571565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115395760405162461bcd60e51b815260040161057190612138565b6001600160a01b03821661155f5760405162461bcd60e51b81526004016105719061217d565b600081116115c15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610571565b60006115d56005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561160457506005546001600160a01b03848116911614155b801561161a5750601354600160a81b900460ff16155b156119c257601354600160b81b900460ff1615611696576001600160a01b03841660009081526014602052604090205460ff168061167057506001600160a01b03831660009081526014602052604090205460ff165b6116965760405162461bcd60e51b81526020600482015260006024820152604401610571565b6116b660646116b0600a5485611c1f90919063ffffffff16565b90611c32565b6013549091506001600160a01b0385811691161480156116e457506012546001600160a01b03848116911614155b801561170957506001600160a01b03831660009081526006602052604090205460ff16155b1561181357600e548211156117605760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e00000000006044820152606401610571565b600f5482611783856001600160a01b031660009081526020819052604090205490565b61178d91906120bd565b11156117db5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610571565b4360085460036117eb91906120bd565b11156117fd57823b156117fd57600080fd5b600d805490600061180d836120a4565b91905055505b6013546001600160a01b0384811691161480159061184a57506001600160a01b03831660009081526006602052604090205460ff16155b156118ca57600f5482611872856001600160a01b031660009081526020819052604090205490565b61187c91906120bd565b11156118ca5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610571565b6013546001600160a01b0384811691161480156118f057506001600160a01b0384163014155b156119125761190f60646116b0600b5485611c1f90919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561194957506013546001600160a01b038581169116145b801561195e5750601354600160b01b900460ff165b801561196b575060105481115b801561197a5750600c54600d54115b801561199657506009544367ffffffffffffffff908116911614155b156119c0576119af6119aa82601154611c3e565b611a39565b4780156119be576119be611bd2565b505b505b80156119d3576119d3843083611c53565b6108b984846119e28585611da7565b611c53565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611aa057611aa061208e565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611af9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1d91906120d0565b81600181518110611b3057611b3061208e565b6001600160a01b039283166020918202929092010152601254611b5691309116846113ef565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b8f9085906000908690309042906004016121c0565b600060405180830381600087803b158015611ba957600080fd5b505af1158015611bbd573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146108b9576040519150601f19603f3d011682016040523d82523d6000602084013e6108b9565b6000611c2b8284612021565b9392505050565b6000611c2b8284612038565b6000818311611c4d5782611c2b565b50919050565b6001600160a01b038316611c795760405162461bcd60e51b815260040161057190612138565b6001600160a01b038216611c9f5760405162461bcd60e51b81526004016105719061217d565b6001600160a01b03831660009081526020819052604090205481811015611d175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610571565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d4e9084906120bd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d9a91815260200190565b60405180910390a36108b9565b6000611c2b8284612231565b60008060408385031215611dc657600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611e0257858101830151858201604001528201611de6565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461095257600080fd5b60008060408385031215611e4b57600080fd5b8235611e5681611e23565b946020939093013593505050565b600060208284031215611e7657600080fd5b5035919050565b801515811461095257600080fd5b600080600060408486031215611ea057600080fd5b833567ffffffffffffffff80821115611eb857600080fd5b818601915086601f830112611ecc57600080fd5b813581811115611edb57600080fd5b8760208260051b8501011115611ef057600080fd5b60209283019550935050840135611f0681611e7d565b809150509250925092565b600080600060608486031215611f2657600080fd5b8335611f3181611e23565b92506020840135611f4181611e23565b929592945050506040919091013590565b60008060408385031215611f6557600080fd5b8235611f7081611e23565b91506020830135611f8081611e7d565b809150509250929050565b600060208284031215611f9d57600080fd5b8135611c2b81611e23565b60008060408385031215611fbb57600080fd5b8235611fc681611e23565b91506020830135611f8081611e23565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107355761073561200b565b60008261205557634e487b7160e01b600052601260045260246000fd5b500490565b600181811c9082168061206e57607f821691505b602082108103611c4d57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000600182016120b6576120b661200b565b5060010190565b808201808211156107355761073561200b565b6000602082840312156120e257600080fd5b8151611c2b81611e23565b60008060006060848603121561210257600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561212d57600080fd5b8151611c2b81611e7d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122105784516001600160a01b0316835293830193918301916001016121eb565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156107355761073561200b56fea26469706673582212201c67b801847579c1c9d87b9ebc8c4fcf74c62abcc1888cd7afcded24fadc0f8d64736f6c63430008130033
Deployed Bytecode Sourcemap
25438:9656:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29148:310;;;;;;;;;;-1:-1:-1;29148:310:0;;;;;:::i;:::-;;:::i;:::-;;11036:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29466:140;;;;;;;;;;;;;:::i;13269:194::-;;;;;;;;;;-1:-1:-1;13269:194:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;13269:194:0;1276:187:1;28882:258:0;;;;;;;;;;-1:-1:-1;28882:258:0;;;;;:::i;:::-;;:::i;12156:108::-;;;;;;;;;;-1:-1:-1;12244:12:0;;12156:108;;;1799:25:1;;;1787:2;1772:18;12156:108:0;1653:177:1;30332:217:0;;;;;;;;;;-1:-1:-1;30332:217:0;;;;;:::i;:::-;;:::i;30156:168::-;;;;;;;;;;;;;:::i;13941:529::-;;;;;;;;;;-1:-1:-1;13941:529:0;;;;;:::i;:::-;;:::i;30557:171::-;;;;;;;;;;-1:-1:-1;30557:171:0;;;;;:::i;:::-;;:::i;11998:93::-;;;;;;;;;;-1:-1:-1;11998:93:0;;12081:2;3703:36:1;;3691:2;3676:18;11998:93:0;3561:184:1;14875:290:0;;;;;;;;;;-1:-1:-1;14875:290:0;;;;;:::i;:::-;;:::i;28636:238::-;;;;;;;;;;-1:-1:-1;28636:238:0;;;;;:::i;:::-;;:::i;29858:290::-;;;;;;;;;;-1:-1:-1;29858:290:0;;;;;:::i;:::-;;:::i;29614:236::-;;;;;;;;;;;;;:::i;12327:143::-;;;;;;;;;;-1:-1:-1;12327:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12444:18:0;12417:7;12444:18;;;;;;;;;;;;12327:143;22375:103;;;;;;;;;;;;;:::i;21724:87::-;;;;;;;;;;-1:-1:-1;21797:6:0;;21724:87;;-1:-1:-1;;;;;21797:6:0;;;4148:51:1;;4136:2;4121:18;21724:87:0;4002:203:1;33937:436:0;;;;;;;;;;;;;:::i;11255:104::-;;;;;;;;;;;;;:::i;15664:475::-;;;;;;;;;;-1:-1:-1;15664:475:0;;;;;:::i;:::-;;:::i;12683:200::-;;;;;;;;;;-1:-1:-1;12683:200:0;;;;;:::i;:::-;;:::i;30736:485::-;;;;;;;;;;-1:-1:-1;31058:6:0;;31079:7;;31101:14;;31130:18;;31163:12;;31190;;30736:485;;;4497:25:1;;;4553:2;4538:18;;4531:34;;;;4581:18;;;4574:34;;;;4639:2;4624:18;;4617:34;4682:3;4667:19;;4660:35;4726:3;4711:19;;4704:35;4484:3;4469:19;30736:485:0;4210:535:1;28460:168:0;;;;;;;;;;-1:-1:-1;28460:168:0;;;;;:::i;:::-;;:::i;12946:176::-;;;;;;;;;;-1:-1:-1;12946:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13087:18:0;;;13060:7;13087:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12946:176;22633:238;;;;;;;;;;-1:-1:-1;22633:238:0;;;;;:::i;:::-;;:::i;27428:1024::-;;;;;;;;;;;;;:::i;29148:310::-;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;;;;;;;;;29322:5:::1;29302:16;29286:13;12244:12:::0;;;12156:108;29286:13:::1;:32;;;;:::i;:::-;29285:42;;;;:::i;:::-;29270:12;:57:::0;29384:5:::1;29370:10:::0;29354:13:::1;12244:12:::0;;;12156:108;29354:13:::1;:26;;;;:::i;:::-;29353:36;;;;:::i;:::-;29338:12;:51:::0;29405:45:::1;::::0;;6465:25:1;;;6521:2;6506:18;;6499:34;;;29405:45:0::1;::::0;6438:18:1;29405:45:0::1;;;;;;;;29148:310:::0;;:::o;11036:100::-;11090:13;11123:5;11116:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11036:100;:::o;29466:140::-;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;29523:10:::1;::::0;-1:-1:-1;;;29523:10:0;::::1;;;29515:54;;;::::0;-1:-1:-1;;;29515:54:0;;7131:2:1;29515:54:0::1;::::0;::::1;7113:21:1::0;7170:2;7150:18;;;7143:30;7209:33;7189:18;;;7182:61;7260:18;;29515:54:0::1;6929:355:1::0;29515:54:0::1;29580:10;:18:::0;;-1:-1:-1;;;;29580:18:0::1;::::0;;29466:140::o;13269:194::-;13377:4;13394:39;10122:10;13417:7;13426:6;13394:8;:39::i;:::-;-1:-1:-1;13451:4:0;13269:194;;;;;:::o;28882:258::-;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;28969:1:::1;28957:8;:13;;28949:60;;;::::0;-1:-1:-1;;;28949:60:0;;7491:2:1;28949:60:0::1;::::0;::::1;7473:21:1::0;7530:2;7510:18;;;7503:30;7569:34;7549:18;;;7542:62;-1:-1:-1;;;7620:18:1;;;7613:32;7662:19;;28949:60:0::1;7289:398:1::0;28949:60:0::1;29070:4;29058:8;29042:13;12244:12:::0;;;12156:108;29042:13:::1;:24;;;;:::i;:::-;29041:33;;;;:::i;:::-;29020:18;:54:::0;;;29090:42:::1;::::0;1799:25:1;;;29090:42:0::1;::::0;1787:2:1;1772:18;29090:42:0::1;;;;;;;;28882:258:::0;:::o;30332:217::-;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;30450:9:::1;30445:97;30465:17:::0;;::::1;30445:97;;;30524:6;30504;:17;30511:6;;30518:1;30511:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30504:17:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;30504:17:0;:26;;-1:-1:-1;;30504:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30484:3;::::1;::::0;::::1;:::i;:::-;;;;30445:97;;;;30332:217:::0;;;:::o;30156:168::-;30219:10;;-1:-1:-1;;;;;30219:10:0;30205;:24;30197:66;;;;-1:-1:-1;;;30197:66:0;;8166:2:1;30197:66:0;;;8148:21:1;8205:2;8185:18;;;8178:30;8244:31;8224:18;;;8217:59;8293:18;;30197:66:0;7964:353:1;30197:66:0;30274:10;;:42;;-1:-1:-1;;;;;30274:10:0;;;;30294:21;30274:42;;;;;:10;:42;:10;:42;30294:21;30274:10;:42;;;;;;;;;;;;;;;;;;;;;30156:168::o;13941:529::-;14081:4;14098:36;14108:6;14116:9;14127:6;14098:9;:36::i;:::-;-1:-1:-1;;;;;14174:19:0;;14147:24;14174:19;;;:11;:19;;;;;;;;10122:10;14174:33;;;;;;;;14240:26;;;;14218:116;;;;-1:-1:-1;;;14218:116:0;;8524:2:1;14218:116:0;;;8506:21:1;8563:2;8543:18;;;8536:30;8602:34;8582:18;;;8575:62;-1:-1:-1;;;8653:18:1;;;8646:38;8701:19;;14218:116:0;8322:404:1;14218:116:0;14370:57;14379:6;10122:10;14420:6;14401:16;:25;14370:8;:57::i;:::-;-1:-1:-1;14458:4:0;;13941:529;-1:-1:-1;;;;13941:529:0:o;30557:171::-;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30636:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:36;;-1:-1:-1;;30636:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30688:32;;8899:51:1;;;8966:18;;;8959:50;30688:32:0::1;::::0;8872:18:1;30688:32:0::1;8731:284:1::0;14875:290:0;10122:10;14988:4;15077:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15077:34:0;;;;;;;;;;14988:4;;15005:130;;15055:7;;15077:47;;15114:10;;15077:47;:::i;:::-;15005:8;:130::i;28636:238::-;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;28719:1:::1;28707:8;:13;;28699:56;;;::::0;-1:-1:-1;;;28699:56:0;;9352:2:1;28699:56:0::1;::::0;::::1;9334:21:1::0;9391:2;9371:18;;;9364:30;9430:32;9410:18;;;9403:60;9480:18;;28699:56:0::1;9150:354:1::0;28699:56:0::1;28812:4;28800:8;28784:13;12244:12:::0;;;12156:108;28784:13:::1;:24;;;;:::i;:::-;28783:33;;;;:::i;:::-;28766:14;:50:::0;;;28832:34:::1;::::0;1799:25:1;;;28832:34:0::1;::::0;1787:2:1;1772:18;28832:34:0::1;1653:177:1::0;29858:290:0;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;29955:2:::1;29945:6;:12;;29937:46;;;::::0;-1:-1:-1;;;29937:46:0;;9711:2:1;29937:46:0::1;::::0;::::1;9693:21:1::0;9750:2;9730:18;;;9723:30;-1:-1:-1;;;9769:18:1;;;9762:51;9830:18;;29937:46:0::1;9509:345:1::0;29937:46:0::1;30013:2;30002:7;:13;;29994:48;;;::::0;-1:-1:-1;;;29994:48:0;;10061:2:1;29994:48:0::1;::::0;::::1;10043:21:1::0;10100:2;10080:18;;;10073:30;-1:-1:-1;;;10119:18:1;;;10112:52;10181:18;;29994:48:0::1;9859:346:1::0;29994:48:0::1;30053:6;:15:::0;;;30079:7:::1;:17:::0;;;30112:28:::1;::::0;;6465:25:1;;;6521:2;6506:18;;6499:34;;;30112:28:0::1;::::0;6438:18:1;30112:28:0::1;6291:248:1::0;29614:236:0;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;12244:12;;29665:14:::1;:30:::0;12244:12;;29706:18:::1;:34:::0;29756:33:::1;29775:13;12244:12:::0;;;12156:108;29775:13:::1;29756:33;::::0;1799:25:1;;;1787:2;1772:18;29756:33:0::1;;;;;;;29805:37;29828:13;12244:12:::0;;;12156:108;29828:13:::1;29805:37;::::0;1799:25:1;;;1787:2;1772:18;29805:37:0::1;;;;;;;29614:236::o:0;22375:103::-;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;22440:30:::1;22467:1;22440:18;:30::i;:::-;22375:103::o:0;33937:436::-;34016:10;;-1:-1:-1;;;;;34016:10:0;34002;:24;;:49;;-1:-1:-1;21797:6:0;;-1:-1:-1;;;;;21797:6:0;34030:10;:21;34002:49;33980:128;;;;-1:-1:-1;;;33980:128:0;;8166:2:1;33980:128:0;;;8148:21:1;8205:2;8185:18;;;8178:30;8244:31;8224:18;;;8217:59;8293:18;;33980:128:0;7964:353:1;33980:128:0;34168:4;34119:28;12444:18;;;;;;;;;;;34187:38;12444:18;34187:16;:38::i;:::-;34265:21;34301:22;;34297:69;;34340:14;:12;:14::i;:::-;33969:404;;33937:436::o;11255:104::-;11311:13;11344:7;11337:14;;;;;:::i;15664:475::-;10122:10;15782:4;15826:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15826:34:0;;;;;;;;;;15893:35;;;;15871:122;;;;-1:-1:-1;;;15871:122:0;;10412:2:1;15871:122:0;;;10394:21:1;10451:2;10431:18;;;10424:30;10490:34;10470:18;;;10463:62;-1:-1:-1;;;10541:18:1;;;10534:35;10586:19;;15871:122:0;10210:401:1;15871:122:0;16029:67;10122:10;16052:7;16080:15;16061:16;:34;16029:8;:67::i;:::-;-1:-1:-1;16127:4:0;;15664:475;-1:-1:-1;;;15664:475:0:o;12683:200::-;12794:4;12811:42;10122:10;12835:9;12846:6;12811:9;:42::i;28460:168::-;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;28539:10:::1;:28:::0;;-1:-1:-1;;;;;;28539:28:0::1;-1:-1:-1::0;;;;;28539:28:0;::::1;::::0;;::::1;::::0;;;28585:35:::1;::::0;4148:51:1;;;28585:35:0::1;::::0;4136:2:1;4121:18;28585:35:0::1;4002:203:1::0;22633:238:0;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22736:22:0;::::1;22714:110;;;::::0;-1:-1:-1;;;22714:110:0;;11034:2:1;22714:110:0::1;::::0;::::1;11016:21:1::0;11073:2;11053:18;;;11046:30;11112:34;11092:18;;;11085:62;-1:-1:-1;;;11163:18:1;;;11156:36;11209:19;;22714:110:0::1;10832:402:1::0;22714:110:0::1;22835:28;22854:8;22835:18;:28::i;27428:1024::-:0;21797:6;;-1:-1:-1;;;;;21797:6:0;10122:10;21944:23;21936:68;;;;-1:-1:-1;;;21936:68:0;;;;;;;:::i;:::-;27483:11:::1;::::0;-1:-1:-1;;;27483:11:0;::::1;;;27482:12;27474:48;;;::::0;-1:-1:-1;;;27474:48:0;;11441:2:1;27474:48:0::1;::::0;::::1;11423:21:1::0;11480:2;11460:18;;;11453:30;11519:25;11499:18;;;11492:53;11562:18;;27474:48:0::1;11239:347:1::0;27474:48:0::1;27533:15;:96:::0;;-1:-1:-1;;;;;;27533:96:0::1;27576:42;27533:96:::0;;::::1;::::0;;;27640:64:::1;::::0;27657:4:::1;::::0;27690:13:::1;12244:12:::0;;;12156:108;27640:64:::1;27743:15;;;;;;;;;-1:-1:-1::0;;;;;27743:15:0::1;-1:-1:-1::0;;;;;27743:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27731:49:0::1;;27803:4;27823:15;;;;;;;;;-1:-1:-1::0;;;;;27823:15:0::1;-1:-1:-1::0;;;;;27823:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27731:125;::::0;-1:-1:-1;;;;;;27731:125:0::1;::::0;;;;;;-1:-1:-1;;;;;12077:15:1;;;27731:125:0::1;::::0;::::1;12059:34:1::0;12129:15;;12109:18;;;12102:43;11994:18;;27731:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27715:13;:141:::0;;-1:-1:-1;;;;;27715:141:0;;::::1;-1:-1:-1::0;;;;;;27715:141:0;;::::1;;::::0;;27867:15:::1;::::0;::::1;:31;27906:21;27951:4;27971:24;27951:4:::0;-1:-1:-1;;;;;12444:18:0;12417:7;12444:18;;;;;;;;;;;;12327:143;27971:24:::1;28010:1;28026::::0;28042:7:::1;21797:6:::0;;-1:-1:-1;;;;;21797:6:0;;21724:87;28042:7:::1;27867:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;27867:223:0;;;-1:-1:-1;;;;;12515:15:1;;;27867:223:0::1;::::0;::::1;12497:34:1::0;12547:18;;;12540:34;;;;12590:18;;;12583:34;;;;12633:18;;;12626:34;12697:15;;;12676:19;;;12669:44;28064:15:0::1;12729:19:1::0;;;12722:35;12431:19;;27867:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;28108:13:0::1;::::0;28139:15:::1;::::0;28101:71:::1;::::0;-1:-1:-1;;;28101:71:0;;-1:-1:-1;;;;;28139:15:0;;::::1;28101:71;::::0;::::1;13253:51:1::0;-1:-1:-1;;13320:18:1;;;13313:34;28108:13:0;::::1;::::0;-1:-1:-1;28101:29:0::1;::::0;13226:18:1;;28101:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28183:11:0::1;:18:::0;;-1:-1:-1;;;;28212:18:0;-1:-1:-1;;;28212:18:0;;;28254:12:::1;28241:10;:25:::0;;;28277:15:::1;:38:::0;;-1:-1:-1;;28277:38:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;28353:4:::1;-1:-1:-1::0;28326:33:0;;;:18:::1;:33;::::0;;;;;:40;;-1:-1:-1;;28326:40:0::1;-1:-1:-1::0;28326:40:0::1;::::0;;28386:2:::1;-1:-1:-1::0;28377:11:0;28409:2:::1;-1:-1:-1::0;28399:12:0;28429:15;::::1;::::0;-1:-1:-1;28429:15:0::1;27428:1024::o:0;19447:380::-;-1:-1:-1;;;;;19583:19:0;;19575:68;;;;-1:-1:-1;;;19575:68:0;;13810:2:1;19575:68:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:34;13983:19;;19575:68:0;13608:400:1;19575:68:0;-1:-1:-1;;;;;19662:21:0;;19654:68;;;;-1:-1:-1;;;19654:68:0;;14215:2:1;19654:68:0;;;14197:21:1;14254:2;14234:18;;;14227:30;14293:34;14273:18;;;14266:62;-1:-1:-1;;;14344:18:1;;;14337:32;14386:19;;19654:68:0;14013:398:1;19654:68:0;-1:-1:-1;;;;;19735:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19787:32;;1799:25:1;;;19787:32:0;;1772:18:1;19787:32:0;;;;;;;19447:380;;;:::o;31229:2382::-;-1:-1:-1;;;;;31361:18:0;;31353:68;;;;-1:-1:-1;;;31353:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31440:16:0;;31432:64;;;;-1:-1:-1;;;31432:64:0;;;;;;;:::i;:::-;31524:1;31515:6;:10;31507:64;;;;-1:-1:-1;;;31507:64:0;;15428:2:1;31507:64:0;;;15410:21:1;15467:2;15447:18;;;15440:30;15506:34;15486:18;;;15479:62;-1:-1:-1;;;15557:18:1;;;15550:39;15606:19;;31507:64:0;15226:405:1;31507:64:0;31582:17;31626:7;21797:6;;-1:-1:-1;;;;;21797:6:0;;21724:87;31626:7;-1:-1:-1;;;;;31618:15:0;:4;-1:-1:-1;;;;;31618:15:0;;;:32;;;;-1:-1:-1;21797:6:0;;-1:-1:-1;;;;;31637:13:0;;;21797:6;;31637:13;;31618:32;:43;;;;-1:-1:-1;31655:6:0;;-1:-1:-1;;;31655:6:0;;;;31654:7;31618:43;31614:1826;;;31682:10;;-1:-1:-1;;;31682:10:0;;;;31678:89;;;-1:-1:-1;;;;;31720:12:0;;;;;;:6;:12;;;;;;;;;:26;;-1:-1:-1;;;;;;31736:10:0;;;;;;:6;:10;;;;;;;;31720:26;31712:39;;;;-1:-1:-1;;;31712:39:0;;15838:2:1;31712:39:0;;;15820:21:1;-1:-1:-1;15857:18:1;;;15850:29;15896:18;;31712:39:0;15636:284:1;31712:39:0;31795:27;31818:3;31795:18;31806:6;;31795;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;31869:13;;31783:39;;-1:-1:-1;;;;;;31861:21:0;;;31869:13;;31861:21;:72;;;;-1:-1:-1;31917:15:0;;-1:-1:-1;;;;;31903:30:0;;;31917:15;;31903:30;;31861:72;:116;;;;-1:-1:-1;;;;;;31955:22:0;;;;;;:18;:22;;;;;;;;31954:23;31861:116;31839:568;;;32030:14;;32020:6;:24;;32012:64;;;;-1:-1:-1;;;32012:64:0;;16127:2:1;32012:64:0;;;16109:21:1;16166:2;16146:18;;;16139:30;16205:29;16185:18;;;16178:57;16252:18;;32012:64:0;15925:351:1;32012:64:0;32151:18;;32141:6;32125:13;32135:2;-1:-1:-1;;;;;12444:18:0;12417:7;12444:18;;;;;;;;;;;;12327:143;32125:13;:22;;;;:::i;:::-;:44;;32095:144;;;;-1:-1:-1;;;32095:144:0;;16483:2:1;32095:144:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:28;16541:18;;;16534:56;16607:18;;32095:144:0;16281:350:1;32095:144:0;32281:12;32264:10;;32277:1;32264:14;;;;:::i;:::-;:29;32260:102;;;33865:20;;33913:8;32318:24;;;;;;32380:9;:11;;;:9;:11;;;:::i;:::-;;;;;;31839:568;32433:13;;-1:-1:-1;;;;;32427:19:0;;;32433:13;;32427:19;;;;:46;;-1:-1:-1;;;;;;32451:22:0;;;;;;:18;:22;;;;;;;;32450:23;32427:46;32423:231;;;32550:18;;32540:6;32524:13;32534:2;-1:-1:-1;;;;;12444:18:0;12417:7;12444:18;;;;;;;;;;;;12327:143;32524:13;:22;;;;:::i;:::-;:44;;32494:144;;;;-1:-1:-1;;;32494:144:0;;16483:2:1;32494:144:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:28;16541:18;;;16534:56;16607:18;;32494:144:0;16281:350:1;32494:144:0;32680:13;;-1:-1:-1;;;;;32674:19:0;;;32680:13;;32674:19;:44;;;;-1:-1:-1;;;;;;32697:21:0;;32713:4;32697:21;;32674:44;32670:125;;;32751:28;32775:3;32751:19;32762:7;;32751:6;:10;;:19;;;;:::i;:28::-;32739:40;;32670:125;32860:4;32811:28;12444:18;;;;;;;;;;;32904:6;;-1:-1:-1;;;32904:6:0;;;;32903:7;:47;;;;-1:-1:-1;32937:13:0;;-1:-1:-1;;;;;32931:19:0;;;32937:13;;32931:19;32903:47;:79;;;;-1:-1:-1;32971:11:0;;-1:-1:-1;;;32971:11:0;;;;32903:79;:135;;;;;33026:12;;33003:20;:35;32903:135;:186;;;;;33071:18;;33059:9;;:30;32903:186;:246;;;;-1:-1:-1;33110:15:0;;33136:12;33110:39;;;;:15;;:39;;32903:246;32881:548;;;33184:57;33201:39;33205:20;33227:12;;33201:3;:39::i;:::-;33184:16;:57::i;:::-;33289:21;33333:22;;33329:85;;33380:14;:12;:14::i;:::-;33165:264;32881:548;31663:1777;31614:1826;33456:13;;33452:93;;33486:47;33502:4;33516;33523:9;33486:15;:47::i;:::-;33555:48;33571:4;33577:2;33581:21;:6;33592:9;33581:10;:21::i;:::-;33555:15;:48::i;23031:191::-;23124:6;;;-1:-1:-1;;;;;23141:17:0;;;-1:-1:-1;;;;;;23141:17:0;;;;;;;23174:40;;23124:6;;;23141:17;23124:6;;23174:40;;23105:16;;23174:40;23094:128;23031:191;:::o;34381:532::-;26682:6;:13;;-1:-1:-1;;;;26682:13:0;-1:-1:-1;;;26682:13:0;;;34459:15:::1;:38:::0;;::::1;34484:12;34459:38;-1:-1:-1::0;;34459:38:0;;::::1;;::::0;;34532:16:::1;::::0;;34546:1:::1;34532:16:::0;;;;;::::1;::::0;;-1:-1:-1;;34532:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;34532:16:0::1;34508:40;;34577:4;34559;34564:1;34559:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34559:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;34603:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;34603:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;34559:7;;34603:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34593:4;34598:1;34593:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34593:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;34668:15:::1;::::0;34636:62:::1;::::0;34653:4:::1;::::0;34668:15:::1;34686:11:::0;34636:8:::1;:62::i;:::-;34709:15;::::0;:196:::1;::::0;-1:-1:-1;;;34709:196:0;;-1:-1:-1;;;;;34709:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;34790:11;;34709:15:::1;::::0;34832:4;;34859::::1;::::0;34879:15:::1;::::0;34709:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26718:6:0;:14;;-1:-1:-1;;;;26718:14:0;;;-1:-1:-1;;;;34381:532:0:o;34921:170::-;35009:10;;35001:82;;34964:12;;-1:-1:-1;;;;;35009:10:0;;35033:21;;34964:12;35001:82;34964:12;35001:82;35033:21;35009:10;35001:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3401:98;3459:7;3486:5;3490:1;3486;:5;:::i;:::-;3479:12;3401:98;-1:-1:-1;;;3401:98:0:o;3800:::-;3858:7;3885:5;3889:1;3885;:5;:::i;33619:107::-;33676:7;33708:1;33704;:5;33703:15;;33717:1;33703:15;;;-1:-1:-1;33713:1:0;33619:107;-1:-1:-1;33619:107:0:o;16629:770::-;-1:-1:-1;;;;;16769:20:0;;16761:70;;;;-1:-1:-1;;;16761:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16850:23:0;;16842:71;;;;-1:-1:-1;;;16842:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17010:17:0;;16986:21;17010:17;;;;;;;;;;;17060:23;;;;17038:111;;;;-1:-1:-1;;;17038:111:0;;18165:2:1;17038:111:0;;;18147:21:1;18204:2;18184:18;;;18177:30;18243:34;18223:18;;;18216:62;-1:-1:-1;;;18294:18:1;;;18287:36;18340:19;;17038:111:0;17963:402:1;17038:111:0;-1:-1:-1;;;;;17185:17:0;;;:9;:17;;;;;;;;;;;17205:22;;;17185:42;;17249:20;;;;;;;;:30;;17221:6;;17185:9;17249:30;;17221:6;;17249:30;:::i;:::-;;;;;;;;17314:9;-1:-1:-1;;;;;17297:35:0;17306:6;-1:-1:-1;;;;;17297:35:0;;17325:6;17297:35;;;;1799:25:1;;1787:2;1772:18;;1653:177;17297:35:0;;;;;;;;17345:46;20427:125;3044:98;3102:7;3129:5;3133:1;3129;:5;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:180::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;-1:-1:-1;1619:23:1;;1468:180;-1:-1:-1;1468:180:1:o;1835:118::-;1921:5;1914:13;1907:21;1900:5;1897:32;1887:60;;1943:1;1940;1933:12;1958:750;2050:6;2058;2066;2119:2;2107:9;2098:7;2094:23;2090:32;2087:52;;;2135:1;2132;2125:12;2087:52;2175:9;2162:23;2204:18;2245:2;2237:6;2234:14;2231:34;;;2261:1;2258;2251:12;2231:34;2299:6;2288:9;2284:22;2274:32;;2344:7;2337:4;2333:2;2329:13;2325:27;2315:55;;2366:1;2363;2356:12;2315:55;2406:2;2393:16;2432:2;2424:6;2421:14;2418:34;;;2448:1;2445;2438:12;2418:34;2503:7;2496:4;2486:6;2483:1;2479:14;2475:2;2471:23;2467:34;2464:47;2461:67;;;2524:1;2521;2514:12;2461:67;2555:4;2547:13;;;;-1:-1:-1;2579:6:1;-1:-1:-1;;2620:20:1;;2607:34;2650:28;2607:34;2650:28;:::i;:::-;2697:5;2687:15;;;1958:750;;;;;:::o;2713:456::-;2790:6;2798;2806;2859:2;2847:9;2838:7;2834:23;2830:32;2827:52;;;2875:1;2872;2865:12;2827:52;2914:9;2901:23;2933:31;2958:5;2933:31;:::i;:::-;2983:5;-1:-1:-1;3040:2:1;3025:18;;3012:32;3053:33;3012:32;3053:33;:::i;:::-;2713:456;;3105:7;;-1:-1:-1;;;3159:2:1;3144:18;;;;3131:32;;2713:456::o;3174:382::-;3239:6;3247;3300:2;3288:9;3279:7;3275:23;3271:32;3268:52;;;3316:1;3313;3306:12;3268:52;3355:9;3342:23;3374:31;3399:5;3374:31;:::i;:::-;3424:5;-1:-1:-1;3481:2:1;3466:18;;3453:32;3494:30;3453:32;3494:30;:::i;:::-;3543:7;3533:17;;;3174:382;;;;;:::o;3750:247::-;3809:6;3862:2;3850:9;3841:7;3837:23;3833:32;3830:52;;;3878:1;3875;3868:12;3830:52;3917:9;3904:23;3936:31;3961:5;3936:31;:::i;5010:388::-;5078:6;5086;5139:2;5127:9;5118:7;5114:23;5110:32;5107:52;;;5155:1;5152;5145:12;5107:52;5194:9;5181:23;5213:31;5238:5;5213:31;:::i;:::-;5263:5;-1:-1:-1;5320:2:1;5305:18;;5292:32;5333:33;5292:32;5333:33;:::i;5403:356::-;5605:2;5587:21;;;5624:18;;;5617:30;5683:34;5678:2;5663:18;;5656:62;5750:2;5735:18;;5403:356::o;5764:127::-;5825:10;5820:3;5816:20;5813:1;5806:31;5856:4;5853:1;5846:15;5880:4;5877:1;5870:15;5896:168;5969:9;;;6000;;6017:15;;;6011:22;;5997:37;5987:71;;6038:18;;:::i;6069:217::-;6109:1;6135;6125:132;;6179:10;6174:3;6170:20;6167:1;6160:31;6214:4;6211:1;6204:15;6242:4;6239:1;6232:15;6125:132;-1:-1:-1;6271:9:1;;6069:217::o;6544:380::-;6623:1;6619:12;;;;6666;;;6687:61;;6741:4;6733:6;6729:17;6719:27;;6687:61;6794:2;6786:6;6783:14;6763:18;6760:38;6757:161;;6840:10;6835:3;6831:20;6828:1;6821:31;6875:4;6872:1;6865:15;6903:4;6900:1;6893:15;7692:127;7753:10;7748:3;7744:20;7741:1;7734:31;7784:4;7781:1;7774:15;7808:4;7805:1;7798:15;7824:135;7863:3;7884:17;;;7881:43;;7904:18;;:::i;:::-;-1:-1:-1;7951:1:1;7940:13;;7824:135::o;9020:125::-;9085:9;;;9106:10;;;9103:36;;;9119:18;;:::i;11591:251::-;11661:6;11714:2;11702:9;11693:7;11689:23;11685:32;11682:52;;;11730:1;11727;11720:12;11682:52;11762:9;11756:16;11781:31;11806:5;11781:31;:::i;12768:306::-;12856:6;12864;12872;12925:2;12913:9;12904:7;12900:23;12896:32;12893:52;;;12941:1;12938;12931:12;12893:52;12970:9;12964:16;12954:26;;13020:2;13009:9;13005:18;12999:25;12989:35;;13064:2;13053:9;13049:18;13043:25;13033:35;;12768:306;;;;;:::o;13358:245::-;13425:6;13478:2;13466:9;13457:7;13453:23;13449:32;13446:52;;;13494:1;13491;13484:12;13446:52;13526:9;13520:16;13545:28;13567:5;13545:28;:::i;14416:401::-;14618:2;14600:21;;;14657:2;14637:18;;;14630:30;14696:34;14691:2;14676:18;;14669:62;-1:-1:-1;;;14762:2:1;14747:18;;14740:35;14807:3;14792:19;;14416:401::o;14822:399::-;15024:2;15006:21;;;15063:2;15043:18;;;15036:30;15102:34;15097:2;15082:18;;15075:62;-1:-1:-1;;;15168:2:1;15153:18;;15146:33;15211:3;15196:19;;14822:399::o;16768:980::-;17030:4;17078:3;17067:9;17063:19;17109:6;17098:9;17091:25;17135:2;17173:6;17168:2;17157:9;17153:18;17146:34;17216:3;17211:2;17200:9;17196:18;17189:31;17240:6;17275;17269:13;17306:6;17298;17291:22;17344:3;17333:9;17329:19;17322:26;;17383:2;17375:6;17371:15;17357:29;;17404:1;17414:195;17428:6;17425:1;17422:13;17414:195;;;17493:13;;-1:-1:-1;;;;;17489:39:1;17477:52;;17584:15;;;;17549:12;;;;17525:1;17443:9;17414:195;;;-1:-1:-1;;;;;;;17665:32:1;;;;17660:2;17645:18;;17638:60;-1:-1:-1;;;17729:3:1;17714:19;17707:35;17626:3;16768:980;-1:-1:-1;;;16768:980:1:o;18370:128::-;18437:9;;;18458:11;;;18455:37;;;18472:18;;:::i
Swarm Source
ipfs://1c67b801847579c1c9d87b9ebc8c4fcf74c62abcc1888cd7afcded24fadc0f8d
Loading...
Loading
OVERVIEW
BONK on Base Inspired by Bonk on Solana, us $BONK enthusiasts knew there needed to be a safe $BONK with strong backers on the quickly evolving Base Chain (Coinbase's L2 Network)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.