ERC-20
Overview
Max Total Supply
1,000,000,000,000 PAPE
Holders
51
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,091,284,694.035163152061412266 PAPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PepeApe
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-25 */ /** * SPDX-License-Identifier: MIT * https://t.me/PepeApeERC * https://twitter.com/PepeApeERC * https://pepeape.com */ pragma solidity 0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract PepeApe is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); // Swapback bool private inSwapback; bool public swapbackOn = false; uint256 public lowerSwapbackLimit; uint256 public upperSwapbackLimit; //Anti-whale bool public limitsInEffect = true; address public marketingReceiver; address public devReceiver; uint256 public totalFeesBuy; uint256 public buyMarketingFee; uint256 public buyDevFee; uint256 public totalFeesSell; uint256 public sellMarketingFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isFeeWhitelisted; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingReceiverUpdated( address indexed newWallet, address indexed oldWallet ); event devReceiverUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Pepe Ape", "PAPE") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _setPairAddress(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 25; uint256 _buyDevFee = 5; uint256 _sellMarketingFee = 45; uint256 _sellDevFee = 5; uint256 totalSupply = 1000000000000 * 1e18; lowerSwapbackLimit = (totalSupply * 5) / 10000; // 0.05% swapback trigger upperSwapbackLimit = (totalSupply * 6) / 1000; // 0.6% max swapback buyMarketingFee = _buyMarketingFee; buyDevFee = _buyDevFee; totalFeesBuy = buyMarketingFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellDevFee = _sellDevFee; totalFeesSell = sellMarketingFee + sellDevFee; marketingReceiver = address(0x689deb20504Ae34B0ecc2B03A66993Fa379a03B2); devReceiver = address(msg.sender); // exclude from paying fees or having max transaction amount exemptAddressFromFees(owner(), true); exemptAddressFromFees(address(this), true); exemptAddressFromFees(address(0xdead), true); exemptAddressFromFees(marketingReceiver, 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 {} /// @notice Changes the minimum balance of tokens the contract must have before inSwapback tokens for ETH. Base 100000, so 0.5% = 500. function setSwapbackLowerLimit(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= totalSupply()/ 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= 500 * totalSupply()/ 100000, "Swap amount cannot be higher than 0.5% total supply." ); require( newAmount <= upperSwapbackLimit, "Swap amount cannot be higher than upperSwapbackLimit" ); lowerSwapbackLimit = newAmount; return true; } /// @notice Changes the maximum amount of tokens the contract can swap for ETH. Base 10000, so 0.5% = 50. function setSwapbackUpperLimit(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= lowerSwapbackLimit, "Swap amount cannot be lower than lowerSwapbackLimit" ); upperSwapbackLimit = newAmount; return true; } /// @notice Sets if the contract can sell tokens /// @param enabled set to false to disable selling function setCanSwapback(bool enabled) external onlyOwner { swapbackOn = enabled; } /// @notice Sets the fees for buys /// @param _marketingFee The fee for the marketing wallet /// @param _devFee The fee for the dev wallet function updateFeesForBuying( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyDevFee = _devFee; totalFeesBuy = buyMarketingFee + buyDevFee; } /// @notice Sets the fees for sells /// @param _marketingFee The fee for the marketing wallet /// @param _devFee The fee for the dev wallet function updateFeesForSelling( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellDevFee = _devFee; totalFeesSell = sellMarketingFee + sellDevFee; } /// @notice Sets if a wallet is excluded from fees /// @param account The wallet to update /// @param excluded If the wallet is excluded or not function exemptAddressFromFees(address account, bool excluded) public onlyOwner { _isFeeWhitelisted[account] = excluded; emit ExcludeFromFees(account, excluded); } /// @notice Sets an address as a new liquidity pair. You probably dont want to do this. /// @param pair The new pair function setAMMPairAddress(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setPairAddress(pair, value); } function _setPairAddress(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function setMarketingReceiverAddress(address newMarketingReceiver) external onlyOwner { emit marketingReceiverUpdated(newMarketingReceiver, marketingReceiver); marketingReceiver = newMarketingReceiver; } function setDevReceiverAddress(address newWallet) external onlyOwner { emit devReceiverUpdated(newWallet, devReceiver); devReceiver = newWallet; } function isFeeExemptAddress(address account) public view returns (bool) { return _isFeeWhitelisted[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; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= lowerSwapbackLimit; if ( canSwap && swapbackOn && !inSwapback && !automatedMarketMakerPairs[from] && !_isFeeWhitelisted[from] && !_isFeeWhitelisted[to] ) { inSwapback = true; swapBack(); inSwapback = false; } bool takeFee = !inSwapback; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isFeeWhitelisted[from] || _isFeeWhitelisted[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && totalFeesSell > 0) { fees = amount.mul(totalFeesSell).div(100); tokensForDev += (fees * sellDevFee) / totalFeesSell; tokensForMarketing += (fees * sellMarketingFee) / totalFeesSell; } // on buy else if (automatedMarketMakerPairs[from] && totalFeesBuy > 0) { fees = amount.mul(totalFeesBuy).div(100); tokensForDev += (fees * buyDevFee) / totalFeesBuy; tokensForMarketing += (fees * buyMarketingFee) / totalFeesBuy; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0 ) { return; } if (contractBalance > upperSwapbackLimit) { contractBalance = upperSwapbackLimit; } // Halve the amount of liquidity tokens uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForDev).div(contractBalance); tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devReceiver).call{value: ethForDev}(""); (success, ) = address(marketingReceiver).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingReceiverUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptAddressFromFees","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isFeeExemptAddress","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":"lowerSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMMPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setCanSwapback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevReceiverAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingReceiver","type":"address"}],"name":"setMarketingReceiverAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapbackLowerLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapbackUpperLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeesBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeesSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateFeesForBuying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateFeesForSelling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upperSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805460ff191660011790553480156200002b57600080fd5b5060405180604001604052806008815260200167506570652041706560c01b815250604051806040016040528060048152602001635041504560e01b81525081600390816200007b919062000652565b5060046200008a828262000652565b505050620000a7620000a16200035b60201b60201c565b6200035f565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa158015620000fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012491906200071e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000172573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019891906200071e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020c91906200071e565b6001600160a01b031660a081905262000227906001620003b1565b60196005602d816c0c9f2c9cd04674edea400000006127106200024b828462000766565b62000257919062000786565b60069081556103e8906200026d90839062000766565b62000279919062000786565b600755600b859055600c849055620002928486620007a9565b600a55600e839055600f829055620002ab8284620007a9565b600d556008805474689deb20504ae34b0ecc2b03a66993fa379a03b200610100600160a81b0319909116179055600980546001600160a01b0319163317905562000309620003016005546001600160a01b031690565b600162000405565b6200031630600162000405565b6200032561dead600162000405565b600854620003439061010090046001600160a01b0316600162000405565b6200034f3382620004c4565b505050505050620007bf565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200051c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200045c565b8060026000828254620005309190620007a9565b90915550506001600160a01b038216600090815260208190526040812080548392906200055f908490620007a9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005d957607f821691505b602082108103620005fa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005a957600081815260208120601f850160051c81016020861015620006295750805b601f850160051c820191505b818110156200064a5782815560010162000635565b505050505050565b81516001600160401b038111156200066e576200066e620005ae565b62000686816200067f8454620005c4565b8462000600565b602080601f831160018114620006be5760008415620006a55750858301515b600019600386901b1c1916600185901b1785556200064a565b600085815260208120601f198616915b82811015620006ef57888601518255948401946001909101908401620006ce565b50858210156200070e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200073157600080fd5b81516001600160a01b03811681146200074957600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000780576200078062000750565b92915050565b600082620007a457634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000780576200078062000750565b60805160a051611e1c62000801600039600081816104290152610dff015260008181610308015281816118a00152818161195901526119950152611e1c6000f3fe6080604052600436106102555760003560e01c80637bce5a0411610139578063a5949bcf116100b6578063c9ab7fc31161007a578063c9ab7fc3146106f6578063ce8010fb14610716578063d09e079914610736578063dd62ed3e14610756578063f2fde38b1461079c578063ffd328e3146107bc57600080fd5b8063a5949bcf14610641578063a9059cbb14610666578063b4c8f93d14610686578063b62496f5146106a6578063b78a8816146106d657600080fd5b806395d89b41116100fd57806395d89b41146105ca5780639c3b4fdc146105df5780639fccce32146105f5578063a0d82dc51461060b578063a457c2d71461062157600080fd5b80637bce5a0414610527578063838847a61461053d5780638da5cb5b146105765780638f9817941461059457806392136913146105b457600080fd5b806327c8f835116101d25780634f0648bd116101965780634f0648bd14610465578063629a9fea1461047b5780636f9a880e1461049b57806370a08231146104bb578063715018a6146104f157806379771e121461050657600080fd5b806327c8f835146103c5578063313ce567146103db57806339509351146103f757806349bd5a5e146104175780634a62bb651461044b57600080fd5b806318160ddd1161021957806318160ddd1461034257806319c59e2c146103575780631f1a55b21461036d5780631f3fed8f1461038f57806323b872dd146103a557600080fd5b806306fdde0314610261578063095ea7b31461028c5780630bec994b146102bc5780630e47e822146102e05780631694505e146102f657600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107dc565b6040516102839190611a15565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611a78565b61086e565b6040519015158152602001610283565b3480156102c857600080fd5b506102d260075481565b604051908152602001610283565b3480156102ec57600080fd5b506102d2600d5481565b34801561030257600080fd5b5061032a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b34801561034e57600080fd5b506002546102d2565b34801561036357600080fd5b506102d2600a5481565b34801561037957600080fd5b5061038d610388366004611aa4565b610885565b005b34801561039b57600080fd5b506102d260105481565b3480156103b157600080fd5b506102ac6103c0366004611ac6565b6108d3565b3480156103d157600080fd5b5061032a61dead81565b3480156103e757600080fd5b5060405160128152602001610283565b34801561040357600080fd5b506102ac610412366004611a78565b61097d565b34801561042357600080fd5b5061032a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045757600080fd5b506008546102ac9060ff1681565b34801561047157600080fd5b506102d260065481565b34801561048757600080fd5b5061038d610496366004611b17565b6109b9565b3480156104a757600080fd5b5060095461032a906001600160a01b031681565b3480156104c757600080fd5b506102d26104d6366004611b4c565b6001600160a01b031660009081526020819052604090205490565b3480156104fd57600080fd5b5061038d610a42565b34801561051257600080fd5b506005546102ac90600160a81b900460ff1681565b34801561053357600080fd5b506102d2600b5481565b34801561054957600080fd5b506102ac610558366004611b4c565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561058257600080fd5b506005546001600160a01b031661032a565b3480156105a057600080fd5b506102ac6105af366004611b69565b610a78565b3480156105c057600080fd5b506102d2600e5481565b3480156105d657600080fd5b50610276610b21565b3480156105eb57600080fd5b506102d2600c5481565b34801561060157600080fd5b506102d260115481565b34801561061757600080fd5b506102d2600f5481565b34801561062d57600080fd5b506102ac61063c366004611a78565b610b30565b34801561064d57600080fd5b5060085461032a9061010090046001600160a01b031681565b34801561067257600080fd5b506102ac610681366004611a78565b610bc9565b34801561069257600080fd5b5061038d6106a1366004611aa4565b610bd6565b3480156106b257600080fd5b506102ac6106c1366004611b4c565b60136020526000908152604090205460ff1681565b3480156106e257600080fd5b506102ac6106f1366004611b69565b610c1b565b34801561070257600080fd5b5061038d610711366004611b17565b610dd3565b34801561072257600080fd5b5061038d610731366004611b4c565b610eb2565b34801561074257600080fd5b5061038d610751366004611b82565b610f44565b34801561076257600080fd5b506102d2610771366004611b9d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107a857600080fd5b5061038d6107b7366004611b4c565b610f8c565b3480156107c857600080fd5b5061038d6107d7366004611b4c565b611027565b6060600380546107eb90611bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461081790611bd6565b80156108645780601f1061083957610100808354040283529160200191610864565b820191906000526020600020905b81548152906001019060200180831161084757829003601f168201915b5050505050905090565b600061087b3384846110ae565b5060015b92915050565b6005546001600160a01b031633146108b85760405162461bcd60e51b81526004016108af90611c10565b60405180910390fd5b600e829055600f8190556108cc8183611c5b565b600d555050565b60006108e08484846111d2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109655760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108af565b61097285338584036110ae565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087b9185906109b4908690611c5b565b6110ae565b6005546001600160a01b031633146109e35760405162461bcd60e51b81526004016108af90611c10565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016108af90611c10565b610a76600061150d565b565b6005546000906001600160a01b03163314610aa55760405162461bcd60e51b81526004016108af90611c10565b600654821015610b135760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272081b1bddd95c94ddd85c189858dad31a5b5a5d606a1b60648201526084016108af565b50600781905560015b919050565b6060600480546107eb90611bd6565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610bb25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108af565b610bbf33858584036110ae565b5060019392505050565b600061087b3384846111d2565b6005546001600160a01b03163314610c005760405162461bcd60e51b81526004016108af90611c10565b600b829055600c819055610c148183611c5b565b600a555050565b6005546000906001600160a01b03163314610c485760405162461bcd60e51b81526004016108af90611c10565b620186a0610c5560025490565b610c5f9190611c6e565b821015610ccc5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016108af565b620186a0610cd960025490565b610ce5906101f4611c90565b610cef9190611c6e565b821115610d5b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016108af565b600754821115610dca5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152731b881d5c1c195c94ddd85c189858dad31a5b5a5d60621b60648201526084016108af565b50600655600190565b6005546001600160a01b03163314610dfd5760405162461bcd60e51b81526004016108af90611c10565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ea45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016108af565b610eae828261155f565b5050565b6005546001600160a01b03163314610edc5760405162461bcd60e51b81526004016108af90611c10565b6008546040516001600160a01b036101009092048216918316907f8c1cacd93068120e1dc43fe444ae85caede9b9b216d640aa904475cc7823f06190600090a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610f6e5760405162461bcd60e51b81526004016108af90611c10565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610fb65760405162461bcd60e51b81526004016108af90611c10565b6001600160a01b03811661101b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108af565b6110248161150d565b50565b6005546001600160a01b031633146110515760405162461bcd60e51b81526004016108af90611c10565b6009546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166111105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108af565b6001600160a01b0382166111715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111f85760405162461bcd60e51b81526004016108af90611ca7565b6001600160a01b03821661121e5760405162461bcd60e51b81526004016108af90611cec565b8060000361123757611232838360006115b3565b505050565b30600090815260208190526040902054600654811080159081906112645750600554600160a81b900460ff165b801561127a5750600554600160a01b900460ff16155b801561129f57506001600160a01b03851660009081526013602052604090205460ff16155b80156112c457506001600160a01b03851660009081526012602052604090205460ff16155b80156112e957506001600160a01b03841660009081526012602052604090205460ff16155b15611317576005805460ff60a01b1916600160a01b179055611309611708565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061136557506001600160a01b03851660009081526012602052604090205460ff165b1561136e575060005b600081156114f9576001600160a01b03861660009081526013602052604090205460ff1680156113a057506000600d54115b1561142e576113c560646113bf600d548861182a90919063ffffffff16565b9061183d565b9050600d54600f54826113d89190611c90565b6113e29190611c6e565b601160008282546113f39190611c5b565b9091555050600d54600e546114089083611c90565b6114129190611c6e565b601060008282546114239190611c5b565b909155506114db9050565b6001600160a01b03871660009081526013602052604090205460ff16801561145857506000600a54115b156114db5761147760646113bf600a548861182a90919063ffffffff16565b9050600a54600c548261148a9190611c90565b6114949190611c6e565b601160008282546114a59190611c5b565b9091555050600a54600b546114ba9083611c90565b6114c49190611c6e565b601060008282546114d59190611c5b565b90915550505b80156114ec576114ec8730836115b3565b6114f68186611d2f565b94505b6115048787876115b3565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166115d95760405162461bcd60e51b81526004016108af90611ca7565b6001600160a01b0382166115ff5760405162461bcd60e51b81526004016108af90611cec565b6001600160a01b038316600090815260208190526040902054818110156116775760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108af565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116ae908490611c5b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fa91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611724575050565b6007548211156117345760075491505b814761173f82611849565b600061174b4783611a09565b90506000611768866113bf6011548561182a90919063ffffffff16565b6000601081905560118190556009546040519293506001600160a01b031691839181818185875af1925050503d80600081146117c0576040519150601f19603f3d011682016040523d82523d6000602084013e6117c5565b606091505b505060085460405191965061010090046001600160a01b0316904790600081818185875af1925050503d806000811461181a576040519150601f19603f3d011682016040523d82523d6000602084013e61181f565b606091505b505050505050505050565b60006118368284611c90565b9392505050565b60006118368284611c6e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061187e5761187e611d42565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119209190611d58565b8160018151811061193357611933611d42565b60200260200101906001600160a01b031690816001600160a01b03168152505061197e307f0000000000000000000000000000000000000000000000000000000000000000846110ae565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906119d3908590600090869030904290600401611d75565b600060405180830381600087803b1580156119ed57600080fd5b505af1158015611a01573d6000803e3d6000fd5b505050505050565b60006118368284611d2f565b600060208083528351808285015260005b81811015611a4257858101830151858201604001528201611a26565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461102457600080fd5b60008060408385031215611a8b57600080fd5b8235611a9681611a63565b946020939093013593505050565b60008060408385031215611ab757600080fd5b50508035926020909101359150565b600080600060608486031215611adb57600080fd5b8335611ae681611a63565b92506020840135611af681611a63565b929592945050506040919091013590565b80358015158114610b1c57600080fd5b60008060408385031215611b2a57600080fd5b8235611b3581611a63565b9150611b4360208401611b07565b90509250929050565b600060208284031215611b5e57600080fd5b813561183681611a63565b600060208284031215611b7b57600080fd5b5035919050565b600060208284031215611b9457600080fd5b61183682611b07565b60008060408385031215611bb057600080fd5b8235611bbb81611a63565b91506020830135611bcb81611a63565b809150509250929050565b600181811c90821680611bea57607f821691505b602082108103611c0a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087f5761087f611c45565b600082611c8b57634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761087f5761087f611c45565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087f5761087f611c45565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d6a57600080fd5b815161183681611a63565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611dc55784516001600160a01b031683529383019391830191600101611da0565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206572788d3fe755836194d95a08eb82988f732486797a8e3987a8bb63c2c19c4364736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102555760003560e01c80637bce5a0411610139578063a5949bcf116100b6578063c9ab7fc31161007a578063c9ab7fc3146106f6578063ce8010fb14610716578063d09e079914610736578063dd62ed3e14610756578063f2fde38b1461079c578063ffd328e3146107bc57600080fd5b8063a5949bcf14610641578063a9059cbb14610666578063b4c8f93d14610686578063b62496f5146106a6578063b78a8816146106d657600080fd5b806395d89b41116100fd57806395d89b41146105ca5780639c3b4fdc146105df5780639fccce32146105f5578063a0d82dc51461060b578063a457c2d71461062157600080fd5b80637bce5a0414610527578063838847a61461053d5780638da5cb5b146105765780638f9817941461059457806392136913146105b457600080fd5b806327c8f835116101d25780634f0648bd116101965780634f0648bd14610465578063629a9fea1461047b5780636f9a880e1461049b57806370a08231146104bb578063715018a6146104f157806379771e121461050657600080fd5b806327c8f835146103c5578063313ce567146103db57806339509351146103f757806349bd5a5e146104175780634a62bb651461044b57600080fd5b806318160ddd1161021957806318160ddd1461034257806319c59e2c146103575780631f1a55b21461036d5780631f3fed8f1461038f57806323b872dd146103a557600080fd5b806306fdde0314610261578063095ea7b31461028c5780630bec994b146102bc5780630e47e822146102e05780631694505e146102f657600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107dc565b6040516102839190611a15565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611a78565b61086e565b6040519015158152602001610283565b3480156102c857600080fd5b506102d260075481565b604051908152602001610283565b3480156102ec57600080fd5b506102d2600d5481565b34801561030257600080fd5b5061032a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561034e57600080fd5b506002546102d2565b34801561036357600080fd5b506102d2600a5481565b34801561037957600080fd5b5061038d610388366004611aa4565b610885565b005b34801561039b57600080fd5b506102d260105481565b3480156103b157600080fd5b506102ac6103c0366004611ac6565b6108d3565b3480156103d157600080fd5b5061032a61dead81565b3480156103e757600080fd5b5060405160128152602001610283565b34801561040357600080fd5b506102ac610412366004611a78565b61097d565b34801561042357600080fd5b5061032a7f00000000000000000000000044964203b94c41ec69ff849034b8ec576ab15d6081565b34801561045757600080fd5b506008546102ac9060ff1681565b34801561047157600080fd5b506102d260065481565b34801561048757600080fd5b5061038d610496366004611b17565b6109b9565b3480156104a757600080fd5b5060095461032a906001600160a01b031681565b3480156104c757600080fd5b506102d26104d6366004611b4c565b6001600160a01b031660009081526020819052604090205490565b3480156104fd57600080fd5b5061038d610a42565b34801561051257600080fd5b506005546102ac90600160a81b900460ff1681565b34801561053357600080fd5b506102d2600b5481565b34801561054957600080fd5b506102ac610558366004611b4c565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561058257600080fd5b506005546001600160a01b031661032a565b3480156105a057600080fd5b506102ac6105af366004611b69565b610a78565b3480156105c057600080fd5b506102d2600e5481565b3480156105d657600080fd5b50610276610b21565b3480156105eb57600080fd5b506102d2600c5481565b34801561060157600080fd5b506102d260115481565b34801561061757600080fd5b506102d2600f5481565b34801561062d57600080fd5b506102ac61063c366004611a78565b610b30565b34801561064d57600080fd5b5060085461032a9061010090046001600160a01b031681565b34801561067257600080fd5b506102ac610681366004611a78565b610bc9565b34801561069257600080fd5b5061038d6106a1366004611aa4565b610bd6565b3480156106b257600080fd5b506102ac6106c1366004611b4c565b60136020526000908152604090205460ff1681565b3480156106e257600080fd5b506102ac6106f1366004611b69565b610c1b565b34801561070257600080fd5b5061038d610711366004611b17565b610dd3565b34801561072257600080fd5b5061038d610731366004611b4c565b610eb2565b34801561074257600080fd5b5061038d610751366004611b82565b610f44565b34801561076257600080fd5b506102d2610771366004611b9d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107a857600080fd5b5061038d6107b7366004611b4c565b610f8c565b3480156107c857600080fd5b5061038d6107d7366004611b4c565b611027565b6060600380546107eb90611bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461081790611bd6565b80156108645780601f1061083957610100808354040283529160200191610864565b820191906000526020600020905b81548152906001019060200180831161084757829003601f168201915b5050505050905090565b600061087b3384846110ae565b5060015b92915050565b6005546001600160a01b031633146108b85760405162461bcd60e51b81526004016108af90611c10565b60405180910390fd5b600e829055600f8190556108cc8183611c5b565b600d555050565b60006108e08484846111d2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109655760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108af565b61097285338584036110ae565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087b9185906109b4908690611c5b565b6110ae565b6005546001600160a01b031633146109e35760405162461bcd60e51b81526004016108af90611c10565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016108af90611c10565b610a76600061150d565b565b6005546000906001600160a01b03163314610aa55760405162461bcd60e51b81526004016108af90611c10565b600654821015610b135760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272081b1bddd95c94ddd85c189858dad31a5b5a5d606a1b60648201526084016108af565b50600781905560015b919050565b6060600480546107eb90611bd6565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610bb25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108af565b610bbf33858584036110ae565b5060019392505050565b600061087b3384846111d2565b6005546001600160a01b03163314610c005760405162461bcd60e51b81526004016108af90611c10565b600b829055600c819055610c148183611c5b565b600a555050565b6005546000906001600160a01b03163314610c485760405162461bcd60e51b81526004016108af90611c10565b620186a0610c5560025490565b610c5f9190611c6e565b821015610ccc5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016108af565b620186a0610cd960025490565b610ce5906101f4611c90565b610cef9190611c6e565b821115610d5b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016108af565b600754821115610dca5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152731b881d5c1c195c94ddd85c189858dad31a5b5a5d60621b60648201526084016108af565b50600655600190565b6005546001600160a01b03163314610dfd5760405162461bcd60e51b81526004016108af90611c10565b7f00000000000000000000000044964203b94c41ec69ff849034b8ec576ab15d606001600160a01b0316826001600160a01b031603610ea45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016108af565b610eae828261155f565b5050565b6005546001600160a01b03163314610edc5760405162461bcd60e51b81526004016108af90611c10565b6008546040516001600160a01b036101009092048216918316907f8c1cacd93068120e1dc43fe444ae85caede9b9b216d640aa904475cc7823f06190600090a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610f6e5760405162461bcd60e51b81526004016108af90611c10565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610fb65760405162461bcd60e51b81526004016108af90611c10565b6001600160a01b03811661101b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108af565b6110248161150d565b50565b6005546001600160a01b031633146110515760405162461bcd60e51b81526004016108af90611c10565b6009546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166111105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108af565b6001600160a01b0382166111715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111f85760405162461bcd60e51b81526004016108af90611ca7565b6001600160a01b03821661121e5760405162461bcd60e51b81526004016108af90611cec565b8060000361123757611232838360006115b3565b505050565b30600090815260208190526040902054600654811080159081906112645750600554600160a81b900460ff165b801561127a5750600554600160a01b900460ff16155b801561129f57506001600160a01b03851660009081526013602052604090205460ff16155b80156112c457506001600160a01b03851660009081526012602052604090205460ff16155b80156112e957506001600160a01b03841660009081526012602052604090205460ff16155b15611317576005805460ff60a01b1916600160a01b179055611309611708565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061136557506001600160a01b03851660009081526012602052604090205460ff165b1561136e575060005b600081156114f9576001600160a01b03861660009081526013602052604090205460ff1680156113a057506000600d54115b1561142e576113c560646113bf600d548861182a90919063ffffffff16565b9061183d565b9050600d54600f54826113d89190611c90565b6113e29190611c6e565b601160008282546113f39190611c5b565b9091555050600d54600e546114089083611c90565b6114129190611c6e565b601060008282546114239190611c5b565b909155506114db9050565b6001600160a01b03871660009081526013602052604090205460ff16801561145857506000600a54115b156114db5761147760646113bf600a548861182a90919063ffffffff16565b9050600a54600c548261148a9190611c90565b6114949190611c6e565b601160008282546114a59190611c5b565b9091555050600a54600b546114ba9083611c90565b6114c49190611c6e565b601060008282546114d59190611c5b565b90915550505b80156114ec576114ec8730836115b3565b6114f68186611d2f565b94505b6115048787876115b3565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166115d95760405162461bcd60e51b81526004016108af90611ca7565b6001600160a01b0382166115ff5760405162461bcd60e51b81526004016108af90611cec565b6001600160a01b038316600090815260208190526040902054818110156116775760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108af565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116ae908490611c5b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fa91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611724575050565b6007548211156117345760075491505b814761173f82611849565b600061174b4783611a09565b90506000611768866113bf6011548561182a90919063ffffffff16565b6000601081905560118190556009546040519293506001600160a01b031691839181818185875af1925050503d80600081146117c0576040519150601f19603f3d011682016040523d82523d6000602084013e6117c5565b606091505b505060085460405191965061010090046001600160a01b0316904790600081818185875af1925050503d806000811461181a576040519150601f19603f3d011682016040523d82523d6000602084013e61181f565b606091505b505050505050505050565b60006118368284611c90565b9392505050565b60006118368284611c6e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061187e5761187e611d42565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119209190611d58565b8160018151811061193357611933611d42565b60200260200101906001600160a01b031690816001600160a01b03168152505061197e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ae565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906119d3908590600090869030904290600401611d75565b600060405180830381600087803b1580156119ed57600080fd5b505af1158015611a01573d6000803e3d6000fd5b505050505050565b60006118368284611d2f565b600060208083528351808285015260005b81811015611a4257858101830151858201604001528201611a26565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461102457600080fd5b60008060408385031215611a8b57600080fd5b8235611a9681611a63565b946020939093013593505050565b60008060408385031215611ab757600080fd5b50508035926020909101359150565b600080600060608486031215611adb57600080fd5b8335611ae681611a63565b92506020840135611af681611a63565b929592945050506040919091013590565b80358015158114610b1c57600080fd5b60008060408385031215611b2a57600080fd5b8235611b3581611a63565b9150611b4360208401611b07565b90509250929050565b600060208284031215611b5e57600080fd5b813561183681611a63565b600060208284031215611b7b57600080fd5b5035919050565b600060208284031215611b9457600080fd5b61183682611b07565b60008060408385031215611bb057600080fd5b8235611bbb81611a63565b91506020830135611bcb81611a63565b809150509250929050565b600181811c90821680611bea57607f821691505b602082108103611c0a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087f5761087f611c45565b600082611c8b57634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761087f5761087f611c45565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087f5761087f611c45565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d6a57600080fd5b815161183681611a63565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611dc55784516001600160a01b031683529383019391830191600101611da0565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206572788d3fe755836194d95a08eb82988f732486797a8e3987a8bb63c2c19c4364736f6c63430008130033
Deployed Bytecode Sourcemap
24977:10934:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10800:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12967:169;;;;;;;;;;-1:-1:-1;12967:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12967:169:0;1023:187:1;25343:33:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;25343:33:0;1215:177:1;25623:28:0;;;;;;;;;;;;;;;;25054:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;25054:51:0;1397:230:1;11920:108:0;;;;;;;;;;-1:-1:-1;12008:12:0;;11920:108;;25519:27;;;;;;;;;;;;;;;;30529:253;;;;;;;;;;-1:-1:-1;30529:253:0;;;;;:::i;:::-;;:::i;:::-;;25730:33;;;;;;;;;;;;;;;;13618:492;;;;;;;;;;-1:-1:-1;13618:492:0;;;;;:::i;:::-;;:::i;25157:53::-;;;;;;;;;;;;25203:6;25157:53;;11762:93;;;;;;;;;;-1:-1:-1;11762:93:0;;11845:2;2696:36:1;;2684:2;2669:18;11762:93:0;2554:184:1;14519:215:0;;;;;;;;;;-1:-1:-1;14519:215:0;;;;;:::i;:::-;;:::i;25112:38::-;;;;;;;;;;;;;;;25403:33;;;;;;;;;;-1:-1:-1;25403:33:0;;;;;;;;25303;;;;;;;;;;;;;;;;30949:186;;;;;;;;;;-1:-1:-1;30949:186:0;;;;;:::i;:::-;;:::i;25484:26::-;;;;;;;;;;-1:-1:-1;25484:26:0;;;;-1:-1:-1;;;;;25484:26:0;;;12091:127;;;;;;;;;;-1:-1:-1;12091:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;12192:18:0;12165:7;12192:18;;;;;;;;;;;;12091:127;21824:103;;;;;;;;;;;;;:::i;25266:30::-;;;;;;;;;;-1:-1:-1;25266:30:0;;;;-1:-1:-1;;;25266:30:0;;;;;;25553;;;;;;;;;;;;;;;;32176:124;;;;;;;;;;-1:-1:-1;32176:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;32266:26:0;32242:4;32266:26;;;:17;:26;;;;;;;;;32176:124;21173:87;;;;;;;;;;-1:-1:-1;21246:6:0;;-1:-1:-1;;;;;21246:6:0;21173:87;;29410:330;;;;;;;;;;-1:-1:-1;29410:330:0;;;;;:::i;:::-;;:::i;25658:31::-;;;;;;;;;;;;;;;;11019:104;;;;;;;;;;;;;:::i;25590:24::-;;;;;;;;;;;;;;;;25770:27;;;;;;;;;;;;;;;;25696:25;;;;;;;;;;;;;;;;15237:413;;;;;;;;;;-1:-1:-1;15237:413:0;;;;;:::i;:::-;;:::i;25445:32::-;;;;;;;;;;-1:-1:-1;25445:32:0;;;;;;;-1:-1:-1;;;;;25445:32:0;;;12431:175;;;;;;;;;;-1:-1:-1;12431:175:0;;;;;:::i;:::-;;:::i;30120:246::-;;;;;;;;;;-1:-1:-1;30120:246:0;;;;;:::i;:::-;;:::i;26095:57::-;;;;;;;;;;-1:-1:-1;26095:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28659:632;;;;;;;;;;-1:-1:-1;28659:632:0;;;;;:::i;:::-;;:::i;31270:281::-;;;;;;;;;;-1:-1:-1;31270:281:0;;;;;:::i;:::-;;:::i;31742:249::-;;;;;;;;;;-1:-1:-1;31742:249:0;;;;;:::i;:::-;;:::i;29858:96::-;;;;;;;;;;-1:-1:-1;29858:96:0;;;;;:::i;:::-;;:::i;12669:151::-;;;;;;;;;;-1:-1:-1;12669:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;12785:18:0;;;12758:7;12785:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12669:151;22082:201;;;;;;;;;;-1:-1:-1;22082:201:0;;;;;:::i;:::-;;:::i;31999:169::-;;;;;;;;;;-1:-1:-1;31999:169:0;;;;;:::i;:::-;;:::i;10800:100::-;10854:13;10887:5;10880:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10800:100;:::o;12967:169::-;13050:4;13067:39;9886:10;13090:7;13099:6;13067:8;:39::i;:::-;-1:-1:-1;13124:4:0;12967:169;;;;;:::o;30529:253::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;;;;;;;;;30654:16:::1;:32:::0;;;30697:10:::1;:20:::0;;;30744:30:::1;30710:7:::0;30673:13;30744:30:::1;:::i;:::-;30728:13;:46:::0;-1:-1:-1;;30529:253:0:o;13618:492::-;13758:4;13775:36;13785:6;13793:9;13804:6;13775:9;:36::i;:::-;-1:-1:-1;;;;;13851:19:0;;13824:24;13851:19;;;:11;:19;;;;;;;;9886:10;13851:33;;;;;;;;13903:26;;;;13895:79;;;;-1:-1:-1;;;13895:79:0;;5453:2:1;13895:79:0;;;5435:21:1;5492:2;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;-1:-1:-1;;;5582:18:1;;;5575:38;5630:19;;13895:79:0;5251:404:1;13895:79:0;14010:57;14019:6;9886:10;14060:6;14041:16;:25;14010:8;:57::i;:::-;-1:-1:-1;14098:4:0;;13618:492;-1:-1:-1;;;;13618:492:0:o;14519:215::-;9886:10;14607:4;14656:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14656:34:0;;;;;;;;;;14607:4;;14624:80;;14647:7;;14656:47;;14693:10;;14656:47;:::i;:::-;14624:8;:80::i;30949:186::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31040:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;31040:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31093:34;;1163:41:1;;;31093:34:0::1;::::0;1136:18:1;31093:34:0::1;;;;;;;30949:186:::0;;:::o;21824:103::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;21889:30:::1;21916:1;21889:18;:30::i;:::-;21824:103::o:0;29410:330::-;21246:6;;29515:4;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;29572:18:::1;;29559:9;:31;;29537:132;;;::::0;-1:-1:-1;;;29537:132:0;;5862:2:1;29537:132:0::1;::::0;::::1;5844:21:1::0;5901:2;5881:18;;;5874:30;5940:34;5920:18;;;5913:62;-1:-1:-1;;;5991:18:1;;;5984:49;6050:19;;29537:132:0::1;5660:415:1::0;29537:132:0::1;-1:-1:-1::0;29680:18:0::1;:30:::0;;;29728:4:::1;21464:1;29410:330:::0;;;:::o;11019:104::-;11075:13;11108:7;11101:14;;;;;:::i;15237:413::-;9886:10;15330:4;15374:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15374:34:0;;;;;;;;;;15427:35;;;;15419:85;;;;-1:-1:-1;;;15419:85:0;;6282:2:1;15419:85:0;;;6264:21:1;6321:2;6301:18;;;6294:30;6360:34;6340:18;;;6333:62;-1:-1:-1;;;6411:18:1;;;6404:35;6456:19;;15419:85:0;6080:401:1;15419:85:0;15540:67;9886:10;15563:7;15591:15;15572:16;:34;15540:8;:67::i;:::-;-1:-1:-1;15638:4:0;;15237:413;-1:-1:-1;;;15237:413:0:o;12431:175::-;12517:4;12534:42;9886:10;12558:9;12569:6;12534:9;:42::i;30120:246::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;30244:15:::1;:31:::0;;;30286:9:::1;:19:::0;;;30331:27:::1;30298:7:::0;30262:13;30331:27:::1;:::i;:::-;30316:12;:42:::0;-1:-1:-1;;30120:246:0:o;28659:632::-;21246:6;;28764:4;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;28836:6:::1;28821:13;12008:12:::0;;;11920:108;28821:13:::1;:21;;;;:::i;:::-;28808:9;:34;;28786:137;;;::::0;-1:-1:-1;;;28786:137:0;;6910:2:1;28786:137:0::1;::::0;::::1;6892:21:1::0;6949:2;6929:18;;;6922:30;6988:34;6968:18;;;6961:62;-1:-1:-1;;;7039:18:1;;;7032:51;7100:19;;28786:137:0::1;6708:417:1::0;28786:137:0::1;28990:6;28975:13;12008:12:::0;;;11920:108;28975:13:::1;28969:19;::::0;:3:::1;:19;:::i;:::-;:27;;;;:::i;:::-;28956:9;:40;;28934:142;;;::::0;-1:-1:-1;;;28934:142:0;;7505:2:1;28934:142:0::1;::::0;::::1;7487:21:1::0;7544:2;7524:18;;;7517:30;7583:34;7563:18;;;7556:62;-1:-1:-1;;;7634:18:1;;;7627:50;7694:19;;28934:142:0::1;7303:416:1::0;28934:142:0::1;29122:18;;29109:9;:31;;29087:133;;;::::0;-1:-1:-1;;;29087:133:0;;7926:2:1;29087:133:0::1;::::0;::::1;7908:21:1::0;7965:2;7945:18;;;7938:30;8004:34;7984:18;;;7977:62;-1:-1:-1;;;8055:18:1;;;8048:50;8115:19;;29087:133:0::1;7724:416:1::0;29087:133:0::1;-1:-1:-1::0;29231:18:0::1;:30:::0;29279:4:::1;::::0;28659:632::o;31270:281::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;31404:13:::1;-1:-1:-1::0;;;;;31396:21:0::1;:4;-1:-1:-1::0;;;;;31396:21:0::1;::::0;31374:128:::1;;;::::0;-1:-1:-1;;;31374:128:0;;8347:2:1;31374:128:0::1;::::0;::::1;8329:21:1::0;8386:2;8366:18;;;8359:30;8425:34;8405:18;;;8398:62;8496:27;8476:18;;;8469:55;8541:19;;31374:128:0::1;8145:421:1::0;31374:128:0::1;31515:28;31531:4;31537:5;31515:15;:28::i;:::-;31270:281:::0;;:::o;31742:249::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;31914:17:::1;::::0;31867:65:::1;::::0;-1:-1:-1;;;;;31914:17:0::1;::::0;;::::1;::::0;::::1;::::0;31867:65;::::1;::::0;::::1;::::0;;;::::1;31943:17;:40:::0;;-1:-1:-1;;;;;31943:40:0;;::::1;;;-1:-1:-1::0;;;;;;31943:40:0;;::::1;::::0;;;::::1;::::0;;31742:249::o;29858:96::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;29926:10:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;29926:20:0::1;-1:-1:-1::0;;;;29926:20:0;;::::1;::::0;;;::::1;::::0;;29858:96::o;22082:201::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22171:22:0;::::1;22163:73;;;::::0;-1:-1:-1;;;22163:73:0;;8773:2:1;22163:73:0::1;::::0;::::1;8755:21:1::0;8812:2;8792:18;;;8785:30;8851:34;8831:18;;;8824:62;-1:-1:-1;;;8902:18:1;;;8895:36;8948:19;;22163:73:0::1;8571:402:1::0;22163:73:0::1;22247:28;22266:8;22247:18;:28::i;:::-;22082:201:::0;:::o;31999:169::-;21246:6;;-1:-1:-1;;;;;21246:6:0;9886:10;21393:23;21385:68;;;;-1:-1:-1;;;21385:68:0;;;;;;;:::i;:::-;32114:11:::1;::::0;32084:42:::1;::::0;-1:-1:-1;;;;;32114:11:0;;::::1;::::0;32084:42;::::1;::::0;::::1;::::0;32114:11:::1;::::0;32084:42:::1;32137:11;:23:::0;;-1:-1:-1;;;;;;32137:23:0::1;-1:-1:-1::0;;;;;32137:23:0;;;::::1;::::0;;;::::1;::::0;;31999:169::o;18921:380::-;-1:-1:-1;;;;;19057:19:0;;19049:68;;;;-1:-1:-1;;;19049:68:0;;9180:2:1;19049:68:0;;;9162:21:1;9219:2;9199:18;;;9192:30;9258:34;9238:18;;;9231:62;-1:-1:-1;;;9309:18:1;;;9302:34;9353:19;;19049:68:0;8978:400:1;19049:68:0;-1:-1:-1;;;;;19136:21:0;;19128:68;;;;-1:-1:-1;;;19128:68:0;;9585:2:1;19128:68:0;;;9567:21:1;9624:2;9604:18;;;9597:30;9663:34;9643:18;;;9636:62;-1:-1:-1;;;9714:18:1;;;9707:32;9756:19;;19128:68:0;9383:398:1;19128:68:0;-1:-1:-1;;;;;19209:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19261:32;;1361:25:1;;;19261:32:0;;1334:18:1;19261:32:0;;;;;;;18921:380;;;:::o;32308:2055::-;-1:-1:-1;;;;;32440:18:0;;32432:68;;;;-1:-1:-1;;;32432:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32519:16:0;;32511:64;;;;-1:-1:-1;;;32511:64:0;;;;;;;:::i;:::-;32592:6;32602:1;32592:11;32588:93;;32620:28;32636:4;32642:2;32646:1;32620:15;:28::i;:::-;32308:2055;;;:::o;32588:93::-;32742:4;32693:28;12192:18;;;;;;;;;;;32800;;32776:42;;;;;;;32849:34;;-1:-1:-1;32873:10:0;;-1:-1:-1;;;32873:10:0;;;;32849:34;:62;;;;-1:-1:-1;32901:10:0;;-1:-1:-1;;;32901:10:0;;;;32900:11;32849:62;:111;;;;-1:-1:-1;;;;;;32929:31:0;;;;;;:25;:31;;;;;;;;32928:32;32849:111;:152;;;;-1:-1:-1;;;;;;32978:23:0;;;;;;:17;:23;;;;;;;;32977:24;32849:152;:191;;;;-1:-1:-1;;;;;;33019:21:0;;;;;;:17;:21;;;;;;;;33018:22;32849:191;32831:327;;;33067:10;:17;;-1:-1:-1;;;;33067:17:0;-1:-1:-1;;;33067:17:0;;;33101:10;:8;:10::i;:::-;33128;:18;;-1:-1:-1;;;;33128:18:0;;;32831:327;33186:10;;-1:-1:-1;;;;;33298:23:0;;33170:12;33298:23;;;:17;:23;;;;;;33186:10;-1:-1:-1;;;33186:10:0;;;;;33185:11;;33298:23;;:48;;-1:-1:-1;;;;;;33325:21:0;;;;;;:17;:21;;;;;;;;33298:48;33294:96;;;-1:-1:-1;33373:5:0;33294:96;33402:12;33507:7;33503:807;;;-1:-1:-1;;;;;33559:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;33608:1;33592:13;;:17;33559:50;33555:606;;;33637:34;33667:3;33637:25;33648:13;;33637:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33630:41;;33728:13;;33714:10;;33707:4;:17;;;;:::i;:::-;33706:35;;;;:::i;:::-;33690:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;33810:13:0;;33790:16;;33783:23;;:4;:23;:::i;:::-;33782:41;;;;:::i;:::-;33760:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;33555:606:0;;-1:-1:-1;33555:606:0;;-1:-1:-1;;;;;33885:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;33935:1;33920:12;;:16;33885:51;33881:280;;;33964:33;33993:3;33964:24;33975:12;;33964:6;:10;;:24;;;;:::i;:33::-;33957:40;;34053:12;;34040:9;;34033:4;:16;;;;:::i;:::-;34032:33;;;;:::i;:::-;34016:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;34133:12:0;;34114:15;;34107:22;;:4;:22;:::i;:::-;34106:39;;;;:::i;:::-;34084:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;33881:280:0;34181:8;;34177:91;;34210:42;34226:4;34240;34247;34210:15;:42::i;:::-;34284:14;34294:4;34284:14;;:::i;:::-;;;33503:807;34322:33;34338:4;34344:2;34348:6;34322:15;:33::i;:::-;32421:1942;;;;32308:2055;;;:::o;22443:191::-;22536:6;;;-1:-1:-1;;;;;22553:17:0;;;-1:-1:-1;;;;;;22553:17:0;;;;;;;22586:40;;22536:6;;;22553:17;22536:6;;22586:40;;22517:16;;22586:40;22506:128;22443:191;:::o;31559:175::-;-1:-1:-1;;;;;31629:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;31629:39:0;;;;;;;;;;31686:40;;31629:39;;:31;31686:40;;;31559:175;;:::o;16140:733::-;-1:-1:-1;;;;;16280:20:0;;16272:70;;;;-1:-1:-1;;;16272:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16361:23:0;;16353:71;;;;-1:-1:-1;;;16353:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16521:17:0;;16497:21;16521:17;;;;;;;;;;;16557:23;;;;16549:74;;;;-1:-1:-1;;;16549:74:0;;10931:2:1;16549:74:0;;;10913:21:1;10970:2;10950:18;;;10943:30;11009:34;10989:18;;;10982:62;-1:-1:-1;;;11060:18:1;;;11053:36;11106:19;;16549:74:0;10729:402:1;16549:74:0;-1:-1:-1;;;;;16659:17:0;;;:9;:17;;;;;;;;;;;16679:22;;;16659:42;;16723:20;;;;;;;;:30;;16695:6;;16659:9;16723:30;;16695:6;;16723:30;:::i;:::-;;;;;;;;16788:9;-1:-1:-1;;;;;16771:35:0;16780:6;-1:-1:-1;;;;;16771:35:0;;16799:6;16771:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;16771:35:0;;;;;;;;16261:612;16140:733;;;:::o;34968:938::-;35051:4;35007:23;12192:18;;;;;;;;;;;;35097:20;;;35093:60;;35135:7;;34968:938::o;35093:60::-;35187:18;;35169:15;:36;35165:105;;;35240:18;;35222:36;;35165:105;35360:15;35416:21;35450:36;35360:15;35450:16;:36::i;:::-;35499:18;35520:44;:21;35546:17;35520:25;:44::i;:::-;35499:65;;35577:17;35597:49;35630:15;35597:28;35612:12;;35597:10;:14;;:28;;;;:::i;:49::-;35680:1;35659:18;:22;;;35692:12;:16;;;35743:11;;35735:47;;35577:69;;-1:-1:-1;;;;;;35743:11:0;;35577:69;;35735:47;35680:1;35735:47;35577:69;35743:11;35735:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35817:17:0;;35809:89;;35721:61;;-1:-1:-1;35817:17:0;;;-1:-1:-1;;;;;35817:17:0;;35862:21;;35809:89;;;;35862:21;35817:17;35809:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;34968:938:0:o;3249:98::-;3307:7;3334:5;3338:1;3334;:5;:::i;:::-;3327:12;3249:98;-1:-1:-1;;;3249:98:0:o;3648:::-;3706:7;3733:5;3737:1;3733;:5;:::i;34371:589::-;34521:16;;;34535:1;34521:16;;;;;;;;34497:21;;34521:16;;;;;;;;;;-1:-1:-1;34521:16:0;34497:40;;34566:4;34548;34553:1;34548:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34548:23:0;;;-1:-1:-1;;;;;34548:23:0;;;;;34592:15;-1:-1:-1;;;;;34592:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34582:4;34587:1;34582:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34582:32:0;;;-1:-1:-1;;;;;34582:32:0;;;;;34627:62;34644:4;34659:15;34677:11;34627:8;:62::i;:::-;34728:224;;-1:-1:-1;;;34728:224:0;;-1:-1:-1;;;;;34728:15:0;:66;;;;:224;;34809:11;;34835:1;;34879:4;;34906;;34926:15;;34728:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34426:534;34371:589;:::o;2892:98::-;2950:7;2977:5;2981:1;2977;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:248::-;1700:6;1708;1761:2;1749:9;1740:7;1736:23;1732:32;1729:52;;;1777:1;1774;1767:12;1729:52;-1:-1:-1;;1800:23:1;;;1870:2;1855:18;;;1842:32;;-1:-1:-1;1632:248:1:o;1885:456::-;1962:6;1970;1978;2031:2;2019:9;2010:7;2006:23;2002:32;1999:52;;;2047:1;2044;2037:12;1999:52;2086:9;2073:23;2105:31;2130:5;2105:31;:::i;:::-;2155:5;-1:-1:-1;2212:2:1;2197:18;;2184:32;2225:33;2184:32;2225:33;:::i;:::-;1885:456;;2277:7;;-1:-1:-1;;;2331:2:1;2316:18;;;;2303:32;;1885:456::o;2743:160::-;2808:20;;2864:13;;2857:21;2847:32;;2837:60;;2893:1;2890;2883:12;2908:315;2973:6;2981;3034:2;3022:9;3013:7;3009:23;3005:32;3002:52;;;3050:1;3047;3040:12;3002:52;3089:9;3076:23;3108:31;3133:5;3108:31;:::i;:::-;3158:5;-1:-1:-1;3182:35:1;3213:2;3198:18;;3182:35;:::i;:::-;3172:45;;2908:315;;;;;:::o;3228:247::-;3287:6;3340:2;3328:9;3319:7;3315:23;3311:32;3308:52;;;3356:1;3353;3346:12;3308:52;3395:9;3382:23;3414:31;3439:5;3414:31;:::i;3480:180::-;3539:6;3592:2;3580:9;3571:7;3567:23;3563:32;3560:52;;;3608:1;3605;3598:12;3560:52;-1:-1:-1;3631:23:1;;3480:180;-1:-1:-1;3480:180:1:o;3665:::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:388::-;3918:6;3926;3979:2;3967:9;3958:7;3954:23;3950:32;3947:52;;;3995:1;3992;3985:12;3947:52;4034:9;4021:23;4053:31;4078:5;4053:31;:::i;:::-;4103:5;-1:-1:-1;4160:2:1;4145:18;;4132:32;4173:33;4132:32;4173:33;:::i;:::-;4225:7;4215:17;;;3850:388;;;;;:::o;4243:380::-;4322:1;4318:12;;;;4365;;;4386:61;;4440:4;4432:6;4428:17;4418:27;;4386:61;4493:2;4485:6;4482:14;4462:18;4459:38;4456:161;;4539:10;4534:3;4530:20;4527:1;4520:31;4574:4;4571:1;4564:15;4602:4;4599:1;4592:15;4456:161;;4243:380;;;:::o;4628:356::-;4830:2;4812:21;;;4849:18;;;4842:30;4908:34;4903:2;4888:18;;4881:62;4975:2;4960:18;;4628:356::o;4989:127::-;5050:10;5045:3;5041:20;5038:1;5031:31;5081:4;5078:1;5071:15;5105:4;5102:1;5095:15;5121:125;5186:9;;;5207:10;;;5204:36;;;5220:18;;:::i;6486:217::-;6526:1;6552;6542:132;;6596:10;6591:3;6587:20;6584:1;6577:31;6631:4;6628:1;6621:15;6659:4;6656:1;6649:15;6542:132;-1:-1:-1;6688:9:1;;6486:217::o;7130:168::-;7203:9;;;7234;;7251:15;;;7245:22;;7231:37;7221:71;;7272:18;;:::i;9786:401::-;9988:2;9970:21;;;10027:2;10007:18;;;10000:30;10066:34;10061:2;10046:18;;10039:62;-1:-1:-1;;;10132:2:1;10117:18;;10110:35;10177:3;10162:19;;9786:401::o;10192:399::-;10394:2;10376:21;;;10433:2;10413:18;;;10406:30;10472:34;10467:2;10452:18;;10445:62;-1:-1:-1;;;10538:2:1;10523:18;;10516:33;10581:3;10566:19;;10192:399::o;10596:128::-;10663:9;;;10684:11;;;10681:37;;;10698:18;;:::i;11478:127::-;11539:10;11534:3;11530:20;11527:1;11520:31;11570:4;11567:1;11560:15;11594:4;11591:1;11584:15;11610:251;11680:6;11733:2;11721:9;11712:7;11708:23;11704:32;11701:52;;;11749:1;11746;11739:12;11701:52;11781:9;11775:16;11800:31;11825:5;11800:31;:::i;11866:980::-;12128:4;12176:3;12165:9;12161:19;12207:6;12196:9;12189:25;12233:2;12271:6;12266:2;12255:9;12251:18;12244:34;12314:3;12309:2;12298:9;12294:18;12287:31;12338:6;12373;12367:13;12404:6;12396;12389:22;12442:3;12431:9;12427:19;12420:26;;12481:2;12473:6;12469:15;12455:29;;12502:1;12512:195;12526:6;12523:1;12520:13;12512:195;;;12591:13;;-1:-1:-1;;;;;12587:39:1;12575:52;;12682:15;;;;12647:12;;;;12623:1;12541:9;12512:195;;;-1:-1:-1;;;;;;;12763:32:1;;;;12758:2;12743:18;;12736:60;-1:-1:-1;;;12827:3:1;12812:19;12805:35;12724:3;11866:980;-1:-1:-1;;;11866:980:1:o
Swarm Source
ipfs://6572788d3fe755836194d95a08eb82988f732486797a8e3987a8bb63c2c19c43
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.