ERC-20
Overview
Max Total Supply
100,000,000,000 HELIX
Holders
64
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,216,801,110.494418024400621173 HELIXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Helix
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-30 */ /** https://t.me/helixeth */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @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 substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Helix is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Helix", "HELIX") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDC); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 0; uint256 _buyLiquidityFee = 0; uint256 _sellDevFee = 2; uint256 _sellLiquidityFee = 3; uint256 totalSupply = 100_000_000_000 * 1e18; maxTransactionAmount = totalSupply * 2 / 100; // 2% maxWallet = totalSupply * 2 / 100; // 2% swapTokensAtAmount = (totalSupply * 20) / 10000; buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = address(0x7a30c2b884F02F4C83355E1105A46eA3DC1B0852); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; // Must keep fees at 10% or less } function renounceOwnership( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; // Must keep fees at 10% or less } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDC path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDC(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b5060405180604001604052806005815260200164090cad8d2f60db1b815250604051806040016040528060058152602001640908a9892b60db1b815250816003908162000094919062000643565b506004620000a3828262000643565b505050620000c0620000ba6200033b60201b60201c565b6200033f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e281600162000391565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015391906200070f565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cb91906200070f565b6001600160a01b031660a0819052620001e690600162000391565b600080600260036c01431e0fae6d7217caa0000000606462000209828562000757565b62000215919062000779565b60085560646200022782600262000757565b62000233919062000779565b600a556127106200024682601462000757565b62000252919062000779565b600955600d859055600e8490556200026b84866200079c565b600c55601083905560118290556200028482846200079c565b600f55600780546001600160a01b031916737a30c2b884f02f4c83355e1105a46ea3dc1b0852179055620002cc620002c46005546001600160a01b031690565b60016200040b565b620002d93060016200040b565b620002e861dead60016200040b565b62000307620002ff6005546001600160a01b031690565b600162000391565b6200031430600162000391565b6200032361dead600162000391565b6200032f3382620004b5565b505050505050620007b7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003e05760405162461bcd60e51b815260206004820181905260248201526000805160206200267383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004565760405162461bcd60e51b81526020600482018190526024820152600080516020620026738339815191526044820152606401620003d7565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200050d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003d7565b80600260008282546200052191906200079c565b90915550506001600160a01b03821660009081526020819052604081208054839290620005509084906200079c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005ca57607f821691505b602082108103620005eb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200059a57600081815260208120601f850160051c810160208610156200061a5750805b601f850160051c820191505b818110156200063b5782815560010162000626565b505050505050565b81516001600160401b038111156200065f576200065f6200059f565b6200067781620006708454620005b5565b84620005f1565b602080601f831160018114620006af5760008415620006965750858301515b600019600386901b1c1916600185901b1785556200063b565b600085815260208120601f198616915b82811015620006e057888601518255948401946001909101908401620006bf565b5085821015620006ff5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200072257600080fd5b81516001600160a01b03811681146200073a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000774576200077462000741565b500290565b6000826200079757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007b257620007b262000741565b500190565b60805160a051611e656200080e600039600081816103fd0152818161125c0152818161146d0152818161157d0152818161162601526116e00152600081816102fe015281816119c40152611a030152611e656000f3fe6080604052600436106102555760003560e01c80638a8c523c11610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c02466681461067b578063c18bc1951461069b578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb5780639c3b4fdc14610610578063a0d82dc514610626578063a9059cbb1461063c578063bbc0c7421461065c57600080fd5b80638a8c523c146105685780638d0f21e21461057d5780638da5cb5b1461059d5780638ea5220f146105bb578063924de9b7146105db57600080fd5b806349bd5a5e116101d25780636ddd1713116101965780636ddd1713146104a857806370a08231146104c8578063715018a6146104fe578063751039fc146105135780637571336a1461052857806389a302711461054857600080fd5b806349bd5a5e146103eb5780634a62bb651461041f5780634fbee1931461043957806366ca9b83146104725780636a486a8e1461049257600080fd5b80631816467f116102195780631816467f14610357578063203e727e1461037957806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57600080fd5b806306fdde0314610261578063095ea7b31461028c57806310d5de53146102bc5780631694505e146102ec57806318160ddd1461033857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107c5565b6040516102839190611a7b565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611ae7565b610857565b6040519015158152602001610283565b3480156102c857600080fd5b506102ac6102d7366004611b11565b60136020526000908152604090205460ff1681565b3480156102f857600080fd5b506103207f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b34801561034457600080fd5b506002545b604051908152602001610283565b34801561036357600080fd5b50610377610372366004611b11565b61086d565b005b34801561038557600080fd5b50610377610394366004611b2c565b6108fd565b3480156103a557600080fd5b506102ac6103b4366004611b45565b6109da565b3480156103c557600080fd5b5061032061dead81565b3480156103db57600080fd5b5060405160128152602001610283565b3480156103f757600080fd5b506103207f000000000000000000000000000000000000000000000000000000000000000081565b34801561042b57600080fd5b50600b546102ac9060ff1681565b34801561044557600080fd5b506102ac610454366004611b11565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561047e57600080fd5b5061037761048d366004611b81565b610a84565b34801561049e57600080fd5b50610349600f5481565b3480156104b457600080fd5b50600b546102ac9062010000900460ff1681565b3480156104d457600080fd5b506103496104e3366004611b11565b6001600160a01b031660009081526020819052604090205490565b34801561050a57600080fd5b50610377610ac9565b34801561051f57600080fd5b506102ac610aff565b34801561053457600080fd5b50610377610543366004611bb3565b610b3c565b34801561055457600080fd5b50600654610320906001600160a01b031681565b34801561057457600080fd5b50610377610b91565b34801561058957600080fd5b50610377610598366004611b81565b610bce565b3480156105a957600080fd5b506005546001600160a01b0316610320565b3480156105c757600080fd5b50600754610320906001600160a01b031681565b3480156105e757600080fd5b506103776105f6366004611be6565b610c13565b34801561060757600080fd5b50610276610c59565b34801561061c57600080fd5b50610349600d5481565b34801561063257600080fd5b5061034960105481565b34801561064857600080fd5b506102ac610657366004611ae7565b610c68565b34801561066857600080fd5b50600b546102ac90610100900460ff1681565b34801561068757600080fd5b50610377610696366004611bb3565b610c75565b3480156106a757600080fd5b506103776106b6366004611b2c565b610cfe565b3480156106c757600080fd5b5061034960085481565b3480156106dd57600080fd5b506102ac6106ec366004611b2c565b610dcf565b3480156106fd57600080fd5b50610349600c5481565b34801561071357600080fd5b50610349610722366004611c01565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061034960095481565b34801561076f57600080fd5b50610349600e5481565b34801561078557600080fd5b50610377610794366004611b11565b610f26565b3480156107a557600080fd5b5061034960115481565b3480156107bb57600080fd5b50610349600a5481565b6060600380546107d490611c2b565b80601f016020809104026020016040519081016040528092919081815260200182805461080090611c2b565b801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b6000610864338484610fc1565b50600192915050565b6005546001600160a01b031633146108a05760405162461bcd60e51b815260040161089790611c65565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109275760405162461bcd60e51b815260040161089790611c65565b670de0b6b3a76400006103e861093c60025490565b610947906001611cb0565b6109519190611ccf565b61095b9190611ccf565b8110156109c25760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610897565b6109d481670de0b6b3a7640000611cb0565b60085550565b60006109e78484846110e5565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a6c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610897565b610a798533858403610fc1565b506001949350505050565b6005546001600160a01b03163314610aae5760405162461bcd60e51b815260040161089790611c65565b600d829055600e819055610ac28183611cf1565b600c555050565b6005546001600160a01b03163314610af35760405162461bcd60e51b815260040161089790611c65565b610afd6000611728565b565b6005546000906001600160a01b03163314610b2c5760405162461bcd60e51b815260040161089790611c65565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b665760405162461bcd60e51b815260040161089790611c65565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bbb5760405162461bcd60e51b815260040161089790611c65565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bf85760405162461bcd60e51b815260040161089790611c65565b60108290556011819055610c0c8183611cf1565b600f555050565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b815260040161089790611c65565b600b8054911515620100000262ff000019909216919091179055565b6060600480546107d490611c2b565b60006108643384846110e5565b6005546001600160a01b03163314610c9f5760405162461bcd60e51b815260040161089790611c65565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d285760405162461bcd60e51b815260040161089790611c65565b670de0b6b3a76400006103e8610d3d60025490565b610d48906005611cb0565b610d529190611ccf565b610d5c9190611ccf565b811015610db75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610897565b610dc981670de0b6b3a7640000611cb0565b600a5550565b6005546000906001600160a01b03163314610dfc5760405162461bcd60e51b815260040161089790611c65565b620186a0610e0960025490565b610e14906001611cb0565b610e1e9190611ccf565b821015610e8b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610897565b6103e8610e9760025490565b610ea2906005611cb0565b610eac9190611ccf565b821115610f185760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610897565b50600981905560015b919050565b6005546001600160a01b03163314610f505760405162461bcd60e51b815260040161089790611c65565b6001600160a01b038116610fb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610897565b610fbe81611728565b50565b6001600160a01b0383166110235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610897565b6001600160a01b0382166110845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610897565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661110b5760405162461bcd60e51b815260040161089790611d09565b6001600160a01b0382166111315760405162461bcd60e51b815260040161089790611d4e565b8060000361114a576111458383600061177a565b505050565b600b5460ff1615611422576005546001600160a01b0384811691161480159061118157506005546001600160a01b03838116911614155b801561119557506001600160a01b03821615155b80156111ac57506001600160a01b03821661dead14155b80156111c25750600654600160a01b900460ff16155b1561142257600b54610100900460ff1661125a576001600160a01b03831660009081526012602052604090205460ff168061121557506001600160a01b03821660009081526012602052604090205460ff165b61125a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610897565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156112b457506001600160a01b03821660009081526013602052604090205460ff16155b15611398576008548111156113295760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610897565b600a546001600160a01b03831660009081526020819052604090205461134f9083611cf1565b11156113935760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610897565b611422565b6001600160a01b03821660009081526013602052604090205460ff1661142257600a546001600160a01b0383166000908152602081905260409020546113de9083611cf1565b11156114225760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610897565b306000908152602081905260409020546009548110801590819061144e5750600b5462010000900460ff165b80156114645750600654600160a01b900460ff16155b80156114a157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156114c657506001600160a01b03851660009081526012602052604090205460ff16155b80156114eb57506001600160a01b03841660009081526012602052604090205460ff16155b15611519576006805460ff60a01b1916600160a01b17905561150b6118cf565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061156757506001600160a01b03851660009081526012602052604090205460ff165b15611570575060005b60008060008315611712577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156115be57506000600f54115b15611624576115e360646115dd600f548a61191990919063ffffffff16565b9061192c565b9250600f54601154846115f69190611cb0565b6116009190611ccf565b9150600f54601054846116139190611cb0565b61161d9190611ccf565b90506116c3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561166757506000600c54115b156116c35761168660646115dd600c548a61191990919063ffffffff16565b9250600c54600e54846116999190611cb0565b6116a39190611ccf565b9150600c54600d54846116b69190611cb0565b6116c09190611ccf565b90505b82156116d4576116d489308561177a565b811561170557611705307f00000000000000000000000000000000000000000000000000000000000000008461177a565b61170f8388611d91565b96505b61171d89898961177a565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117a05760405162461bcd60e51b815260040161089790611d09565b6001600160a01b0382166117c65760405162461bcd60e51b815260040161089790611d4e565b6001600160a01b0383166000908152602081905260409020548181101561183e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610897565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611875908490611cf1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118c191815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036118ea5750565b6009546118f8906014611cb0565b8111156119105760095461190d906014611cb0565b90505b610fbe81611938565b60006119258284611cb0565b9392505050565b60006119258284611ccf565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196d5761196d611da8565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061199e5761199e611da8565b60200260200101906001600160a01b031690816001600160a01b0316815250506119e9307f000000000000000000000000000000000000000000000000000000000000000084610fc1565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611a45928792600092889291909116904290600401611dbe565b600060405180830381600087803b158015611a5f57600080fd5b505af1158015611a73573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611aa857858101830151858201604001528201611a8c565b81811115611aba576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f2157600080fd5b60008060408385031215611afa57600080fd5b611b0383611ad0565b946020939093013593505050565b600060208284031215611b2357600080fd5b61192582611ad0565b600060208284031215611b3e57600080fd5b5035919050565b600080600060608486031215611b5a57600080fd5b611b6384611ad0565b9250611b7160208501611ad0565b9150604084013590509250925092565b60008060408385031215611b9457600080fd5b50508035926020909101359150565b80358015158114610f2157600080fd5b60008060408385031215611bc657600080fd5b611bcf83611ad0565b9150611bdd60208401611ba3565b90509250929050565b600060208284031215611bf857600080fd5b61192582611ba3565b60008060408385031215611c1457600080fd5b611c1d83611ad0565b9150611bdd60208401611ad0565b600181811c90821680611c3f57607f821691505b602082108103611c5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611cca57611cca611c9a565b500290565b600082611cec57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611d0457611d04611c9a565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611da357611da3611c9a565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e0e5784516001600160a01b031683529383019391830191600101611de9565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208f7d8920272f1b24863a2e513cbbbf25cc738d1eec0587911fd51e15b9159ac764736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102555760003560e01c80638a8c523c11610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c02466681461067b578063c18bc1951461069b578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb5780639c3b4fdc14610610578063a0d82dc514610626578063a9059cbb1461063c578063bbc0c7421461065c57600080fd5b80638a8c523c146105685780638d0f21e21461057d5780638da5cb5b1461059d5780638ea5220f146105bb578063924de9b7146105db57600080fd5b806349bd5a5e116101d25780636ddd1713116101965780636ddd1713146104a857806370a08231146104c8578063715018a6146104fe578063751039fc146105135780637571336a1461052857806389a302711461054857600080fd5b806349bd5a5e146103eb5780634a62bb651461041f5780634fbee1931461043957806366ca9b83146104725780636a486a8e1461049257600080fd5b80631816467f116102195780631816467f14610357578063203e727e1461037957806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57600080fd5b806306fdde0314610261578063095ea7b31461028c57806310d5de53146102bc5780631694505e146102ec57806318160ddd1461033857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107c5565b6040516102839190611a7b565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611ae7565b610857565b6040519015158152602001610283565b3480156102c857600080fd5b506102ac6102d7366004611b11565b60136020526000908152604090205460ff1681565b3480156102f857600080fd5b506103207f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561034457600080fd5b506002545b604051908152602001610283565b34801561036357600080fd5b50610377610372366004611b11565b61086d565b005b34801561038557600080fd5b50610377610394366004611b2c565b6108fd565b3480156103a557600080fd5b506102ac6103b4366004611b45565b6109da565b3480156103c557600080fd5b5061032061dead81565b3480156103db57600080fd5b5060405160128152602001610283565b3480156103f757600080fd5b506103207f0000000000000000000000004dbe4c82a6e63954352de5035e2852897f86adc981565b34801561042b57600080fd5b50600b546102ac9060ff1681565b34801561044557600080fd5b506102ac610454366004611b11565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561047e57600080fd5b5061037761048d366004611b81565b610a84565b34801561049e57600080fd5b50610349600f5481565b3480156104b457600080fd5b50600b546102ac9062010000900460ff1681565b3480156104d457600080fd5b506103496104e3366004611b11565b6001600160a01b031660009081526020819052604090205490565b34801561050a57600080fd5b50610377610ac9565b34801561051f57600080fd5b506102ac610aff565b34801561053457600080fd5b50610377610543366004611bb3565b610b3c565b34801561055457600080fd5b50600654610320906001600160a01b031681565b34801561057457600080fd5b50610377610b91565b34801561058957600080fd5b50610377610598366004611b81565b610bce565b3480156105a957600080fd5b506005546001600160a01b0316610320565b3480156105c757600080fd5b50600754610320906001600160a01b031681565b3480156105e757600080fd5b506103776105f6366004611be6565b610c13565b34801561060757600080fd5b50610276610c59565b34801561061c57600080fd5b50610349600d5481565b34801561063257600080fd5b5061034960105481565b34801561064857600080fd5b506102ac610657366004611ae7565b610c68565b34801561066857600080fd5b50600b546102ac90610100900460ff1681565b34801561068757600080fd5b50610377610696366004611bb3565b610c75565b3480156106a757600080fd5b506103776106b6366004611b2c565b610cfe565b3480156106c757600080fd5b5061034960085481565b3480156106dd57600080fd5b506102ac6106ec366004611b2c565b610dcf565b3480156106fd57600080fd5b50610349600c5481565b34801561071357600080fd5b50610349610722366004611c01565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061034960095481565b34801561076f57600080fd5b50610349600e5481565b34801561078557600080fd5b50610377610794366004611b11565b610f26565b3480156107a557600080fd5b5061034960115481565b3480156107bb57600080fd5b50610349600a5481565b6060600380546107d490611c2b565b80601f016020809104026020016040519081016040528092919081815260200182805461080090611c2b565b801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b6000610864338484610fc1565b50600192915050565b6005546001600160a01b031633146108a05760405162461bcd60e51b815260040161089790611c65565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109275760405162461bcd60e51b815260040161089790611c65565b670de0b6b3a76400006103e861093c60025490565b610947906001611cb0565b6109519190611ccf565b61095b9190611ccf565b8110156109c25760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610897565b6109d481670de0b6b3a7640000611cb0565b60085550565b60006109e78484846110e5565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a6c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610897565b610a798533858403610fc1565b506001949350505050565b6005546001600160a01b03163314610aae5760405162461bcd60e51b815260040161089790611c65565b600d829055600e819055610ac28183611cf1565b600c555050565b6005546001600160a01b03163314610af35760405162461bcd60e51b815260040161089790611c65565b610afd6000611728565b565b6005546000906001600160a01b03163314610b2c5760405162461bcd60e51b815260040161089790611c65565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b665760405162461bcd60e51b815260040161089790611c65565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bbb5760405162461bcd60e51b815260040161089790611c65565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bf85760405162461bcd60e51b815260040161089790611c65565b60108290556011819055610c0c8183611cf1565b600f555050565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b815260040161089790611c65565b600b8054911515620100000262ff000019909216919091179055565b6060600480546107d490611c2b565b60006108643384846110e5565b6005546001600160a01b03163314610c9f5760405162461bcd60e51b815260040161089790611c65565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d285760405162461bcd60e51b815260040161089790611c65565b670de0b6b3a76400006103e8610d3d60025490565b610d48906005611cb0565b610d529190611ccf565b610d5c9190611ccf565b811015610db75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610897565b610dc981670de0b6b3a7640000611cb0565b600a5550565b6005546000906001600160a01b03163314610dfc5760405162461bcd60e51b815260040161089790611c65565b620186a0610e0960025490565b610e14906001611cb0565b610e1e9190611ccf565b821015610e8b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610897565b6103e8610e9760025490565b610ea2906005611cb0565b610eac9190611ccf565b821115610f185760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610897565b50600981905560015b919050565b6005546001600160a01b03163314610f505760405162461bcd60e51b815260040161089790611c65565b6001600160a01b038116610fb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610897565b610fbe81611728565b50565b6001600160a01b0383166110235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610897565b6001600160a01b0382166110845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610897565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661110b5760405162461bcd60e51b815260040161089790611d09565b6001600160a01b0382166111315760405162461bcd60e51b815260040161089790611d4e565b8060000361114a576111458383600061177a565b505050565b600b5460ff1615611422576005546001600160a01b0384811691161480159061118157506005546001600160a01b03838116911614155b801561119557506001600160a01b03821615155b80156111ac57506001600160a01b03821661dead14155b80156111c25750600654600160a01b900460ff16155b1561142257600b54610100900460ff1661125a576001600160a01b03831660009081526012602052604090205460ff168061121557506001600160a01b03821660009081526012602052604090205460ff165b61125a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610897565b7f0000000000000000000000004dbe4c82a6e63954352de5035e2852897f86adc96001600160a01b0316836001600160a01b03161480156112b457506001600160a01b03821660009081526013602052604090205460ff16155b15611398576008548111156113295760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610897565b600a546001600160a01b03831660009081526020819052604090205461134f9083611cf1565b11156113935760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610897565b611422565b6001600160a01b03821660009081526013602052604090205460ff1661142257600a546001600160a01b0383166000908152602081905260409020546113de9083611cf1565b11156114225760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610897565b306000908152602081905260409020546009548110801590819061144e5750600b5462010000900460ff165b80156114645750600654600160a01b900460ff16155b80156114a157507f0000000000000000000000004dbe4c82a6e63954352de5035e2852897f86adc96001600160a01b0316846001600160a01b0316145b80156114c657506001600160a01b03851660009081526012602052604090205460ff16155b80156114eb57506001600160a01b03841660009081526012602052604090205460ff16155b15611519576006805460ff60a01b1916600160a01b17905561150b6118cf565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061156757506001600160a01b03851660009081526012602052604090205460ff165b15611570575060005b60008060008315611712577f0000000000000000000000004dbe4c82a6e63954352de5035e2852897f86adc96001600160a01b0316886001600160a01b03161480156115be57506000600f54115b15611624576115e360646115dd600f548a61191990919063ffffffff16565b9061192c565b9250600f54601154846115f69190611cb0565b6116009190611ccf565b9150600f54601054846116139190611cb0565b61161d9190611ccf565b90506116c3565b7f0000000000000000000000004dbe4c82a6e63954352de5035e2852897f86adc96001600160a01b0316896001600160a01b031614801561166757506000600c54115b156116c35761168660646115dd600c548a61191990919063ffffffff16565b9250600c54600e54846116999190611cb0565b6116a39190611ccf565b9150600c54600d54846116b69190611cb0565b6116c09190611ccf565b90505b82156116d4576116d489308561177a565b811561170557611705307f0000000000000000000000004dbe4c82a6e63954352de5035e2852897f86adc98461177a565b61170f8388611d91565b96505b61171d89898961177a565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117a05760405162461bcd60e51b815260040161089790611d09565b6001600160a01b0382166117c65760405162461bcd60e51b815260040161089790611d4e565b6001600160a01b0383166000908152602081905260409020548181101561183e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610897565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611875908490611cf1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118c191815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036118ea5750565b6009546118f8906014611cb0565b8111156119105760095461190d906014611cb0565b90505b610fbe81611938565b60006119258284611cb0565b9392505050565b60006119258284611ccf565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196d5761196d611da8565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061199e5761199e611da8565b60200260200101906001600160a01b031690816001600160a01b0316815250506119e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fc1565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611a45928792600092889291909116904290600401611dbe565b600060405180830381600087803b158015611a5f57600080fd5b505af1158015611a73573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611aa857858101830151858201604001528201611a8c565b81811115611aba576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f2157600080fd5b60008060408385031215611afa57600080fd5b611b0383611ad0565b946020939093013593505050565b600060208284031215611b2357600080fd5b61192582611ad0565b600060208284031215611b3e57600080fd5b5035919050565b600080600060608486031215611b5a57600080fd5b611b6384611ad0565b9250611b7160208501611ad0565b9150604084013590509250925092565b60008060408385031215611b9457600080fd5b50508035926020909101359150565b80358015158114610f2157600080fd5b60008060408385031215611bc657600080fd5b611bcf83611ad0565b9150611bdd60208401611ba3565b90509250929050565b600060208284031215611bf857600080fd5b61192582611ba3565b60008060408385031215611c1457600080fd5b611c1d83611ad0565b9150611bdd60208401611ad0565b600181811c90821680611c3f57607f821691505b602082108103611c5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611cca57611cca611c9a565b500290565b600082611cec57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611d0457611d04611c9a565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611da357611da3611c9a565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e0e5784516001600160a01b031683529383019391830191600101611de9565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208f7d8920272f1b24863a2e513cbbbf25cc738d1eec0587911fd51e15b9159ac764736f6c634300080f0033
Deployed Bytecode Sourcemap
23370:10589:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8547:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10714:169;;;;;;;;;;-1:-1:-1;10714:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;10714:169:0;1053:187:1;24302:63:0;;;;;;;;;;-1:-1:-1;24302:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23445:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1626:32:1;;;1608:51;;1596:2;1581:18;23445:51:0;1436:229:1;9667:108:0;;;;;;;;;;-1:-1:-1;9755:12:0;;9667:108;;;1816:25:1;;;1804:2;1789:18;9667:108:0;1670:177:1;29014:189:0;;;;;;;;;;-1:-1:-1;29014:189:0;;;;;:::i;:::-;;:::i;:::-;;27317:275;;;;;;;;;;-1:-1:-1;27317:275:0;;;;;:::i;:::-;;:::i;11365:492::-;;;;;;;;;;-1:-1:-1;11365:492:0;;;;;:::i;:::-;;:::i;23548:53::-;;;;;;;;;;;;23594:6;23548:53;;9509:93;;;;;;;;;;-1:-1:-1;9509:93:0;;9592:2;2720:36:1;;2708:2;2693:18;9509:93:0;2578:184:1;23503:38:0;;;;;;;;;;;;;;;23859:33;;;;;;;;;;-1:-1:-1;23859:33:0;;;;;;;;29213:126;;;;;;;;;;-1:-1:-1;29213:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29303:28:0;29279:4;29303:28;;;:19;:28;;;;;;;;;29213:126;28235:282;;;;;;;;;;-1:-1:-1;28235:282:0;;;;;:::i;:::-;;:::i;24083:28::-;;;;;;;;;;;;;;;;23939:31;;;;;;;;;;-1:-1:-1;23939:31:0;;;;;;;;;;;9838:127;;;;;;;;;;-1:-1:-1;9838:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9939:18:0;9912:7;9939:18;;;;;;;;;;;;9838:127;2459:103;;;;;;;;;;;;;:::i;26621:121::-;;;;;;;;;;;;;:::i;27864:167::-;;;;;;;;;;-1:-1:-1;27864:167:0;;;;;:::i;:::-;;:::i;23608:64::-;;;;;;;;;;-1:-1:-1;23608:64:0;;;;-1:-1:-1;;;;;23608:64:0;;;26457:112;;;;;;;;;;;;;:::i;28525:291::-;;;;;;;;;;-1:-1:-1;28525:291:0;;;;;:::i;:::-;;:::i;1808:87::-;;;;;;;;;;-1:-1:-1;1881:6:0;;-1:-1:-1;;;;;1881:6:0;1808:87;;23711:24;;;;;;;;;;-1:-1:-1;23711:24:0;;;;-1:-1:-1;;;;;23711:24:0;;;28127:100;;;;;;;;;;-1:-1:-1;28127:100:0;;;;;:::i;:::-;;:::i;8766:104::-;;;;;;;;;;;;;:::i;24013:24::-;;;;;;;;;;;;;;;;24118:25;;;;;;;;;;;;;;;;10178:175;;;;;;;;;;-1:-1:-1;10178:175:0;;;;;:::i;:::-;;:::i;23899:33::-;;;;;;;;;;-1:-1:-1;23899:33:0;;;;;;;;;;;28824:182;;;;;;;;;;-1:-1:-1;28824:182:0;;;;;:::i;:::-;;:::i;27600:256::-;;;;;;;;;;-1:-1:-1;27600:256:0;;;;;:::i;:::-;;:::i;23744:35::-;;;;;;;;;;;;;;;;26812:497;;;;;;;;;;-1:-1:-1;26812:497:0;;;;;:::i;:::-;;:::i;23979:27::-;;;;;;;;;;;;;;;;10416:151;;;;;;;;;;-1:-1:-1;10416:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10532:18:0;;;10505:7;10532:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10416:151;23786:33;;;;;;;;;;;;;;;;24044:30;;;;;;;;;;;;;;;;2717:201;;;;;;;;;;-1:-1:-1;2717:201:0;;;;;:::i;:::-;;:::i;24150:31::-;;;;;;;;;;;;;;;;23826:24;;;;;;;;;;;;;;;;8547:100;8601:13;8634:5;8627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8547:100;:::o;10714:169::-;10797:4;10814:39;755:10;10837:7;10846:6;10814:8;:39::i;:::-;-1:-1:-1;10871:4:0;10714:169;;;;:::o;29014:189::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;;;;;;;;;29150:9:::1;::::0;29119:41:::1;::::0;-1:-1:-1;;;;;29150:9:0;;::::1;::::0;29119:41;::::1;::::0;::::1;::::0;29150:9:::1;::::0;29119:41:::1;29171:9;:24:::0;;-1:-1:-1;;;;;;29171:24:0::1;-1:-1:-1::0;;;;;29171:24:0;;;::::1;::::0;;;::::1;::::0;;29014:189::o;27317:275::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;27454:4:::1;27446;27425:13;9755:12:::0;;;9667:108;27425:13:::1;:17;::::0;27441:1:::1;27425:17;:::i;:::-;27424:26;;;;:::i;:::-;27423:35;;;;:::i;:::-;27413:6;:45;;27391:142;;;::::0;-1:-1:-1;;;27391:142:0;;5369:2:1;27391:142:0::1;::::0;::::1;5351:21:1::0;5408:2;5388:18;;;5381:30;5447:34;5427:18;;;5420:62;-1:-1:-1;;;5498:18:1;;;5491:45;5553:19;;27391:142:0::1;5167:411:1::0;27391:142:0::1;27567:17;:6:::0;27577::::1;27567:17;:::i;:::-;27544:20;:40:::0;-1:-1:-1;27317:275:0:o;11365:492::-;11505:4;11522:36;11532:6;11540:9;11551:6;11522:9;:36::i;:::-;-1:-1:-1;;;;;11598:19:0;;11571:24;11598:19;;;:11;:19;;;;;;;;755:10;11598:33;;;;;;;;11650:26;;;;11642:79;;;;-1:-1:-1;;;11642:79:0;;5785:2:1;11642:79:0;;;5767:21:1;5824:2;5804:18;;;5797:30;5863:34;5843:18;;;5836:62;-1:-1:-1;;;5914:18:1;;;5907:38;5962:19;;11642:79:0;5583:404:1;11642:79:0;11757:57;11766:6;755:10;11807:6;11788:16;:25;11757:8;:57::i;:::-;-1:-1:-1;11845:4:0;;11365:492;-1:-1:-1;;;;11365:492:0:o;28235:282::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;28353:9:::1;:19:::0;;;28383:15:::1;:31:::0;;;28440:27:::1;28401:13:::0;28365:7;28440:27:::1;:::i;:::-;28425:12;:42:::0;-1:-1:-1;;28235:282:0:o;2459:103::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;2524:30:::1;2551:1;2524:18;:30::i;:::-;2459:103::o:0;26621:121::-;1881:6;;26673:4;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;-1:-1:-1;26690:14:0::1;:22:::0;;-1:-1:-1;;26690:22:0::1;::::0;;;26621:121;:::o;27864:167::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27977:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27977:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27864:167::o;26457:112::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;26512:13:::1;:20:::0;;-1:-1:-1;;26543:18:0;;;;;26457:112::o;28525:291::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;28647:10:::1;:20:::0;;;28678:16:::1;:32:::0;;;28737:29:::1;28697:13:::0;28660:7;28737:29:::1;:::i;:::-;28721:13;:45:::0;-1:-1:-1;;28525:291:0:o;28127:100::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;28198:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28198:21:0;;::::1;::::0;;;::::1;::::0;;28127:100::o;8766:104::-;8822:13;8855:7;8848:14;;;;;:::i;10178:175::-;10264:4;10281:42;755:10;10305:9;10316:6;10281:9;:42::i;28824:182::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28909:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;28909:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28964:34;;1193:41:1;;;28964:34:0::1;::::0;1166:18:1;28964:34:0::1;;;;;;;28824:182:::0;;:::o;27600:256::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;27740:4:::1;27732;27711:13;9755:12:::0;;;9667:108;27711:13:::1;:17;::::0;27727:1:::1;27711:17;:::i;:::-;27710:26;;;;:::i;:::-;27709:35;;;;:::i;:::-;27699:6;:45;;27677:131;;;::::0;-1:-1:-1;;;27677:131:0;;6327:2:1;27677:131:0::1;::::0;::::1;6309:21:1::0;6366:2;6346:18;;;6339:30;6405:34;6385:18;;;6378:62;-1:-1:-1;;;6456:18:1;;;6449:34;6500:19;;27677:131:0::1;6125:400:1::0;27677:131:0::1;27831:17;:6:::0;27841::::1;27831:17;:::i;:::-;27819:9;:29:::0;-1:-1:-1;27600:256:0:o;26812:497::-;1881:6;;26920:4;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;26999:6:::1;26978:13;9755:12:::0;;;9667:108;26978:13:::1;:17;::::0;26994:1:::1;26978:17;:::i;:::-;26977:28;;;;:::i;:::-;26964:9;:41;;26942:144;;;::::0;-1:-1:-1;;;26942:144:0;;6732:2:1;26942:144:0::1;::::0;::::1;6714:21:1::0;6771:2;6751:18;;;6744:30;6810:34;6790:18;;;6783:62;-1:-1:-1;;;6861:18:1;;;6854:51;6922:19;;26942:144:0::1;6530:417:1::0;26942:144:0::1;27154:4;27133:13;9755:12:::0;;;9667:108;27133:13:::1;:17;::::0;27149:1:::1;27133:17;:::i;:::-;27132:26;;;;:::i;:::-;27119:9;:39;;27097:141;;;::::0;-1:-1:-1;;;27097:141:0;;7154:2:1;27097:141:0::1;::::0;::::1;7136:21:1::0;7193:2;7173:18;;;7166:30;7232:34;7212:18;;;7205:62;-1:-1:-1;;;7283:18:1;;;7276:50;7343:19;;27097:141:0::1;6952:416:1::0;27097:141:0::1;-1:-1:-1::0;27249:18:0::1;:30:::0;;;27297:4:::1;2099:1;26812:497:::0;;;:::o;2717:201::-;1881:6;;-1:-1:-1;;;;;1881:6:0;755:10;2028:23;2020:68;;;;-1:-1:-1;;;2020:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2806:22:0;::::1;2798:73;;;::::0;-1:-1:-1;;;2798:73:0;;7575:2:1;2798:73:0::1;::::0;::::1;7557:21:1::0;7614:2;7594:18;;;7587:30;7653:34;7633:18;;;7626:62;-1:-1:-1;;;7704:18:1;;;7697:36;7750:19;;2798:73:0::1;7373:402:1::0;2798:73:0::1;2882:28;2901:8;2882:18;:28::i;:::-;2717:201:::0;:::o;14206:380::-;-1:-1:-1;;;;;14342:19:0;;14334:68;;;;-1:-1:-1;;;14334:68:0;;7982:2:1;14334:68:0;;;7964:21:1;8021:2;8001:18;;;7994:30;8060:34;8040:18;;;8033:62;-1:-1:-1;;;8111:18:1;;;8104:34;8155:19;;14334:68:0;7780:400:1;14334:68:0;-1:-1:-1;;;;;14421:21:0;;14413:68;;;;-1:-1:-1;;;14413:68:0;;8387:2:1;14413:68:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:34;8445:18;;;8438:62;-1:-1:-1;;;8516:18:1;;;8509:32;8558:19;;14413:68:0;8185:398:1;14413:68:0;-1:-1:-1;;;;;14494:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14546:32;;1816:25:1;;;14546:32:0;;1789:18:1;14546:32:0;;;;;;;14206:380;;;:::o;29347:3679::-;-1:-1:-1;;;;;29479:18:0;;29471:68;;;;-1:-1:-1;;;29471:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29558:16:0;;29550:64;;;;-1:-1:-1;;;29550:64:0;;;;;;;:::i;:::-;29631:6;29641:1;29631:11;29627:93;;29659:28;29675:4;29681:2;29685:1;29659:15;:28::i;:::-;29347:3679;;;:::o;29627:93::-;29736:14;;;;29732:1430;;;1881:6;;-1:-1:-1;;;;;29789:15:0;;;1881:6;;29789:15;;;;:49;;-1:-1:-1;1881:6:0;;-1:-1:-1;;;;;29825:13:0;;;1881:6;;29825:13;;29789:49;:86;;;;-1:-1:-1;;;;;;29859:16:0;;;;29789:86;:128;;;;-1:-1:-1;;;;;;29896:21:0;;29910:6;29896:21;;29789:128;:158;;;;-1:-1:-1;29939:8:0;;-1:-1:-1;;;29939:8:0;;;;29938:9;29789:158;29767:1384;;;29987:13;;;;;;;29982:223;;-1:-1:-1;;;;;30059:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30088:23:0;;;;;;:19;:23;;;;;;;;30059:52;30025:160;;;;-1:-1:-1;;;30025:160:0;;9600:2:1;30025:160:0;;;9582:21:1;9639:2;9619:18;;;9612:30;-1:-1:-1;;;9658:18:1;;;9651:52;9720:18;;30025:160:0;9398:346:1;30025:160:0;30419:13;-1:-1:-1;;;;;30411:21:0;:4;-1:-1:-1;;;;;30411:21:0;;:82;;;;-1:-1:-1;;;;;;30458:35:0;;;;;;:31;:35;;;;;;;;30457:36;30411:82;30385:751;;;30580:20;;30570:6;:30;;30536:169;;;;-1:-1:-1;;;30536:169:0;;9951:2:1;30536:169:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;-1:-1:-1;;;10080:18:1;;;10073:51;10141:19;;30536:169:0;9749:417:1;30536:169:0;30788:9;;-1:-1:-1;;;;;9939:18:0;;9912:7;9939:18;;;;;;;;;;;30762:22;;:6;:22;:::i;:::-;:35;;30728:140;;;;-1:-1:-1;;;30728:140:0;;10373:2:1;30728:140:0;;;10355:21:1;10412:2;10392:18;;;10385:30;-1:-1:-1;;;10431:18:1;;;10424:49;10490:18;;30728:140:0;10171:343:1;30728:140:0;30385:751;;;-1:-1:-1;;;;;30916:35:0;;;;;;:31;:35;;;;;;;;30911:225;;31036:9;;-1:-1:-1;;;;;9939:18:0;;9912:7;9939:18;;;;;;;;;;;31010:22;;:6;:22;:::i;:::-;:35;;30976:140;;;;-1:-1:-1;;;30976:140:0;;10373:2:1;30976:140:0;;;10355:21:1;10412:2;10392:18;;;10385:30;-1:-1:-1;;;10431:18:1;;;10424:49;10490:18;;30976:140:0;10171:343:1;30976:140:0;31223:4;31174:28;9939:18;;;;;;;;;;;31281;;31257:42;;;;;;;31330:35;;-1:-1:-1;31354:11:0;;;;;;;31330:35;:61;;;;-1:-1:-1;31383:8:0;;-1:-1:-1;;;31383:8:0;;;;31382:9;31330:61;:97;;;;;31414:13;-1:-1:-1;;;;;31408:19:0;:2;-1:-1:-1;;;;;31408:19:0;;31330:97;:140;;;;-1:-1:-1;;;;;;31445:25:0;;;;;;:19;:25;;;;;;;;31444:26;31330:140;:181;;;;-1:-1:-1;;;;;;31488:23:0;;;;;;:19;:23;;;;;;;;31487:24;31330:181;31312:313;;;31538:8;:15;;-1:-1:-1;;;;31538:15:0;-1:-1:-1;;;31538:15:0;;;31570:10;:8;:10::i;:::-;31597:8;:16;;-1:-1:-1;;;;31597:16:0;;;31312:313;31653:8;;-1:-1:-1;;;;;31763:25:0;;31637:12;31763:25;;;:19;:25;;;;;;31653:8;-1:-1:-1;;;31653:8:0;;;;;31652:9;;31763:25;;:52;;-1:-1:-1;;;;;;31792:23:0;;;;;;:19;:23;;;;;;;;31763:52;31759:100;;;-1:-1:-1;31842:5:0;31759:100;31871:12;31898:26;31939:20;32052:7;32048:925;;;32110:13;-1:-1:-1;;;;;32104:19:0;:2;-1:-1:-1;;;;;32104:19:0;;:40;;;;;32143:1;32127:13;;:17;32104:40;32100:583;;;32172:34;32202:3;32172:25;32183:13;;32172:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32165:41;;32274:13;;32254:16;;32247:4;:23;;;;:::i;:::-;32246:41;;;;:::i;:::-;32225:62;;32343:13;;32329:10;;32322:4;:17;;;;:::i;:::-;32321:35;;;;:::i;:::-;32306:50;;32100:583;;;32426:13;-1:-1:-1;;;;;32418:21:0;:4;-1:-1:-1;;;;;32418:21:0;;:41;;;;;32458:1;32443:12;;:16;32418:41;32414:269;;;32487:33;32516:3;32487:24;32498:12;;32487:6;:10;;:24;;;;:::i;:33::-;32480:40;;32587:12;;32568:15;;32561:4;:22;;;;:::i;:::-;32560:39;;;;:::i;:::-;32539:60;;32655:12;;32642:9;;32635:4;:16;;;;:::i;:::-;32634:33;;;;:::i;:::-;32619:48;;32414:269;32703:7;;32699:90;;32731:42;32747:4;32761;32768;32731:15;:42::i;:::-;32807:22;;32803:128;;32850:65;32874:4;32881:13;32896:18;32850:15;:65::i;:::-;32947:14;32957:4;32947:14;;:::i;:::-;;;32048:925;32985:33;33001:4;33007:2;33011:6;32985:15;:33::i;:::-;29460:3566;;;;;;29347:3679;;;:::o;3078:191::-;3171:6;;;-1:-1:-1;;;;;3188:17:0;;;-1:-1:-1;;;;;;3188:17:0;;;;;;;3221:40;;3171:6;;;3188:17;3171:6;;3221:40;;3152:16;;3221:40;3141:128;3078:191;:::o;12347:733::-;-1:-1:-1;;;;;12487:20:0;;12479:70;;;;-1:-1:-1;;;12479:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12568:23:0;;12560:71;;;;-1:-1:-1;;;12560:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12728:17:0;;12704:21;12728:17;;;;;;;;;;;12764:23;;;;12756:74;;;;-1:-1:-1;;;12756:74:0;;10851:2:1;12756:74:0;;;10833:21:1;10890:2;10870:18;;;10863:30;10929:34;10909:18;;;10902:62;-1:-1:-1;;;10980:18:1;;;10973:36;11026:19;;12756:74:0;10649:402:1;12756:74:0;-1:-1:-1;;;;;12866:17:0;;;:9;:17;;;;;;;;;;;12886:22;;;12866:42;;12930:20;;;;;;;;:30;;12902:6;;12866:9;12930:30;;12902:6;;12930:30;:::i;:::-;;;;;;;;12995:9;-1:-1:-1;;;;;12978:35:0;12987:6;-1:-1:-1;;;;;12978:35:0;;13006:6;12978:35;;;;1816:25:1;;1804:2;1789:18;;1670:177;12978:35:0;;;;;;;;12468:612;12347:733;;;:::o;33614:340::-;33697:4;33653:23;9939:18;;;;;;;;;;;;33718:20;;;33714:59;;33755:7;33614:340::o;33714:59::-;33807:18;;:23;;33828:2;33807:23;:::i;:::-;33789:15;:41;33785:115;;;33865:18;;:23;;33886:2;33865:23;:::i;:::-;33847:41;;33785:115;33912:34;33930:15;33912:17;:34::i;19338:98::-;19396:7;19423:5;19427:1;19423;:5;:::i;:::-;19416:12;19338:98;-1:-1:-1;;;19338:98:0:o;19737:::-;19795:7;19822:5;19826:1;19822;:5;:::i;33034:572::-;33185:16;;;33199:1;33185:16;;;;;;;;33161:21;;33185:16;;;;;;;;;;-1:-1:-1;33185:16:0;33161:40;;33230:4;33212;33217:1;33212:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33212:23:0;;;:7;;;;;;;;;:23;33256:4;;33246:7;;33256:4;;;33246;;33256;;33246:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;33246:14:0;;;-1:-1:-1;;;;;33246:14:0;;;;;33273:62;33290:4;33305:15;33323:11;33273:8;:62::i;:::-;33548:9;;33374:224;;-1:-1:-1;;;33374:224:0;;-1:-1:-1;;;;;33374:15:0;:69;;;;;:224;;33458:11;;33484:1;;33529:4;;33548:9;;;;;33572:15;;33374:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33090:516;33034:572;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;794:254;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:186::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;1852:180::-;1911:6;1964:2;1952:9;1943:7;1939:23;1935:32;1932:52;;;1980:1;1977;1970:12;1932:52;-1:-1:-1;2003:23:1;;1852:180;-1:-1:-1;1852:180:1:o;2037:328::-;2114:6;2122;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2270:38;2304:2;2293:9;2289:18;2270:38;:::i;:::-;2260:48;;2355:2;2344:9;2340:18;2327:32;2317:42;;2037:328;;;;;:::o;2767:248::-;2835:6;2843;2896:2;2884:9;2875:7;2871:23;2867:32;2864:52;;;2912:1;2909;2902:12;2864:52;-1:-1:-1;;2935:23:1;;;3005:2;2990:18;;;2977:32;;-1:-1:-1;2767:248:1:o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:380::-;3973:1;3969:12;;;;4016;;;4037:61;;4091:4;4083:6;4079:17;4069:27;;4037:61;4144:2;4136:6;4133:14;4113:18;4110:38;4107:161;;4190:10;4185:3;4181:20;4178:1;4171:31;4225:4;4222:1;4215:15;4253:4;4250:1;4243:15;4107:161;;3894:380;;;:::o;4279:356::-;4481:2;4463:21;;;4500:18;;;4493:30;4559:34;4554:2;4539:18;;4532:62;4626:2;4611:18;;4279:356::o;4640:127::-;4701:10;4696:3;4692:20;4689:1;4682:31;4732:4;4729:1;4722:15;4756:4;4753:1;4746:15;4772:168;4812:7;4878:1;4874;4870:6;4866:14;4863:1;4860:21;4855:1;4848:9;4841:17;4837:45;4834:71;;;4885:18;;:::i;:::-;-1:-1:-1;4925:9:1;;4772:168::o;4945:217::-;4985:1;5011;5001:132;;5055:10;5050:3;5046:20;5043:1;5036:31;5090:4;5087:1;5080:15;5118:4;5115:1;5108:15;5001:132;-1:-1:-1;5147:9:1;;4945:217::o;5992:128::-;6032:3;6063:1;6059:6;6056:1;6053:13;6050:39;;;6069:18;;:::i;:::-;-1:-1:-1;6105:9:1;;5992:128::o;8588:401::-;8790:2;8772:21;;;8829:2;8809:18;;;8802:30;8868:34;8863:2;8848:18;;8841:62;-1:-1:-1;;;8934:2:1;8919:18;;8912:35;8979:3;8964:19;;8588:401::o;8994:399::-;9196:2;9178:21;;;9235:2;9215:18;;;9208:30;9274:34;9269:2;9254:18;;9247:62;-1:-1:-1;;;9340:2:1;9325:18;;9318:33;9383:3;9368:19;;8994:399::o;10519:125::-;10559:4;10587:1;10584;10581:8;10578:34;;;10592:18;;:::i;:::-;-1:-1:-1;10629:9:1;;10519:125::o;11188:127::-;11249:10;11244:3;11240:20;11237:1;11230:31;11280:4;11277:1;11270:15;11304:4;11301:1;11294:15;11320:980;11582:4;11630:3;11619:9;11615:19;11661:6;11650:9;11643:25;11687:2;11725:6;11720:2;11709:9;11705:18;11698:34;11768:3;11763:2;11752:9;11748:18;11741:31;11792:6;11827;11821:13;11858:6;11850;11843:22;11896:3;11885:9;11881:19;11874:26;;11935:2;11927:6;11923:15;11909:29;;11956:1;11966:195;11980:6;11977:1;11974:13;11966:195;;;12045:13;;-1:-1:-1;;;;;12041:39:1;12029:52;;12136:15;;;;12101:12;;;;12077:1;11995:9;11966:195;;;-1:-1:-1;;;;;;;12217:32:1;;;;12212:2;12197:18;;12190:60;-1:-1:-1;;;12281:3:1;12266:19;12259:35;12178:3;11320:980;-1:-1:-1;;;11320:980:1:o
Swarm Source
ipfs://8f7d8920272f1b24863a2e513cbbbf25cc738d1eec0587911fd51e15b9159ac7
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.