ERC-20
Overview
Max Total Supply
1,000,000,000 VB
Holders
91
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
16,104,444.180759336513215773 VBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bonerin
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-29 */ /** Twitter : https://twitter.com/VBonerinERC Telegram : https://t.me/BonerinETH Website : https://www.vbonerin.fun */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // 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/Ownable.sol // 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/IERC20.sol // 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/IERC20Metadata.sol // 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/ERC20.sol // 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); } } } /** * @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: bonerin.sol //SPDX-License-Identifier: MIT /** Twitter : https://twitter.com/VBonerinERC Telegram : https://t.me/BonerinETH Website : https://www.vbonerin.fun */ pragma solidity 0.8.19; interface DexFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface DexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Bonerin is ERC20, Ownable { struct Tax { uint256 marketingTax; } uint256 private constant _totalSupply = 1_000_000_000 * 1e18; //Router DexRouter public immutable uniswapRouter; address public immutable pairAddress; //Taxes Tax public buyTaxes = Tax(2); Tax public sellTaxes = Tax(2); Tax public transferTaxes = Tax(0); //Whitelisting from taxes/maxwallet/txlimit/etc mapping(address => bool) private whitelisted; //Swapping uint256 public swapTokensAtAmount = _totalSupply / 1_000_000; //after 0.01% of total supply, swap them bool public swapAndLiquifyEnabled = true; bool public isSwapping = false; bool public tradingEnabled = false; uint256 public startTradingBlock; //Wallets address public marketingWallet = 0x5A5dfAc0CF732Df4E2d26d09873D560cbea1F552 ; uint256 public maxWalletPercentage = 1; //Events event BuyFeesUpdated(uint256 indexed _trFee); event SellFeesUpdated(uint256 indexed _trFee); event marketingWalletChanged(address indexed _trWallet); event SwapThresholdUpdated(uint256 indexed _newThreshold); event InternalSwapStatusUpdated(bool indexed _status); event Whitelist(address indexed _target, bool indexed _status); event MaxWalletChanged(uint256 percentage); constructor() ERC20("Bonerin", "VB") { uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet pairAddress = DexFactory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); whitelisted[msg.sender] = true; whitelisted[address(uniswapRouter)] = true; whitelisted[address(this)] = true; _mint(0x3B04370CB42692360d6a3eb4faA6477bb246C60A, _totalSupply*95/100); _mint(0x43C2a12b4792D86E7d6024102E717412Bc56382c, _totalSupply*5/100); } function setmarketingWallet(address _newmarketing) external onlyOwner { require( _newmarketing != address(0), "can not set marketing to dead wallet" ); marketingWallet = _newmarketing; emit marketingWalletChanged(_newmarketing); } function enableTrading() external onlyOwner { require(!tradingEnabled, "Trading is already enabled"); tradingEnabled = true; startTradingBlock = block.number; } function setBuyTaxes(uint256 _marketingTax) external onlyOwner { buyTaxes.marketingTax = _marketingTax; require(_marketingTax <= 30, "Can not set buy fees higher than 30%"); emit BuyFeesUpdated(_marketingTax); } function setSellTaxes(uint256 _marketingTax) external onlyOwner { sellTaxes.marketingTax = _marketingTax; require(_marketingTax <= 30, "Can not set buy fees higher than 30%"); emit SellFeesUpdated(_marketingTax); } function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner { require( _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000, "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!" ); swapTokensAtAmount = _newAmount; emit SwapThresholdUpdated(swapTokensAtAmount); } function toggleSwapping() external onlyOwner { swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true; } function setWhitelistStatus( address _wallet, bool _status ) external onlyOwner { whitelisted[_wallet] = _status; emit Whitelist(_wallet, _status); } function checkWhitelist(address _wallet) external view returns (bool) { return whitelisted[_wallet]; } function setMaxWalletPercentage(uint256 _percentage) external onlyOwner { require(_percentage > 1, "Percentage must be greater than 1%"); require(_percentage <= 100, "Percentage must be less than or equal to 100"); maxWalletPercentage = _percentage; emit MaxWalletChanged(_percentage); } // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations function _takeTax( address _from, address _to, uint256 _amount ) internal returns (uint256) { if (whitelisted[_from] || whitelisted[_to]) { return _amount; } uint256 totalTax = transferTaxes.marketingTax; if (_to == pairAddress) { totalTax = sellTaxes.marketingTax; } else if (_from == pairAddress) { totalTax = buyTaxes.marketingTax; } // Check if within the first 5 blocks if (block.number <= startTradingBlock + 5) { if (block.number == startTradingBlock + 4) { totalTax = 5; } else if (block.number == startTradingBlock + 3) { totalTax = 10; } else if (block.number == startTradingBlock + 2) { totalTax = 15; } else if (block.number == startTradingBlock + 1) { totalTax = 20; } else if (block.number == startTradingBlock ) { totalTax = 25; } else { totalTax = 2; } } uint256 tax = 0; if (totalTax > 0) { tax = (_amount * totalTax) / 100; super._transfer(_from, address(this), tax); } return (_amount - tax); } function _transfer( address _from, address _to, uint256 _amount ) internal virtual override { require(_from != address(0), "transfer from address zero"); require(_to != address(0), "transfer to address zero"); require(_amount > 0, "Transfer amount must be greater than zero"); // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100; // Check if the transaction is within the maximum wallet limit if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) { require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount"); } uint256 toTransfer = _takeTax(_from, _to, _amount); bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount; if (!whitelisted[_from] && !whitelisted[_to]) { require(tradingEnabled, "Trading not active"); if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) { internalSwap(); } } super._transfer(_from, _to, toTransfer); } function internalSwap() internal { isSwapping = true; uint256 taxAmount = balanceOf(address(this)); if (taxAmount == 0) { return; } swapToETH(balanceOf(address(this))); (bool success, ) = marketingWallet.call{value: address(this).balance}(""); require(success, "Transfer failed."); isSwapping = false; } function swapToETH(uint256 _amount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), _amount); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, path, address(this), block.timestamp ); } receive() external payable {} }
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":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWalletChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600260c0819052600681905560e081905260075561012060405260006101008190526008556200003f620f42406b033b2e3c9fd0803ce80000006200046d565b600a55600b805462ffffff19166001908117909155600d80546001600160a01b031916735a5dfac0cf732df4e2d26d09873d560cbea1f552179055600e553480156200008a57600080fd5b50604051806040016040528060078152602001662137b732b934b760c91b815250604051806040016040528060028152602001612b2160f11b8152508160039081620000d7919062000534565b506004620000e6828262000534565b50505062000103620000fd6200033660201b60201c565b6200033a565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000159573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017f919062000600565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f5919062000600565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000243573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000269919062000600565b6001600160a01b0390811660a052336000908152600960205260408082208054600160ff1991821681179092556080519094168352818320805485168217905530835291208054909216179055620002fc733b04370cb42692360d6a3eb4faa6477bb246c60a6064620002ea6b033b2e3c9fd0803ce8000000605f62000632565b620002f691906200046d565b6200038c565b620003307343c2a12b4792d86e7d6024102e717412bc56382c6064620002ea6b033b2e3c9fd0803ce8000000600562000632565b62000668565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003e75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003fb919062000652565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b6000826200048b57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004bb57607f821691505b602082108103620004dc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200045257600081815260208120601f850160051c810160208610156200050b5750805b601f850160051c820191505b818110156200052c5782815560010162000517565b505050505050565b81516001600160401b0381111562000550576200055062000490565b6200056881620005618454620004a6565b84620004e2565b602080601f831160018114620005a05760008415620005875750858301515b600019600386901b1c1916600185901b1785556200052c565b600085815260208120601f198616915b82811015620005d157888601518255948401946001909101908401620005b0565b5085821015620005f05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200061357600080fd5b81516001600160a01b03811681146200062b57600080fd5b9392505050565b80820281158282048414176200064c576200064c62000457565b92915050565b808201808211156200064c576200064c62000457565b60805160a051611c55620006bf6000396000818161058a015281816110f40152818161126a0152818161138801526113bc015260008181610449015281816117b50152818161186e01526118aa0152611c556000f3fe6080604052600436106102085760003560e01c806375f0a87411610118578063a8b08982116100a0578063dd62ed3e1161006f578063dd62ed3e1461060b578063e2f456051461062b578063ef586f7114610641578063f2fde38b14610656578063f66895a31461067657600080fd5b8063a8b0898214610578578063a9059cbb146105ac578063afa4f3b2146105cc578063b8863115146105ec57600080fd5b80638a8c523c116100e75780638a8c523c146104f05780638da5cb5b1461050557806395d89b4114610523578063a3ca847d14610538578063a457c2d71461055857600080fd5b806375f0a8741461048357806376be96f3146104a35780637a845ece146104b9578063864701a5146104d957600080fd5b8063313ce5671161019b5780635331803c1161016a5780635331803c146103bf578063599ca397146103d657806370a08231146103ec578063715018a614610422578063735de9f71461043757600080fd5b8063313ce5671461034957806339509351146103655780634a74bb02146103855780634ada218b1461039f57600080fd5b806318160ddd116101d757806318160ddd146102b15780631950c218146102d0578063224611731461030957806323b872dd1461032957600080fd5b806306fdde03146102145780630940bbc71461023f578063095ea7b3146102615780630c4242841461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061022961068d565b6040516102369190611916565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611964565b61071f565b005b34801561026d57600080fd5b5061028161027c366004611992565b610784565b6040519015158152602001610236565b34801561029d57600080fd5b5061025f6102ac3660046119be565b61079e565b3480156102bd57600080fd5b506002545b604051908152602001610236565b3480156102dc57600080fd5b506102816102eb3660046119fc565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561031557600080fd5b5061025f6103243660046119fc565b6107fa565b34801561033557600080fd5b50610281610344366004611a19565b6108ae565b34801561035557600080fd5b5060405160128152602001610236565b34801561037157600080fd5b50610281610380366004611992565b6108d4565b34801561039157600080fd5b50600b546102819060ff1681565b3480156103ab57600080fd5b50600b546102819062010000900460ff1681565b3480156103cb57600080fd5b506008546102c29081565b3480156103e257600080fd5b506102c2600e5481565b3480156103f857600080fd5b506102c26104073660046119fc565b6001600160a01b031660009081526020819052604090205490565b34801561042e57600080fd5b5061025f6108f6565b34801561044357600080fd5b5061046b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610236565b34801561048f57600080fd5b50600d5461046b906001600160a01b031681565b3480156104af57600080fd5b506102c2600c5481565b3480156104c557600080fd5b5061025f6104d4366004611964565b61090a565b3480156104e557600080fd5b506006546102c29081565b3480156104fc57600080fd5b5061025f610a0e565b34801561051157600080fd5b506005546001600160a01b031661046b565b34801561052f57600080fd5b50610229610a86565b34801561054457600080fd5b5061025f610553366004611964565b610a95565b34801561056457600080fd5b50610281610573366004611992565b610af1565b34801561058457600080fd5b5061046b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105b857600080fd5b506102816105c7366004611992565b610b77565b3480156105d857600080fd5b5061025f6105e7366004611964565b610b85565b3480156105f857600080fd5b50600b5461028190610100900460ff1681565b34801561061757600080fd5b506102c2610626366004611a5a565b610c7c565b34801561063757600080fd5b506102c2600a5481565b34801561064d57600080fd5b5061025f610ca7565b34801561066257600080fd5b5061025f6106713660046119fc565b610cd6565b34801561068257600080fd5b506007546102c29081565b60606003805461069c90611a88565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890611a88565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b610727610d4f565b6007819055601e8111156107565760405162461bcd60e51b815260040161074d90611ac2565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610792818585610da9565b60019150505b92915050565b6107a6610d4f565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610802610d4f565b6001600160a01b0381166108645760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b606482015260840161074d565b600d80546001600160a01b0319166001600160a01b0383169081179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336108bc858285610ecd565b6108c7858585610f47565b60019150505b9392505050565b6000336107928185856108e78383610c7c565b6108f19190611b1c565b610da9565b6108fe610d4f565b61090860006112de565b565b610912610d4f565b6001811161096d5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b606482015260840161074d565b60648111156109d35760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b606482015260840161074d565b600e8190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610a16610d4f565b600b5462010000900460ff1615610a6f5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604482015260640161074d565b600b805462ff000019166201000017905543600c55565b60606004805461069c90611a88565b610a9d610d4f565b6006819055601e811115610ac35760405162461bcd60e51b815260040161074d90611ac2565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610aff8286610c7c565b905083811015610b5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161074d565b610b6c8286868403610da9565b506001949350505050565b600033610792818585610f47565b610b8d610d4f565b600081118015610bc057506103e8610bb26b033b2e3c9fd0803ce80000006005611b2f565b610bbc9190611b46565b8111155b610c495760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a40161074d565b600a81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610caf610d4f565b600b5460ff16610cc0576001610cc3565b60005b600b805460ff1916911515919091179055565b610cde610d4f565b6001600160a01b038116610d435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074d565b610d4c816112de565b50565b6005546001600160a01b031633146109085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074d565b6001600160a01b038316610e0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161074d565b6001600160a01b038216610e6c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161074d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ed98484610c7c565b90506000198114610f415781811015610f345760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161074d565b610f418484848403610da9565b50505050565b6001600160a01b038316610f9d5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161074d565b6001600160a01b038216610ff35760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161074d565b600081116110555760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161074d565b60006064600e546b033b2e3c9fd0803ce80000006110739190611b2f565b61107d9190611b46565b6001600160a01b03851660009081526009602052604090205490915060ff161580156110c257506001600160a01b03831660009081526009602052604090205460ff16155b80156110d657506001600160a01b03831615155b80156110eb57506001600160a01b0383163014155b801561112957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b156111a757808261114f856001600160a01b031660009081526020819052604090205490565b6111599190611b1c565b11156111a75760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161074d565b60006111b4858585611330565b600a5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561120c57506001600160a01b03851660009081526009602052604090205460ff16155b156112cb57600b5462010000900460ff1661125e5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b604482015260640161074d565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156112a15750600b5460ff165b80156112aa5750805b80156112be5750600b54610100900460ff16155b156112cb576112cb6114d0565b6112d68686846115ba565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061136f57506001600160a01b03831660009081526009602052604090205460ff165b1561137b5750806108cd565b6008546001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116908516036113ba57506007546113f8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036113f857506006545b600c54611406906005611b1c565b431161149157600c5461141a906004611b1c565b430361142857506005611491565b600c54611436906003611b1c565b43036114445750600a611491565b600c54611452906002611b1c565b43036114605750600f611491565b600c5461146e906001611b1c565b430361147c57506014611491565b600c54430361148d57506019611491565b5060025b600081156114bc5760646114a58386611b2f565b6114af9190611b46565b90506114bc8630836115ba565b6114c68185611b68565b9695505050505050565b600b805461ff001916610100179055306000908152602081905260408120549050806000036114fc5750565b306000908152602081905260409020546115159061175e565b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611562576040519150601f19603f3d011682016040523d82523d6000602084013e611567565b606091505b50509050806115ab5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161074d565b5050600b805461ff0019169055565b6001600160a01b03831661161e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161074d565b6001600160a01b0382166116805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161074d565b6001600160a01b038316600090815260208190526040902054818110156116f85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161074d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f41565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061179357611793611b7b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611811573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118359190611b91565b8160018151811061184857611848611b7b565b60200260200101906001600160a01b031690816001600160a01b031681525050611893307f000000000000000000000000000000000000000000000000000000000000000084610da9565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906118e8908590600090869030904290600401611bae565b600060405180830381600087803b15801561190257600080fd5b505af11580156112d6573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561194357858101830151858201604001528201611927565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561197657600080fd5b5035919050565b6001600160a01b0381168114610d4c57600080fd5b600080604083850312156119a557600080fd5b82356119b08161197d565b946020939093013593505050565b600080604083850312156119d157600080fd5b82356119dc8161197d565b9150602083013580151581146119f157600080fd5b809150509250929050565b600060208284031215611a0e57600080fd5b81356108cd8161197d565b600080600060608486031215611a2e57600080fd5b8335611a398161197d565b92506020840135611a498161197d565b929592945050506040919091013590565b60008060408385031215611a6d57600080fd5b8235611a788161197d565b915060208301356119f18161197d565b600181811c90821680611a9c57607f821691505b602082108103611abc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079857610798611b06565b808202811582820484141761079857610798611b06565b600082611b6357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561079857610798611b06565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ba357600080fd5b81516108cd8161197d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bfe5784516001600160a01b031683529383019391830191600101611bd9565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122096451a4491d926d24d7f9f41fa345354b939d7523205309df901d273bee0ab7a64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102085760003560e01c806375f0a87411610118578063a8b08982116100a0578063dd62ed3e1161006f578063dd62ed3e1461060b578063e2f456051461062b578063ef586f7114610641578063f2fde38b14610656578063f66895a31461067657600080fd5b8063a8b0898214610578578063a9059cbb146105ac578063afa4f3b2146105cc578063b8863115146105ec57600080fd5b80638a8c523c116100e75780638a8c523c146104f05780638da5cb5b1461050557806395d89b4114610523578063a3ca847d14610538578063a457c2d71461055857600080fd5b806375f0a8741461048357806376be96f3146104a35780637a845ece146104b9578063864701a5146104d957600080fd5b8063313ce5671161019b5780635331803c1161016a5780635331803c146103bf578063599ca397146103d657806370a08231146103ec578063715018a614610422578063735de9f71461043757600080fd5b8063313ce5671461034957806339509351146103655780634a74bb02146103855780634ada218b1461039f57600080fd5b806318160ddd116101d757806318160ddd146102b15780631950c218146102d0578063224611731461030957806323b872dd1461032957600080fd5b806306fdde03146102145780630940bbc71461023f578063095ea7b3146102615780630c4242841461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061022961068d565b6040516102369190611916565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611964565b61071f565b005b34801561026d57600080fd5b5061028161027c366004611992565b610784565b6040519015158152602001610236565b34801561029d57600080fd5b5061025f6102ac3660046119be565b61079e565b3480156102bd57600080fd5b506002545b604051908152602001610236565b3480156102dc57600080fd5b506102816102eb3660046119fc565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561031557600080fd5b5061025f6103243660046119fc565b6107fa565b34801561033557600080fd5b50610281610344366004611a19565b6108ae565b34801561035557600080fd5b5060405160128152602001610236565b34801561037157600080fd5b50610281610380366004611992565b6108d4565b34801561039157600080fd5b50600b546102819060ff1681565b3480156103ab57600080fd5b50600b546102819062010000900460ff1681565b3480156103cb57600080fd5b506008546102c29081565b3480156103e257600080fd5b506102c2600e5481565b3480156103f857600080fd5b506102c26104073660046119fc565b6001600160a01b031660009081526020819052604090205490565b34801561042e57600080fd5b5061025f6108f6565b34801561044357600080fd5b5061046b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610236565b34801561048f57600080fd5b50600d5461046b906001600160a01b031681565b3480156104af57600080fd5b506102c2600c5481565b3480156104c557600080fd5b5061025f6104d4366004611964565b61090a565b3480156104e557600080fd5b506006546102c29081565b3480156104fc57600080fd5b5061025f610a0e565b34801561051157600080fd5b506005546001600160a01b031661046b565b34801561052f57600080fd5b50610229610a86565b34801561054457600080fd5b5061025f610553366004611964565b610a95565b34801561056457600080fd5b50610281610573366004611992565b610af1565b34801561058457600080fd5b5061046b7f00000000000000000000000082c1e482783bf20a9a182fa77941d96cc300d61081565b3480156105b857600080fd5b506102816105c7366004611992565b610b77565b3480156105d857600080fd5b5061025f6105e7366004611964565b610b85565b3480156105f857600080fd5b50600b5461028190610100900460ff1681565b34801561061757600080fd5b506102c2610626366004611a5a565b610c7c565b34801561063757600080fd5b506102c2600a5481565b34801561064d57600080fd5b5061025f610ca7565b34801561066257600080fd5b5061025f6106713660046119fc565b610cd6565b34801561068257600080fd5b506007546102c29081565b60606003805461069c90611a88565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890611a88565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b610727610d4f565b6007819055601e8111156107565760405162461bcd60e51b815260040161074d90611ac2565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610792818585610da9565b60019150505b92915050565b6107a6610d4f565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610802610d4f565b6001600160a01b0381166108645760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b606482015260840161074d565b600d80546001600160a01b0319166001600160a01b0383169081179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336108bc858285610ecd565b6108c7858585610f47565b60019150505b9392505050565b6000336107928185856108e78383610c7c565b6108f19190611b1c565b610da9565b6108fe610d4f565b61090860006112de565b565b610912610d4f565b6001811161096d5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b606482015260840161074d565b60648111156109d35760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b606482015260840161074d565b600e8190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610a16610d4f565b600b5462010000900460ff1615610a6f5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604482015260640161074d565b600b805462ff000019166201000017905543600c55565b60606004805461069c90611a88565b610a9d610d4f565b6006819055601e811115610ac35760405162461bcd60e51b815260040161074d90611ac2565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610aff8286610c7c565b905083811015610b5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161074d565b610b6c8286868403610da9565b506001949350505050565b600033610792818585610f47565b610b8d610d4f565b600081118015610bc057506103e8610bb26b033b2e3c9fd0803ce80000006005611b2f565b610bbc9190611b46565b8111155b610c495760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a40161074d565b600a81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610caf610d4f565b600b5460ff16610cc0576001610cc3565b60005b600b805460ff1916911515919091179055565b610cde610d4f565b6001600160a01b038116610d435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074d565b610d4c816112de565b50565b6005546001600160a01b031633146109085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074d565b6001600160a01b038316610e0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161074d565b6001600160a01b038216610e6c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161074d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ed98484610c7c565b90506000198114610f415781811015610f345760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161074d565b610f418484848403610da9565b50505050565b6001600160a01b038316610f9d5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161074d565b6001600160a01b038216610ff35760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161074d565b600081116110555760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161074d565b60006064600e546b033b2e3c9fd0803ce80000006110739190611b2f565b61107d9190611b46565b6001600160a01b03851660009081526009602052604090205490915060ff161580156110c257506001600160a01b03831660009081526009602052604090205460ff16155b80156110d657506001600160a01b03831615155b80156110eb57506001600160a01b0383163014155b801561112957507f00000000000000000000000082c1e482783bf20a9a182fa77941d96cc300d6106001600160a01b0316836001600160a01b031614155b156111a757808261114f856001600160a01b031660009081526020819052604090205490565b6111599190611b1c565b11156111a75760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161074d565b60006111b4858585611330565b600a5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561120c57506001600160a01b03851660009081526009602052604090205460ff16155b156112cb57600b5462010000900460ff1661125e5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b604482015260640161074d565b846001600160a01b03167f00000000000000000000000082c1e482783bf20a9a182fa77941d96cc300d6106001600160a01b03161480156112a15750600b5460ff165b80156112aa5750805b80156112be5750600b54610100900460ff16155b156112cb576112cb6114d0565b6112d68686846115ba565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061136f57506001600160a01b03831660009081526009602052604090205460ff165b1561137b5750806108cd565b6008546001600160a01b037f00000000000000000000000082c1e482783bf20a9a182fa77941d96cc300d6108116908516036113ba57506007546113f8565b7f00000000000000000000000082c1e482783bf20a9a182fa77941d96cc300d6106001600160a01b0316856001600160a01b0316036113f857506006545b600c54611406906005611b1c565b431161149157600c5461141a906004611b1c565b430361142857506005611491565b600c54611436906003611b1c565b43036114445750600a611491565b600c54611452906002611b1c565b43036114605750600f611491565b600c5461146e906001611b1c565b430361147c57506014611491565b600c54430361148d57506019611491565b5060025b600081156114bc5760646114a58386611b2f565b6114af9190611b46565b90506114bc8630836115ba565b6114c68185611b68565b9695505050505050565b600b805461ff001916610100179055306000908152602081905260408120549050806000036114fc5750565b306000908152602081905260409020546115159061175e565b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611562576040519150601f19603f3d011682016040523d82523d6000602084013e611567565b606091505b50509050806115ab5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161074d565b5050600b805461ff0019169055565b6001600160a01b03831661161e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161074d565b6001600160a01b0382166116805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161074d565b6001600160a01b038316600090815260208190526040902054818110156116f85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161074d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f41565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061179357611793611b7b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611811573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118359190611b91565b8160018151811061184857611848611b7b565b60200260200101906001600160a01b031690816001600160a01b031681525050611893307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610da9565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906118e8908590600090869030904290600401611bae565b600060405180830381600087803b15801561190257600080fd5b505af11580156112d6573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561194357858101830151858201604001528201611927565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561197657600080fd5b5035919050565b6001600160a01b0381168114610d4c57600080fd5b600080604083850312156119a557600080fd5b82356119b08161197d565b946020939093013593505050565b600080604083850312156119d157600080fd5b82356119dc8161197d565b9150602083013580151581146119f157600080fd5b809150509250929050565b600060208284031215611a0e57600080fd5b81356108cd8161197d565b600080600060608486031215611a2e57600080fd5b8335611a398161197d565b92506020840135611a498161197d565b929592945050506040919091013590565b60008060408385031215611a6d57600080fd5b8235611a788161197d565b915060208301356119f18161197d565b600181811c90821680611a9c57607f821691505b602082108103611abc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079857610798611b06565b808202811582820484141761079857610798611b06565b600082611b6357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561079857610798611b06565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ba357600080fd5b81516108cd8161197d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bfe5784516001600160a01b031683529383019391830191600101611bd9565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122096451a4491d926d24d7f9f41fa345354b939d7523205309df901d273bee0ab7a64736f6c63430008130033
Deployed Bytecode Sourcemap
28450:7582:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16394:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31173:246;;;;;;;;;;-1:-1:-1;31173:246:0;;;;;:::i;:::-;;:::i;:::-;;18754:201;;;;;;;;;;-1:-1:-1;18754:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;18754:201:0;1208:187:1;31941:195:0;;;;;;;;;;-1:-1:-1;31941:195:0;;;;;:::i;:::-;;:::i;17523:108::-;;;;;;;;;;-1:-1:-1;17611:12:0;;17523:108;;;1967:25:1;;;1955:2;1940:18;17523:108:0;1821:177:1;32144:116:0;;;;;;;;;;-1:-1:-1;32144:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32232:20:0;32208:4;32232:20;;;:11;:20;;;;;;;;;32144:116;30419:297;;;;;;;;;;-1:-1:-1;30419:297:0;;;;;:::i;:::-;;:::i;19535:261::-;;;;;;;;;;-1:-1:-1;19535:261:0;;;;;:::i;:::-;;:::i;17365:93::-;;;;;;;;;;-1:-1:-1;17365:93:0;;17448:2;2858:36:1;;2846:2;2831:18;17365:93:0;2716:184:1;20205:238:0;;;;;;;;;;-1:-1:-1;20205:238:0;;;;;:::i;:::-;;:::i;29085:40::-;;;;;;;;;;-1:-1:-1;29085:40:0;;;;;;;;29169:34;;;;;;;;;;-1:-1:-1;29169:34:0;;;;;;;;;;;28809:33;;;;;;;;;;-1:-1:-1;28809:33:0;;;;;;29349:38;;;;;;;;;;;;;;;;17694:127;;;;;;;;;;-1:-1:-1;17694:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17795:18:0;17768:7;17795:18;;;;;;;;;;;;17694:127;9849:103;;;;;;;;;;;;;:::i;28633:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3087:32:1;;;3069:51;;3057:2;3042:18;28633:40:0;2905:221:1;29266:75:0;;;;;;;;;;-1:-1:-1;29266:75:0;;;;-1:-1:-1;;;;;29266:75:0;;;29210:32;;;;;;;;;;;;;;;;32266:308;;;;;;;;;;-1:-1:-1;32266:308:0;;;;;:::i;:::-;;:::i;28738:28::-;;;;;;;;;;-1:-1:-1;28738:28:0;;;;;;30722:192;;;;;;;;;;;;;:::i;9208:87::-;;;;;;;;;;-1:-1:-1;9281:6:0;;-1:-1:-1;;;;;9281:6:0;9208:87;;16613:104;;;;;;;;;;;;;:::i;30922:243::-;;;;;;;;;;-1:-1:-1;30922:243:0;;;;;:::i;:::-;;:::i;20946:436::-;;;;;;;;;;-1:-1:-1;20946:436:0;;;;;:::i;:::-;;:::i;28680:36::-;;;;;;;;;;;;;;;18027:193;;;;;;;;;;-1:-1:-1;18027:193:0;;;;;:::i;:::-;;:::i;31427:372::-;;;;;;;;;;-1:-1:-1;31427:372:0;;;;;:::i;:::-;;:::i;29132:30::-;;;;;;;;;;-1:-1:-1;29132:30:0;;;;;;;;;;;18283:151;;;;;;;;;;-1:-1:-1;18283:151:0;;;;;:::i;:::-;;:::i;28977:60::-;;;;;;;;;;;;;;;;31807:126;;;;;;;;;;;;;:::i;10107:201::-;;;;;;;;;;-1:-1:-1;10107:201:0;;;;;:::i;:::-;;:::i;28773:29::-;;;;;;;;;;-1:-1:-1;28773:29:0;;;;;;16394:100;16448:13;16481:5;16474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16394:100;:::o;31173:246::-;9094:13;:11;:13::i;:::-;31248:9:::1;:38:::0;;;31322:2:::1;31305:19:::0;::::1;;31297:68;;;;-1:-1:-1::0;;;31297:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31381:30;::::0;31397:13;;31381:30:::1;::::0;;;::::1;31173:246:::0;:::o;18754:201::-;18837:4;7839:10;18893:32;7839:10;18909:7;18918:6;18893:8;:32::i;:::-;18943:4;18936:11;;;18754:201;;;;;:::o;31941:195::-;9094:13;:11;:13::i;:::-;-1:-1:-1;;;;;32055:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;32055:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32101:27;;32055:30;;:20;32101:27:::1;::::0;::::1;31941:195:::0;;:::o;30419:297::-;9094:13;:11;:13::i;:::-;-1:-1:-1;;;;;30522:27:0;::::1;30500:113;;;::::0;-1:-1:-1;;;30500:113:0;;4724:2:1;30500:113:0::1;::::0;::::1;4706:21:1::0;4763:2;4743:18;;;4736:30;4802:34;4782:18;;;4775:62;-1:-1:-1;;;4853:18:1;;;4846:34;4897:19;;30500:113:0::1;4522:400:1::0;30500:113:0::1;30624:15;:31:::0;;-1:-1:-1;;;;;;30624:31:0::1;-1:-1:-1::0;;;;;30624:31:0;::::1;::::0;;::::1;::::0;;;30671:37:::1;::::0;::::1;::::0;-1:-1:-1;;30671:37:0::1;30419:297:::0;:::o;19535:261::-;19632:4;7839:10;19690:38;19706:4;7839:10;19721:6;19690:15;:38::i;:::-;19739:27;19749:4;19755:2;19759:6;19739:9;:27::i;:::-;19784:4;19777:11;;;19535:261;;;;;;:::o;20205:238::-;20293:4;7839:10;20349:64;7839:10;20365:7;20402:10;20374:25;7839:10;20365:7;20374:9;:25::i;:::-;:38;;;;:::i;:::-;20349:8;:64::i;9849:103::-;9094:13;:11;:13::i;:::-;9914:30:::1;9941:1;9914:18;:30::i;:::-;9849:103::o:0;32266:308::-;9094:13;:11;:13::i;:::-;32367:1:::1;32353:11;:15;32345:62;;;::::0;-1:-1:-1;;;32345:62:0;;5391:2:1;32345:62:0::1;::::0;::::1;5373:21:1::0;5430:2;5410:18;;;5403:30;5469:34;5449:18;;;5442:62;-1:-1:-1;;;5520:18:1;;;5513:32;5562:19;;32345:62:0::1;5189:398:1::0;32345:62:0::1;32437:3;32422:11;:18;;32414:75;;;::::0;-1:-1:-1;;;32414:75:0;;5794:2:1;32414:75:0::1;::::0;::::1;5776:21:1::0;5833:2;5813:18;;;5806:30;5872:34;5852:18;;;5845:62;-1:-1:-1;;;5923:18:1;;;5916:42;5975:19;;32414:75:0::1;5592:408:1::0;32414:75:0::1;32496:19;:33:::0;;;32541:29:::1;::::0;1967:25:1;;;32541:29:0::1;::::0;1955:2:1;1940:18;32541:29:0::1;;;;;;;32266:308:::0;:::o;30722:192::-;9094:13;:11;:13::i;:::-;30786:14:::1;::::0;;;::::1;;;30785:15;30777:54;;;::::0;-1:-1:-1;;;30777:54:0;;6207:2:1;30777:54:0::1;::::0;::::1;6189:21:1::0;6246:2;6226:18;;;6219:30;6285:28;6265:18;;;6258:56;6331:18;;30777:54:0::1;6005:350:1::0;30777:54:0::1;30842:14;:21:::0;;-1:-1:-1;;30842:21:0::1;::::0;::::1;::::0;;30894:12:::1;30874:17;:32:::0;30722:192::o;16613:104::-;16669:13;16702:7;16695:14;;;;;:::i;30922:243::-;9094:13;:11;:13::i;:::-;30996:8:::1;:37:::0;;;31069:2:::1;31052:19:::0;::::1;;31044:68;;;;-1:-1:-1::0;;;31044:68:0::1;;;;;;;:::i;:::-;31128:29;::::0;31143:13;;31128:29:::1;::::0;;;::::1;30922:243:::0;:::o;20946:436::-;21039:4;7839:10;21039:4;21122:25;7839:10;21139:7;21122:9;:25::i;:::-;21095:52;;21186:15;21166:16;:35;;21158:85;;;;-1:-1:-1;;;21158:85:0;;6562:2:1;21158:85:0;;;6544:21:1;6601:2;6581:18;;;6574:30;6640:34;6620:18;;;6613:62;-1:-1:-1;;;6691:18:1;;;6684:35;6736:19;;21158:85:0;6360:401:1;21158:85:0;21279:60;21288:5;21295:7;21323:15;21304:16;:34;21279:8;:60::i;:::-;-1:-1:-1;21370:4:0;;20946:436;-1:-1:-1;;;;20946:436:0:o;18027:193::-;18106:4;7839:10;18162:28;7839:10;18179:2;18183:6;18162:9;:28::i;31427:372::-;9094:13;:11;:13::i;:::-;31543:1:::1;31530:10;:14;:57;;;;-1:-1:-1::0;31583:4:0::1;31563:16;28590:20;31578:1;31563:16;:::i;:::-;31562:25;;;;:::i;:::-;31548:10;:39;;31530:57;31508:185;;;::::0;-1:-1:-1;;;31508:185:0;;7363:2:1;31508:185:0::1;::::0;::::1;7345:21:1::0;7402:2;7382:18;;;7375:30;7441:34;7421:18;;;7414:62;7512:34;7492:18;;;7485:62;-1:-1:-1;;;7563:19:1;;;7556:45;7618:19;;31508:185:0::1;7161:482:1::0;31508:185:0::1;31704:18;:31:::0;;;31751:40:::1;::::0;31725:10;;31751:40:::1;::::0;;;::::1;31427:372:::0;:::o;18283:151::-;-1:-1:-1;;;;;18399:18:0;;;18372:7;18399:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18283:151::o;31807:126::-;9094:13;:11;:13::i;:::-;31888:21:::1;::::0;::::1;;31887:38;;31921:4;31887:38;;;31913:5;31887:38;31863:21;:62:::0;;-1:-1:-1;;31863:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31807:126::o;10107:201::-;9094:13;:11;:13::i;:::-;-1:-1:-1;;;;;10196:22:0;::::1;10188:73;;;::::0;-1:-1:-1;;;10188:73:0;;7850:2:1;10188:73:0::1;::::0;::::1;7832:21:1::0;7889:2;7869:18;;;7862:30;7928:34;7908:18;;;7901:62;-1:-1:-1;;;7979:18:1;;;7972:36;8025:19;;10188:73:0::1;7648:402:1::0;10188:73:0::1;10272:28;10291:8;10272:18;:28::i;:::-;10107:201:::0;:::o;9373:132::-;9281:6;;-1:-1:-1;;;;;9281:6:0;7839:10;9437:23;9429:68;;;;-1:-1:-1;;;9429:68:0;;8257:2:1;9429:68:0;;;8239:21:1;;;8276:18;;;8269:30;8335:34;8315:18;;;8308:62;8387:18;;9429:68:0;8055:356:1;24939:346:0;-1:-1:-1;;;;;25041:19:0;;25033:68;;;;-1:-1:-1;;;25033:68:0;;8618:2:1;25033:68:0;;;8600:21:1;8657:2;8637:18;;;8630:30;8696:34;8676:18;;;8669:62;-1:-1:-1;;;8747:18:1;;;8740:34;8791:19;;25033:68:0;8416:400:1;25033:68:0;-1:-1:-1;;;;;25120:21:0;;25112:68;;;;-1:-1:-1;;;25112:68:0;;9023:2:1;25112:68:0;;;9005:21:1;9062:2;9042:18;;;9035:30;9101:34;9081:18;;;9074:62;-1:-1:-1;;;9152:18:1;;;9145:32;9194:19;;25112:68:0;8821:398:1;25112:68:0;-1:-1:-1;;;;;25193:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25245:32;;1967:25:1;;;25245:32:0;;1940:18:1;25245:32:0;;;;;;;24939:346;;;:::o;25576:419::-;25677:24;25704:25;25714:5;25721:7;25704:9;:25::i;:::-;25677:52;;-1:-1:-1;;25744:16:0;:37;25740:248;;25826:6;25806:16;:26;;25798:68;;;;-1:-1:-1;;;25798:68:0;;9426:2:1;25798:68:0;;;9408:21:1;9465:2;9445:18;;;9438:30;9504:31;9484:18;;;9477:59;9553:18;;25798:68:0;9224:353:1;25798:68:0;25910:51;25919:5;25926:7;25954:6;25935:16;:25;25910:8;:51::i;:::-;25666:329;25576:419;;;:::o;33937:1199::-;-1:-1:-1;;;;;34060:19:0;;34052:58;;;;-1:-1:-1;;;34052:58:0;;9784:2:1;34052:58:0;;;9766:21:1;9823:2;9803:18;;;9796:30;9862:28;9842:18;;;9835:56;9908:18;;34052:58:0;9582:350:1;34052:58:0;-1:-1:-1;;;;;34125:17:0;;34117:54;;;;-1:-1:-1;;;34117:54:0;;10139:2:1;34117:54:0;;;10121:21:1;10178:2;10158:18;;;10151:30;10217:26;10197:18;;;10190:54;10261:18;;34117:54:0;9937:348:1;34117:54:0;34196:1;34186:7;:11;34178:65;;;;-1:-1:-1;;;34178:65:0;;10492:2:1;34178:65:0;;;10474:21:1;10531:2;10511:18;;;10504:30;10570:34;10550:18;;;10543:62;-1:-1:-1;;;10621:18:1;;;10614:39;10670:19;;34178:65:0;10290:405:1;34178:65:0;34356:23;34419:3;34397:19;;28590:20;34382:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;34504:18:0;;;;;;:11;:18;;;;;;34356:66;;-1:-1:-1;34504:18:0;;34503:19;:40;;;;-1:-1:-1;;;;;;34527:16:0;;;;;;:11;:16;;;;;;;;34526:17;34503:40;:61;;;;-1:-1:-1;;;;;;34547:17:0;;;;34503:61;:85;;;;-1:-1:-1;;;;;;34568:20:0;;34583:4;34568:20;;34503:85;:107;;;;;34599:11;-1:-1:-1;;;;;34592:18:0;:3;-1:-1:-1;;;;;34592:18:0;;;34503:107;34499:217;;;34659:15;34648:7;34631:14;34641:3;-1:-1:-1;;;;;17795:18:0;17768:7;17795:18;;;;;;;;;;;;17694:127;34631:14;:24;;;;:::i;:::-;:43;;34623:85;;;;-1:-1:-1;;;34623:85:0;;10902:2:1;34623:85:0;;;10884:21:1;10941:2;10921:18;;;10914:30;10980:31;10960:18;;;10953:59;11029:18;;34623:85:0;10700:353:1;34623:85:0;34724:18;34745:29;34754:5;34761:3;34766:7;34745:8;:29::i;:::-;34826:18;;34816:4;34783:12;17795:18;;;;;;;;;;;;-1:-1:-1;;;;;34856:18:0;;;;:11;:18;;;;;;;34724:50;;-1:-1:-1;;34798:46:0;;34856:18;;34855:19;:40;;;;-1:-1:-1;;;;;;34879:16:0;;;;;;:11;:16;;;;;;;;34878:17;34855:40;34851:236;;;34916:14;;;;;;;34908:45;;;;-1:-1:-1;;;34908:45:0;;11260:2:1;34908:45:0;;;11242:21:1;11299:2;11279:18;;;11272:30;-1:-1:-1;;;11318:18:1;;;11311:48;11376:18;;34908:45:0;11058:342:1;34908:45:0;34983:3;-1:-1:-1;;;;;34968:18:0;:11;-1:-1:-1;;;;;34968:18:0;;:43;;;;-1:-1:-1;34990:21:0;;;;34968:43;:54;;;;;35015:7;34968:54;:69;;;;-1:-1:-1;35027:10:0;;;;;;;35026:11;34968:69;34964:116;;;35054:14;:12;:14::i;:::-;35093:39;35109:5;35116:3;35121:10;35093:15;:39::i;:::-;34045:1091;;;33937:1199;;;:::o;10468:191::-;10561:6;;;-1:-1:-1;;;;;10578:17:0;;;-1:-1:-1;;;;;;10578:17:0;;;;;;;10611:40;;10561:6;;;10578:17;10561:6;;10611:40;;10542:16;;10611:40;10531:128;10468:191;:::o;32720:1213::-;-1:-1:-1;;;;;32859:18:0;;32835:7;32859:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32881:16:0;;;;;;:11;:16;;;;;;;;32859:38;32855:85;;;-1:-1:-1;32921:7:0;32914:14;;32855:85;32971:13;:26;-1:-1:-1;;;;;33021:11:0;33014:18;;;;;;33010:175;;-1:-1:-1;33060:9:0;:22;33010:175;;;33113:11;-1:-1:-1;;;;;33104:20:0;:5;-1:-1:-1;;;;;33104:20:0;;33100:85;;-1:-1:-1;33152:8:0;:21;33100:85;33256:17;;:21;;33276:1;33256:21;:::i;:::-;33240:12;:37;33236:485;;33306:17;;:21;;33326:1;33306:21;:::i;:::-;33290:12;:37;33286:432;;-1:-1:-1;33351:1:0;33286:432;;;33386:17;;:21;;33406:1;33386:21;:::i;:::-;33370:12;:37;33366:352;;-1:-1:-1;33431:2:0;33366:352;;;33467:17;;:21;;33487:1;33467:21;:::i;:::-;33451:12;:37;33447:271;;-1:-1:-1;33512:2:0;33447:271;;;33548:17;;:21;;33568:1;33548:21;:::i;:::-;33532:12;:37;33528:190;;-1:-1:-1;33593:2:0;33528:190;;;33629:17;;33613:12;:33;33609:109;;-1:-1:-1;33671:2:0;33609:109;;;-1:-1:-1;33709:1:0;33609:109;33733:11;33763:12;;33759:134;;33821:3;33799:18;33809:8;33799:7;:18;:::i;:::-;33798:26;;;;:::i;:::-;33792:32;;33839:42;33855:5;33870:4;33877:3;33839:15;:42::i;:::-;33911:13;33921:3;33911:7;:13;:::i;:::-;33903:22;32720:1213;-1:-1:-1;;;;;;32720:1213:0:o;35144:393::-;35188:10;:17;;-1:-1:-1;;35188:17:0;;;;;35254:4;-1:-1:-1;17795:18:0;;;;;;;;;;;35216:44;;35276:9;35289:1;35276:14;35272:53;;35307:7;35144:393::o;35272:53::-;35363:4;17768:7;17795:18;;;;;;;;;;;35335:35;;:9;:35::i;:::-;35399:15;;:54;;35381:12;;-1:-1:-1;;;;;35399:15:0;;35427:21;;35381:12;35399:54;35381:12;35399:54;35427:21;35399:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35380:73;;;35472:7;35464:36;;;;-1:-1:-1;;;35464:36:0;;11950:2:1;35464:36:0;;;11932:21:1;11989:2;11969:18;;;11962:30;-1:-1:-1;;;12008:18:1;;;12001:46;12064:18;;35464:36:0;11748:340:1;35464:36:0;-1:-1:-1;;35511:10:0;:18;;-1:-1:-1;;35511:18:0;;;35144:393::o;21852:806::-;-1:-1:-1;;;;;21949:18:0;;21941:68;;;;-1:-1:-1;;;21941:68:0;;12295:2:1;21941:68:0;;;12277:21:1;12334:2;12314:18;;;12307:30;12373:34;12353:18;;;12346:62;-1:-1:-1;;;12424:18:1;;;12417:35;12469:19;;21941:68:0;12093:401:1;21941:68:0;-1:-1:-1;;;;;22028:16:0;;22020:64;;;;-1:-1:-1;;;22020:64:0;;12701:2:1;22020:64:0;;;12683:21:1;12740:2;12720:18;;;12713:30;12779:34;12759:18;;;12752:62;-1:-1:-1;;;12830:18:1;;;12823:33;12873:19;;22020:64:0;12499:399:1;22020:64:0;-1:-1:-1;;;;;22170:15:0;;22148:19;22170:15;;;;;;;;;;;22204:21;;;;22196:72;;;;-1:-1:-1;;;22196:72:0;;13105:2:1;22196:72:0;;;13087:21:1;13144:2;13124:18;;;13117:30;13183:34;13163:18;;;13156:62;-1:-1:-1;;;13234:18:1;;;13227:36;13280:19;;22196:72:0;12903:402:1;22196:72:0;-1:-1:-1;;;;;22304:15:0;;;:9;:15;;;;;;;;;;;22322:20;;;22304:38;;22522:13;;;;;;;;;;:23;;;;;;22574:26;;1967:25:1;;;22522:13:0;;22574:26;;1940:18:1;22574:26:0;;;;;;;22613:37;26595:91;35545:447;35625:16;;;35639:1;35625:16;;;;;;;;35601:21;;35625:16;;;;;;;;;;-1:-1:-1;35625:16:0;35601:40;;35670:4;35652;35657:1;35652:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35652:23:0;;;-1:-1:-1;;;;;35652:23:0;;;;;35696:13;-1:-1:-1;;;;;35696:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35686:4;35691:1;35686:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;35686:30:0;;;-1:-1:-1;;;;;35686:30:0;;;;;35727:56;35744:4;35759:13;35775:7;35727:8;:56::i;:::-;35794:190;;-1:-1:-1;;;35794:190:0;;-1:-1:-1;;;;;35794:13:0;:64;;;;:190;;35873:7;;35895:1;;35911:4;;35938;;35958:15;;35794:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:416::-;1465:6;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:52;;;1542:1;1539;1532:12;1494:52;1581:9;1568:23;1600:31;1625:5;1600:31;:::i;:::-;1650:5;-1:-1:-1;1707:2:1;1692:18;;1679:32;1749:15;;1742:23;1730:36;;1720:64;;1780:1;1777;1770:12;1720:64;1803:7;1793:17;;;1400:416;;;;;:::o;2003:247::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2170:9;2157:23;2189:31;2214:5;2189:31;:::i;2255:456::-;2332:6;2340;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2456:9;2443:23;2475:31;2500:5;2475:31;:::i;:::-;2525:5;-1:-1:-1;2582:2:1;2567:18;;2554:32;2595:33;2554:32;2595:33;:::i;:::-;2255:456;;2647:7;;-1:-1:-1;;;2701:2:1;2686:18;;;;2673:32;;2255:456::o;3339:388::-;3407:6;3415;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;3523:9;3510:23;3542:31;3567:5;3542:31;:::i;:::-;3592:5;-1:-1:-1;3649:2:1;3634:18;;3621:32;3662:33;3621:32;3662:33;:::i;3732:380::-;3811:1;3807:12;;;;3854;;;3875:61;;3929:4;3921:6;3917:17;3907:27;;3875:61;3982:2;3974:6;3971:14;3951:18;3948:38;3945:161;;4028:10;4023:3;4019:20;4016:1;4009:31;4063:4;4060:1;4053:15;4091:4;4088:1;4081:15;3945:161;;3732:380;;;:::o;4117:400::-;4319:2;4301:21;;;4358:2;4338:18;;;4331:30;4397:34;4392:2;4377:18;;4370:62;-1:-1:-1;;;4463:2:1;4448:18;;4441:34;4507:3;4492:19;;4117:400::o;4927:127::-;4988:10;4983:3;4979:20;4976:1;4969:31;5019:4;5016:1;5009:15;5043:4;5040:1;5033:15;5059:125;5124:9;;;5145:10;;;5142:36;;;5158:18;;:::i;6766:168::-;6839:9;;;6870;;6887:15;;;6881:22;;6867:37;6857:71;;6908:18;;:::i;6939:217::-;6979:1;7005;6995:132;;7049:10;7044:3;7040:20;7037:1;7030:31;7084:4;7081:1;7074:15;7112:4;7109:1;7102:15;6995:132;-1:-1:-1;7141:9:1;;6939:217::o;11405:128::-;11472:9;;;11493:11;;;11490:37;;;11507:18;;:::i;13442:127::-;13503:10;13498:3;13494:20;13491:1;13484:31;13534:4;13531:1;13524:15;13558:4;13555:1;13548:15;13574:251;13644:6;13697:2;13685:9;13676:7;13672:23;13668:32;13665:52;;;13713:1;13710;13703:12;13665:52;13745:9;13739:16;13764:31;13789:5;13764:31;:::i;13830:980::-;14092:4;14140:3;14129:9;14125:19;14171:6;14160:9;14153:25;14197:2;14235:6;14230:2;14219:9;14215:18;14208:34;14278:3;14273:2;14262:9;14258:18;14251:31;14302:6;14337;14331:13;14368:6;14360;14353:22;14406:3;14395:9;14391:19;14384:26;;14445:2;14437:6;14433:15;14419:29;;14466:1;14476:195;14490:6;14487:1;14484:13;14476:195;;;14555:13;;-1:-1:-1;;;;;14551:39:1;14539:52;;14646:15;;;;14611:12;;;;14587:1;14505:9;14476:195;;;-1:-1:-1;;;;;;;14727:32:1;;;;14722:2;14707:18;;14700:60;-1:-1:-1;;;14791:3:1;14776:19;14769:35;14688:3;13830:980;-1:-1:-1;;;13830:980:1:o
Swarm Source
ipfs://96451a4491d926d24d7f9f41fa345354b939d7523205309df901d273bee0ab7a
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.