Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
21,000,000 CLUB
Holders
44 (0.00%)
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoClub
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "./interfaces/IFeeHandler.sol"; contract CryptoClub is ERC20, Ownable { // FeeHandler IFeeHandler public feeHandler = IFeeHandler(0x6649c6035d74B4E6f45eB79889BCDd7556bFEF70); address public constant devEntity = 0x04bDa42de3bc32Abb00df46004204424d4Cf8287; string public constant randomizer = "d3tqj"; uint8 public constant VERSION = 3; // Tax rates for buy and sell transactions uint256 public buyTaxRate; uint256 public sellTaxRate; // Boolean to control the swap and liquify state bool inSwapAndLiquify; // Boolean to control the tax pause state bool public taxPaused; // Uniswap V2 pair address address public uniswapV2Pair; // Mapping for whitelisted and blacklisted addresses mapping(address => bool) public isWhitelisted; mapping(address => bool) public isBlacklisted; // Uniswap router interface and pair address IUniswapV2Router02 public uniswapRouter; address public uniswapPair; // Threshold for triggering the swap and liquify function uint256 public taxTokenThreshold; // Boolean to control the swap and liquify state bool public swapAndLiquifyEnabled = true; // Dev share 0.2% of the total supply uint256 public constant devShare = 2; // Events event WhitelistUpdated(address indexed account, bool isWhitelisted); event BlacklistUpdated(address indexed account, bool isBlacklisted); event TaxPaused(bool isPaused); event TaxRatesUpdated(uint256 newBuyTaxRate, uint256 newSellTaxRate); event PairUpdated(address indexed pair, bool isAdded); event DeployedContract(address indexed contractAddress, uint8 version); event TaxTokenThresholdUpdated(uint256 newThreshold); event SwapAndLiquifyEnabledUpdated(bool enabled); // Modifier modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } /** * @dev Constructor to initialize the token with its parameters and set up Uniswap pair. * @param name Token name * @param symbol Token symbol * @param _buyTaxRate Buy tax rate * @param _sellTaxRate Sell tax rate * @param supply_ Initial token supply * @param _routerAddress Address of the Uniswap router * @param _taxTokenThreshold Threshold for triggering swap and liquify */ constructor( string memory name, string memory symbol, uint256 _buyTaxRate, uint256 _sellTaxRate, uint256 supply_, address _routerAddress, uint256 _taxTokenThreshold ) payable ERC20(name, symbol) Ownable(msg.sender) { uint256 requiredFee = feeHandler.getFee(VERSION); require(msg.value >= requiredFee, "Insufficient fee"); require(_buyTaxRate <= 25 && _sellTaxRate <= 25, "Tax rates must be less than 5%"); uint8 decimals = decimals(); uint256 _supply = supply_ * (10**decimals); buyTaxRate = _buyTaxRate; sellTaxRate = _sellTaxRate; taxTokenThreshold = _taxTokenThreshold * (10**decimals); uniswapRouter = IUniswapV2Router02(_routerAddress); uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH()); uint256 devValue = (_supply * devShare) / 1000; // Whitelist the contract and the sender updateWhitelist(address(this), true); updateWhitelist(msg.sender, true); // Mint the initial supply and allocate the dev share _mint(devEntity, devValue); _mint(msg.sender, _supply - devValue); // Transfer the received ether to the devEntity payable(devEntity).transfer(msg.value); // Emit the DeployedContract event emit DeployedContract(address(this), VERSION); // Emit PairUpdated event emit PairUpdated(uniswapV2Pair, true); // Emit TaxRatesUpdated event emit TaxRatesUpdated(_buyTaxRate, _sellTaxRate); // Emit TaxTokenThresholdUpdated event emit TaxTokenThresholdUpdated(taxTokenThreshold); } /** * @dev Update the whitelist status of an account * @param account Address of the account to be updated * @param _isWhitelisted Boolean indicating whether the account is whitelisted */ function updateWhitelist(address account, bool _isWhitelisted) public onlyOwner { isWhitelisted[account] = _isWhitelisted; emit WhitelistUpdated(account, _isWhitelisted); } /** * @dev Enable or disable the swap and liquify functionality * @param _enabled Boolean indicating whether the swap and liquify functionality is enabled */ function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } /** * @dev Update the blacklist status of an account * @param account Address of the account to be updated * @param _isBlacklisted Boolean indicating whether the account is blacklisted */ function updateBlacklist(address account, bool _isBlacklisted) public onlyOwner { isBlacklisted[account] = _isBlacklisted; emit BlacklistUpdated(account, _isBlacklisted); } /** * @dev Pause or unpause the tax * @param _status Boolean indicating whether the tax is paused */ function pauseTax(bool _status) public onlyOwner { taxPaused = _status; emit TaxPaused(_status); } /** * @dev Update the tax rates for buy and sell transactions * @param newBuyTaxRate New buy tax rate * @param newSellTaxRate New sell tax rate */ function updateTaxRates(uint256 newBuyTaxRate, uint256 newSellTaxRate) public onlyOwner { require(newBuyTaxRate <= buyTaxRate && newSellTaxRate <= sellTaxRate, "New tax rates must be less or equal than the current rates"); buyTaxRate = newBuyTaxRate; sellTaxRate = newSellTaxRate; emit TaxRatesUpdated(newBuyTaxRate, newSellTaxRate); } /** * @dev Set the tax token threshold for triggering swap and liquify * @param newThreshold New threshold amount */ function setTaxTokenThreshold(uint256 newThreshold) public onlyOwner { taxTokenThreshold = newThreshold * (10**decimals()); emit TaxTokenThresholdUpdated(taxTokenThreshold); } /** * @dev Internal function to handle token transfers with tax logic * @param from Address sending the tokens * @param to Address receiving the tokens * @param amount Amount of tokens being transferred */ function _update(address from, address to, uint256 amount) internal override { require(!isBlacklisted[from] && !isBlacklisted[to], "Token: blacklisted address"); if (shouldSwapAndLiquify(from)) { swapAndLiquidify(); } uint256 taxAmount = calculateTax(from, to, amount); uint256 amountAfterTax = amount - taxAmount; if (taxAmount > 0) { super._update(from, address(this), taxAmount); } super._update(from, to, amountAfterTax); } /** * @dev Calculate the tax amount for a transfer. * @param from Address sending the tokens * @param to Address receiving the tokens * @param amount Amount of tokens being transferred * @return taxAmount Calculated tax amount */ function calculateTax(address from, address to, uint256 amount) internal view returns (uint256 taxAmount) { if (taxPaused || isWhitelisted[from] || isWhitelisted[to]) { return 0; } if (to == address(uniswapV2Pair)) { // Sell transaction taxAmount = (amount * sellTaxRate) / 100; } else if (from == address(uniswapV2Pair)) { // Buy transaction taxAmount = (amount * buyTaxRate) / 100; } return taxAmount; } /** * @dev Determine if the contract should trigger swap and liquify. * @param from Address sending the tokens * @return Whether to trigger swap and liquify */ function shouldSwapAndLiquify(address from) internal view returns (bool) { return balanceOf(address(this)) >= taxTokenThreshold && !inSwapAndLiquify && swapAndLiquifyEnabled && from != address(uniswapV2Pair); } /** * @dev Internal function to swap tokens for ETH and add liquidity */ function swapAndLiquidify() internal lockTheSwap { uint256 contractBalance = balanceOf(address(this)); uint256 half = contractBalance / 2; uint256 otherHalf = contractBalance - half; uint256 initialETHBalance = address(this).balance; swapTokensForETH(half); uint256 newETHBalance = address(this).balance - initialETHBalance; addLiquidity(otherHalf, newETHBalance); } /** * @dev Internal function to swap tokens for ETH * @param tokenAmount Amount of tokens to swap */ function swapTokensForETH(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), tokenAmount); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } /** * @dev Internal function to add liquidity to Uniswap * @param tokenAmount Amount of tokens to add as liquidity * @param ethAmount Amount of ETH to add as liquidity */ function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { _approve(address(this), address(uniswapRouter), tokenAmount); uniswapRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } /** * @dev Add or remove a Uniswap V2 pair to/from being taxed. * @param pair The address of the Uniswap V2 pair. * @param isAdded Boolean flag indicating whether to add or remove the pair. */ function updatePair(address pair, bool isAdded) public onlyOwner { if (isAdded) { require(pair != uniswapV2Pair, "Pair already added"); uniswapV2Pair = pair; } else { require(pair == uniswapV2Pair, "Pair not added"); uniswapV2Pair = address(0); } emit PairUpdated(pair, isAdded); } // Allow the contract to receive ETH receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface IFeeHandler { // Event emitted when a fee is updated event FeeUpdated(uint8 version, uint256 newFee); /** * @dev Set or update the fee for a specific contract version * @param _version The contract version * @param _fee The fee amount in wei */ function setFee(uint8 _version, uint256 _fee) external; /** * @dev Get the fee for a specific contract version * @param _version The contract version * @return The fee amount in wei */ function getFee(uint8 _version) external view returns (uint256); /** * @dev Get the fee for a specific contract version * @param _version The contract version * @return The fee amount in wei */ function feesByVersion(uint8 _version) external view returns (uint256); }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_buyTaxRate","type":"uint256"},{"internalType":"uint256","name":"_sellTaxRate","type":"uint256"},{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"address","name":"_routerAddress","type":"address"},{"internalType":"uint256","name":"_taxTokenThreshold","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"DeployedContract","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":false,"internalType":"bool","name":"isAdded","type":"bool"}],"name":"PairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"TaxPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newBuyTaxRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellTaxRate","type":"uint256"}],"name":"TaxRatesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"TaxTokenThresholdUpdated","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devEntity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeHandler","outputs":[{"internalType":"contract IFeeHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"pauseTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"randomizer","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"setTaxTokenThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"taxPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxTokenThreshold","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"updateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isAdded","type":"bool"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTaxRate","type":"uint256"},{"internalType":"uint256","name":"newSellTaxRate","type":"uint256"}],"name":"updateTaxRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_isWhitelisted","type":"bool"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052736649c6035d74b4e6f45eb79889bcdd7556bfef70600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60006101000a81548160ff021916908315150217905550604051620052ca380380620052ca8339818101604052810190620000999190620018c8565b3387878160039081620000ad919062001bfa565b508060049081620000bf919062001bfa565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001375760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200012e919062001cf2565b60405180910390fd5b62000148816200074c60201b60201c565b506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663083132c460036040518263ffffffff1660e01b8152600401620001a9919062001d2d565b602060405180830381865afa158015620001c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ed919062001d4a565b90508034101562000235576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022c9062001ddd565b60405180910390fd5b6019861115801562000248575060198511155b6200028a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002819062001e4f565b60405180910390fd5b60006200029c6200081260201b60201c565b9050600081600a620002af919062001ff4565b86620002bc919062002045565b9050876007819055508660088190555081600a620002db919062001ff4565b84620002e8919062002045565b600e8190555084600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200039d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c3919062002090565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200044d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000473919062002090565b6040518363ffffffff1660e01b815260040162000492929190620020c2565b6020604051808303816000875af1158015620004b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004d8919062002090565b600960026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006103e86002836200052c919062002045565b6200053891906200211e565b90506200054d3060016200081b60201b60201c565b620005603360016200081b60201b60201c565b620005867304bda42de3bc32abb00df46004204424d4cf828782620008d660201b60201c565b620005a533828462000599919062002156565b620008d660201b60201c565b7304bda42de3bc32abb00df46004204424d4cf828773ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000600573d6000803e3d6000fd5b503073ffffffffffffffffffffffffffffffffffffffff167ff06f39c7256592e120faf6a2a3824b0ea63a9e95a4c9e64799ff187add0a2a6060036040516200064a919062001d2d565b60405180910390a2600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fb40229924089a696fab5d90675c48d4ccf43269a56c8c545f5227708acbf4e576001604051620006bd9190620021ae565b60405180910390a27f8af72bce83e770654b24f833792771b0c5ecd95a31e17a43d11475b9f0c96aba8989604051620006f8929190620021dc565b60405180910390a17ff77bc0f27f9ea31ec065a4335fbc597f208717e6c66d5e1e97cac8a7395e1d2e600e5460405162000733919062002209565b60405180910390a150505050505050505050506200257d565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b6200082b6200096360201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d82604051620008ca9190620021ae565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200094b5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000942919062001cf2565b60405180910390fd5b6200095f6000838362000a0560201b60201c565b5050565b6200097362000b7560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200099962000b7d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a0357620009c562000b7560201b60201c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620009fa919062001cf2565b60405180910390fd5b565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000aaa5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000aec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae39062002276565b60405180910390fd5b62000afd8362000ba760201b60201c565b1562000b145762000b1362000c5460201b60201c565b5b600062000b2984848462000d0560201b60201c565b90506000818362000b3b919062002156565b9050600082111562000b5b5762000b5a85308462000ecd60201b60201c565b5b62000b6e85858362000ecd60201b60201c565b5050505050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e5462000bbd30620010fd60201b60201c565b1015801562000bd95750600960009054906101000a900460ff16155b801562000bf25750600f60009054906101000a900460ff165b801562000c4d5750600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b6001600960006101000a81548160ff021916908315150217905550600062000c8230620010fd60201b60201c565b9050600060028262000c9591906200211e565b90506000818362000ca7919062002156565b9050600047905062000cbf836200114560201b60201c565b6000814762000ccf919062002156565b905062000ce38382620013a160201b60201c565b50505050506000600960006101000a81548160ff021916908315150217905550565b6000600960019054906101000a900460ff168062000d6c5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8062000dc15750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1562000dd1576000905062000ec6565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000e4d5760646008548362000e39919062002045565b62000e4591906200211e565b905062000ec5565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000ec45760646007548362000eb5919062002045565b62000ec191906200211e565b90505b5b5b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000f2357806002600082825462000f16919062002298565b9250508190555062000ff9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000fb2578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000fa993929190620022d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001044578060026000828254039250508190555062001091565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620010f0919062002209565b60405180910390a3505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600267ffffffffffffffff811115620011655762001164620016c4565b5b604051908082528060200260200182016040528015620011945781602001602082028036833780820191505090505b5090503081600081518110620011af57620011ae62002310565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001257573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200127d919062002090565b8160018151811062001294576200129362002310565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506200130330600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200149b60201b60201c565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016200136995949392919062002450565b600060405180830381600087803b1580156200138457600080fd5b505af115801562001399573d6000803e3d6000fd5b505050505050565b620013d630600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200149b60201b60201c565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806200142a62000b7d60201b60201c565b426040518863ffffffff1660e01b81526004016200144e96959493929190620024b4565b60606040518083038185885af11580156200146d573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019062001494919062002521565b5050505050565b620014b08383836001620014b560201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200152a5760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162001521919062001cf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200159f5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162001596919062001cf2565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156200168f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162001686919062002209565b60405180910390a35b50505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620016fe82620016b3565b810181811067ffffffffffffffff8211171562001720576200171f620016c4565b5b80604052505050565b60006200173562001695565b9050620017438282620016f3565b919050565b600067ffffffffffffffff821115620017665762001765620016c4565b5b6200177182620016b3565b9050602081019050919050565b60005b838110156200179e57808201518184015260208101905062001781565b60008484015250505050565b6000620017c1620017bb8462001748565b62001729565b905082815260208101848484011115620017e057620017df620016ae565b5b620017ed8482856200177e565b509392505050565b600082601f8301126200180d576200180c620016a9565b5b81516200181f848260208601620017aa565b91505092915050565b6000819050919050565b6200183d8162001828565b81146200184957600080fd5b50565b6000815190506200185d8162001832565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620018908262001863565b9050919050565b620018a28162001883565b8114620018ae57600080fd5b50565b600081519050620018c28162001897565b92915050565b600080600080600080600060e0888a031215620018ea57620018e96200169f565b5b600088015167ffffffffffffffff8111156200190b576200190a620016a4565b5b620019198a828b01620017f5565b975050602088015167ffffffffffffffff8111156200193d576200193c620016a4565b5b6200194b8a828b01620017f5565b96505060406200195e8a828b016200184c565b9550506060620019718a828b016200184c565b9450506080620019848a828b016200184c565b93505060a0620019978a828b01620018b1565b92505060c0620019aa8a828b016200184c565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062001a0c57607f821691505b60208210810362001a225762001a21620019c4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262001a8c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001a4d565b62001a98868362001a4d565b95508019841693508086168417925050509392505050565b6000819050919050565b600062001adb62001ad562001acf8462001828565b62001ab0565b62001828565b9050919050565b6000819050919050565b62001af78362001aba565b62001b0f62001b068262001ae2565b84845462001a5a565b825550505050565b600090565b62001b2662001b17565b62001b3381848462001aec565b505050565b5b8181101562001b5b5762001b4f60008262001b1c565b60018101905062001b39565b5050565b601f82111562001baa5762001b748162001a28565b62001b7f8462001a3d565b8101602085101562001b8f578190505b62001ba762001b9e8562001a3d565b83018262001b38565b50505b505050565b600082821c905092915050565b600062001bcf6000198460080262001baf565b1980831691505092915050565b600062001bea838362001bbc565b9150826002028217905092915050565b62001c0582620019b9565b67ffffffffffffffff81111562001c215762001c20620016c4565b5b62001c2d8254620019f3565b62001c3a82828562001b5f565b600060209050601f83116001811462001c72576000841562001c5d578287015190505b62001c69858262001bdc565b86555062001cd9565b601f19841662001c828662001a28565b60005b8281101562001cac5784890151825560018201915060208501945060208101905062001c85565b8683101562001ccc578489015162001cc8601f89168262001bbc565b8355505b6001600288020188555050505b505050505050565b62001cec8162001883565b82525050565b600060208201905062001d09600083018462001ce1565b92915050565b600060ff82169050919050565b62001d278162001d0f565b82525050565b600060208201905062001d44600083018462001d1c565b92915050565b60006020828403121562001d635762001d626200169f565b5b600062001d73848285016200184c565b91505092915050565b600082825260208201905092915050565b7f496e73756666696369656e742066656500000000000000000000000000000000600082015250565b600062001dc560108362001d7c565b915062001dd28262001d8d565b602082019050919050565b6000602082019050818103600083015262001df88162001db6565b9050919050565b7f546178207261746573206d757374206265206c657373207468616e2035250000600082015250565b600062001e37601e8362001d7c565b915062001e448262001dff565b602082019050919050565b6000602082019050818103600083015262001e6a8162001e28565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562001eff5780860481111562001ed75762001ed662001e71565b5b600185161562001ee75780820291505b808102905062001ef78562001ea0565b945062001eb7565b94509492505050565b60008262001f1a576001905062001fed565b8162001f2a576000905062001fed565b816001811462001f43576002811462001f4e5762001f84565b600191505062001fed565b60ff84111562001f635762001f6262001e71565b5b8360020a91508482111562001f7d5762001f7c62001e71565b5b5062001fed565b5060208310610133831016604e8410600b841016171562001fbe5782820a90508381111562001fb85762001fb762001e71565b5b62001fed565b62001fcd848484600162001ead565b9250905081840481111562001fe75762001fe662001e71565b5b81810290505b9392505050565b6000620020018262001828565b91506200200e8362001d0f565b92506200203d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001f08565b905092915050565b6000620020528262001828565b91506200205f8362001828565b92508282026200206f8162001828565b9150828204841483151762002089576200208862001e71565b5b5092915050565b600060208284031215620020a957620020a86200169f565b5b6000620020b984828501620018b1565b91505092915050565b6000604082019050620020d9600083018562001ce1565b620020e8602083018462001ce1565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200212b8262001828565b9150620021388362001828565b9250826200214b576200214a620020ef565b5b828204905092915050565b6000620021638262001828565b9150620021708362001828565b92508282039050818111156200218b576200218a62001e71565b5b92915050565b60008115159050919050565b620021a88162002191565b82525050565b6000602082019050620021c560008301846200219d565b92915050565b620021d68162001828565b82525050565b6000604082019050620021f36000830185620021cb565b620022026020830184620021cb565b9392505050565b6000602082019050620022206000830184620021cb565b92915050565b7f546f6b656e3a20626c61636b6c69737465642061646472657373000000000000600082015250565b60006200225e601a8362001d7c565b91506200226b8262002226565b602082019050919050565b6000602082019050818103600083015262002291816200224f565b9050919050565b6000620022a58262001828565b9150620022b28362001828565b9250828201905080821115620022cd57620022cc62001e71565b5b92915050565b6000606082019050620022ea600083018662001ce1565b620022f96020830185620021cb565b620023086040830184620021cb565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006200236a620023646200235e846200233f565b62001ab0565b62001828565b9050919050565b6200237c8162002349565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620023b98162001883565b82525050565b6000620023cd8383620023ae565b60208301905092915050565b6000602082019050919050565b6000620023f38262002382565b620023ff81856200238d565b93506200240c836200239e565b8060005b8381101562002443578151620024278882620023bf565b97506200243483620023d9565b92505060018101905062002410565b5085935050505092915050565b600060a082019050620024676000830188620021cb565b62002476602083018762002371565b81810360408301526200248a8186620023e6565b90506200249b606083018562001ce1565b620024aa6080830184620021cb565b9695505050505050565b600060c082019050620024cb600083018962001ce1565b620024da6020830188620021cb565b620024e9604083018762002371565b620024f8606083018662002371565b62002507608083018562001ce1565b6200251660a0830184620021cb565b979650505050505050565b6000806000606084860312156200253d576200253c6200169f565b5b60006200254d868287016200184c565b935050602062002560868287016200184c565b925050604062002573868287016200184c565b9150509250925092565b612d3d806200258d6000396000f3fe6080604052600436106101fd5760003560e01c8063715018a61161010d578063aed04fae116100a0578063f10fb5841161006f578063f10fb58414610732578063f2fde38b1461075d578063fb495bf514610786578063fe575a87146107b1578063ffa1ad74146107ee57610204565b8063aed04fae14610676578063c49b9a80146106a1578063c816841b146106ca578063dd62ed3e146106f557610204565b80639155e083116100dc5780639155e083146105bc57806395d89b41146105e5578063a9059cbb14610610578063ab6a8b1c1461064d57610204565b8063715018a614610526578063735de9f71461053d57806376c73064146105685780638da5cb5b1461059157610204565b806328f9e629116101905780633c93adee1161015f5780633c93adee1461043d57806349bd5a5e146104685780634a74bb0214610493578063691f224f146104be57806370a08231146104e957610204565b806328f9e62914610381578063299042f4146103ac578063313ce567146103d55780633af32abf1461040057610204565b806318160ddd116101cc57806318160ddd146102c357806323b872dd146102ee57806324024efd1461032b578063268f72dd1461035657610204565b806306fdde0314610209578063095ea7b3146102345780630bb8e103146102715780630d392cd91461029a57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610819565b60405161022b91906120c6565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190612181565b6108ab565b60405161026891906121dc565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612223565b6108ce565b005b3480156102a657600080fd5b506102c160048036038101906102bc9190612250565b61092a565b005b3480156102cf57600080fd5b506102d86109db565b6040516102e5919061229f565b60405180910390f35b3480156102fa57600080fd5b50610315600480360381019061031091906122ba565b6109e5565b60405161032291906121dc565b60405180910390f35b34801561033757600080fd5b50610340610a14565b60405161034d919061229f565b60405180910390f35b34801561036257600080fd5b5061036b610a1a565b60405161037891906121dc565b60405180910390f35b34801561038d57600080fd5b50610396610a2d565b6040516103a3919061229f565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce919061230d565b610a33565b005b3480156103e157600080fd5b506103ea610a9c565b6040516103f79190612356565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190612371565b610aa5565b60405161043491906121dc565b60405180910390f35b34801561044957600080fd5b50610452610ac5565b60405161045f91906123fd565b60405180910390f35b34801561047457600080fd5b5061047d610aeb565b60405161048a9190612427565b60405180910390f35b34801561049f57600080fd5b506104a8610b11565b6040516104b591906121dc565b60405180910390f35b3480156104ca57600080fd5b506104d3610b24565b6040516104e0919061229f565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612371565b610b2a565b60405161051d919061229f565b60405180910390f35b34801561053257600080fd5b5061053b610b72565b005b34801561054957600080fd5b50610552610b86565b60405161055f9190612463565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612250565b610bac565b005b34801561059d57600080fd5b506105a6610db5565b6040516105b39190612427565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612250565b610ddf565b005b3480156105f157600080fd5b506105fa610e90565b60405161060791906120c6565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612181565b610f22565b60405161064491906121dc565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061247e565b610f45565b005b34801561068257600080fd5b5061068b610feb565b604051610698919061229f565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190612223565b610ff0565b005b3480156106d657600080fd5b506106df61104c565b6040516106ec9190612427565b60405180910390f35b34801561070157600080fd5b5061071c600480360381019061071791906124be565b611072565b604051610729919061229f565b60405180910390f35b34801561073e57600080fd5b506107476110f9565b60405161075491906120c6565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612371565b611132565b005b34801561079257600080fd5b5061079b6111b8565b6040516107a89190612427565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190612371565b6111d0565b6040516107e591906121dc565b60405180910390f35b3480156107fa57600080fd5b506108036111f0565b6040516108109190612356565b60405180910390f35b6060600380546108289061252d565b80601f01602080910402602001604051908101604052809291908181526020018280546108549061252d565b80156108a15780601f10610876576101008083540402835291602001916108a1565b820191906000526020600020905b81548152906001019060200180831161088457829003601f168201915b5050505050905090565b6000806108b66111f5565b90506108c38185856111fd565b600191505092915050565b6108d661120f565b80600960016101000a81548160ff0219169083151502179055507fa32873ac8d5b14de8a004b83c19ee1a422f35a4da8b4f7c7cfba001f718116fc8160405161091f91906121dc565b60405180910390a150565b61093261120f565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d826040516109cf91906121dc565b60405180910390a25050565b6000600254905090565b6000806109f06111f5565b90506109fd858285611296565b610a0885858561132a565b60019150509392505050565b60085481565b600960019054906101000a900460ff1681565b600e5481565b610a3b61120f565b610a43610a9c565b600a610a4f91906126c0565b81610a5a919061270b565b600e819055507ff77bc0f27f9ea31ec065a4335fbc597f208717e6c66d5e1e97cac8a7395e1d2e600e54604051610a91919061229f565b60405180910390a150565b60006012905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b7a61120f565b610b84600061141e565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bb461120f565b8015610c9057600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190612799565b60405180910390fd5b81600960026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d63565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790612805565b60405180910390fd5b6000600960026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8173ffffffffffffffffffffffffffffffffffffffff167fb40229924089a696fab5d90675c48d4ccf43269a56c8c545f5227708acbf4e5782604051610da991906121dc565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610de761120f565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac82604051610e8491906121dc565b60405180910390a25050565b606060048054610e9f9061252d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb9061252d565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b5050505050905090565b600080610f2d6111f5565b9050610f3a81858561132a565b600191505092915050565b610f4d61120f565b6007548211158015610f6157506008548111155b610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790612897565b60405180910390fd5b81600781905550806008819055507f8af72bce83e770654b24f833792771b0c5ecd95a31e17a43d11475b9f0c96aba8282604051610fdf9291906128b7565b60405180910390a15050565b600281565b610ff861120f565b80600f60006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161104191906121dc565b60405180910390a150565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280600581526020017f643374716a00000000000000000000000000000000000000000000000000000081525081565b61113a61120f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ac5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016111a39190612427565b60405180910390fd5b6111b58161141e565b50565b7304bda42de3bc32abb00df46004204424d4cf828781565b600b6020528060005260406000206000915054906101000a900460ff1681565b600381565b600033905090565b61120a83838360016114e4565b505050565b6112176111f5565b73ffffffffffffffffffffffffffffffffffffffff16611235610db5565b73ffffffffffffffffffffffffffffffffffffffff1614611294576112586111f5565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161128b9190612427565b60405180910390fd5b565b60006112a28484611072565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113245781811015611314578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161130b939291906128e0565b60405180910390fd5b611323848484840360006114e4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139c5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113939190612427565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361140e5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114059190612427565b60405180910390fd5b6114198383836116bb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115565760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161154d9190612427565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115c85760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115bf9190612427565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156116b5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116ac919061229f565b60405180910390a35b50505050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561175f5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590612963565b60405180910390fd5b6117a7836117fb565b156117b5576117b461189d565b5b60006117c2848484611930565b9050600081836117d29190612983565b905060008211156117e9576117e8853084611ae9565b5b6117f4858583611ae9565b5050505050565b6000600e5461180930610b2a565b101580156118245750600960009054906101000a900460ff16155b801561183c5750600f60009054906101000a900460ff165b80156118965750600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b6001600960006101000a81548160ff02191690831515021790555060006118c330610b2a565b905060006002826118d491906129e6565b9050600081836118e49190612983565b905060004790506118f483611d0e565b600081476119029190612983565b905061190e8382611f51565b50505050506000600960006101000a81548160ff021916908315150217905550565b6000600960019054906101000a900460ff16806119965750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806119ea5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119f85760009050611ae2565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a6e57606460085483611a5d919061270b565b611a6791906129e6565b9050611ae1565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ae057606460075483611ad3919061270b565b611add91906129e6565b90505b5b5b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b3b578060026000828254611b2f9190612a17565b92505081905550611c0e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611bbe939291906128e0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c575780600260008282540392505081905550611ca4565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d01919061229f565b60405180910390a3505050565b6000600267ffffffffffffffff811115611d2b57611d2a612a4b565b5b604051908082528060200260200182016040528015611d595781602001602082028036833780820191505090505b5090503081600081518110611d7157611d70612a7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3c9190612abe565b81600181518110611e5057611e4f612a7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611eb730600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111fd565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611f1b959493929190612be4565b600060405180830381600087803b158015611f3557600080fd5b505af1158015611f49573d6000803e3d6000fd5b505050505050565b611f7e30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111fd565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611fca610db5565b426040518863ffffffff1660e01b8152600401611fec96959493929190612c3e565b60606040518083038185885af115801561200a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061202f9190612cb4565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612070578082015181840152602081019050612055565b60008484015250505050565b6000601f19601f8301169050919050565b600061209882612036565b6120a28185612041565b93506120b2818560208601612052565b6120bb8161207c565b840191505092915050565b600060208201905081810360008301526120e0818461208d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612118826120ed565b9050919050565b6121288161210d565b811461213357600080fd5b50565b6000813590506121458161211f565b92915050565b6000819050919050565b61215e8161214b565b811461216957600080fd5b50565b60008135905061217b81612155565b92915050565b60008060408385031215612198576121976120e8565b5b60006121a685828601612136565b92505060206121b78582860161216c565b9150509250929050565b60008115159050919050565b6121d6816121c1565b82525050565b60006020820190506121f160008301846121cd565b92915050565b612200816121c1565b811461220b57600080fd5b50565b60008135905061221d816121f7565b92915050565b600060208284031215612239576122386120e8565b5b60006122478482850161220e565b91505092915050565b60008060408385031215612267576122666120e8565b5b600061227585828601612136565b92505060206122868582860161220e565b9150509250929050565b6122998161214b565b82525050565b60006020820190506122b46000830184612290565b92915050565b6000806000606084860312156122d3576122d26120e8565b5b60006122e186828701612136565b93505060206122f286828701612136565b92505060406123038682870161216c565b9150509250925092565b600060208284031215612323576123226120e8565b5b60006123318482850161216c565b91505092915050565b600060ff82169050919050565b6123508161233a565b82525050565b600060208201905061236b6000830184612347565b92915050565b600060208284031215612387576123866120e8565b5b600061239584828501612136565b91505092915050565b6000819050919050565b60006123c36123be6123b9846120ed565b61239e565b6120ed565b9050919050565b60006123d5826123a8565b9050919050565b60006123e7826123ca565b9050919050565b6123f7816123dc565b82525050565b600060208201905061241260008301846123ee565b92915050565b6124218161210d565b82525050565b600060208201905061243c6000830184612418565b92915050565b600061244d826123ca565b9050919050565b61245d81612442565b82525050565b60006020820190506124786000830184612454565b92915050565b60008060408385031215612495576124946120e8565b5b60006124a38582860161216c565b92505060206124b48582860161216c565b9150509250929050565b600080604083850312156124d5576124d46120e8565b5b60006124e385828601612136565b92505060206124f485828601612136565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254557607f821691505b602082108103612558576125576124fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156125e4578086048111156125c0576125bf61255e565b5b60018516156125cf5780820291505b80810290506125dd8561258d565b94506125a4565b94509492505050565b6000826125fd57600190506126b9565b8161260b57600090506126b9565b8160018114612621576002811461262b5761265a565b60019150506126b9565b60ff84111561263d5761263c61255e565b5b8360020a9150848211156126545761265361255e565b5b506126b9565b5060208310610133831016604e8410600b841016171561268f5782820a90508381111561268a5761268961255e565b5b6126b9565b61269c848484600161259a565b925090508184048111156126b3576126b261255e565b5b81810290505b9392505050565b60006126cb8261214b565b91506126d68361233a565b92506127037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846125ed565b905092915050565b60006127168261214b565b91506127218361214b565b925082820261272f8161214b565b915082820484148315176127465761274561255e565b5b5092915050565b7f5061697220616c72656164792061646465640000000000000000000000000000600082015250565b6000612783601283612041565b915061278e8261274d565b602082019050919050565b600060208201905081810360008301526127b281612776565b9050919050565b7f50616972206e6f74206164646564000000000000000000000000000000000000600082015250565b60006127ef600e83612041565b91506127fa826127b9565b602082019050919050565b6000602082019050818103600083015261281e816127e2565b9050919050565b7f4e657720746178207261746573206d757374206265206c657373206f7220657160008201527f75616c207468616e207468652063757272656e74207261746573000000000000602082015250565b6000612881603a83612041565b915061288c82612825565b604082019050919050565b600060208201905081810360008301526128b081612874565b9050919050565b60006040820190506128cc6000830185612290565b6128d96020830184612290565b9392505050565b60006060820190506128f56000830186612418565b6129026020830185612290565b61290f6040830184612290565b949350505050565b7f546f6b656e3a20626c61636b6c69737465642061646472657373000000000000600082015250565b600061294d601a83612041565b915061295882612917565b602082019050919050565b6000602082019050818103600083015261297c81612940565b9050919050565b600061298e8261214b565b91506129998361214b565b92508282039050818111156129b1576129b061255e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006129f18261214b565b91506129fc8361214b565b925082612a0c57612a0b6129b7565b5b828204905092915050565b6000612a228261214b565b9150612a2d8361214b565b9250828201905080821115612a4557612a4461255e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ab88161211f565b92915050565b600060208284031215612ad457612ad36120e8565b5b6000612ae284828501612aa9565b91505092915050565b6000819050919050565b6000612b10612b0b612b0684612aeb565b61239e565b61214b565b9050919050565b612b2081612af5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b5b8161210d565b82525050565b6000612b6d8383612b52565b60208301905092915050565b6000602082019050919050565b6000612b9182612b26565b612b9b8185612b31565b9350612ba683612b42565b8060005b83811015612bd7578151612bbe8882612b61565b9750612bc983612b79565b925050600181019050612baa565b5085935050505092915050565b600060a082019050612bf96000830188612290565b612c066020830187612b17565b8181036040830152612c188186612b86565b9050612c276060830185612418565b612c346080830184612290565b9695505050505050565b600060c082019050612c536000830189612418565b612c606020830188612290565b612c6d6040830187612b17565b612c7a6060830186612b17565b612c876080830185612418565b612c9460a0830184612290565b979650505050505050565b600081519050612cae81612155565b92915050565b600080600060608486031215612ccd57612ccc6120e8565b5b6000612cdb86828701612c9f565b9350506020612cec86828701612c9f565b9250506040612cfd86828701612c9f565b915050925092509256fea26469706673582212205b71b0b1c9bdcf62ee9b3f236fdcbad5a0f28c09854457b090d32e671f10018664736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000001406f400000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a43727970746f436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434c554200000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c8063715018a61161010d578063aed04fae116100a0578063f10fb5841161006f578063f10fb58414610732578063f2fde38b1461075d578063fb495bf514610786578063fe575a87146107b1578063ffa1ad74146107ee57610204565b8063aed04fae14610676578063c49b9a80146106a1578063c816841b146106ca578063dd62ed3e146106f557610204565b80639155e083116100dc5780639155e083146105bc57806395d89b41146105e5578063a9059cbb14610610578063ab6a8b1c1461064d57610204565b8063715018a614610526578063735de9f71461053d57806376c73064146105685780638da5cb5b1461059157610204565b806328f9e629116101905780633c93adee1161015f5780633c93adee1461043d57806349bd5a5e146104685780634a74bb0214610493578063691f224f146104be57806370a08231146104e957610204565b806328f9e62914610381578063299042f4146103ac578063313ce567146103d55780633af32abf1461040057610204565b806318160ddd116101cc57806318160ddd146102c357806323b872dd146102ee57806324024efd1461032b578063268f72dd1461035657610204565b806306fdde0314610209578063095ea7b3146102345780630bb8e103146102715780630d392cd91461029a57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610819565b60405161022b91906120c6565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190612181565b6108ab565b60405161026891906121dc565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612223565b6108ce565b005b3480156102a657600080fd5b506102c160048036038101906102bc9190612250565b61092a565b005b3480156102cf57600080fd5b506102d86109db565b6040516102e5919061229f565b60405180910390f35b3480156102fa57600080fd5b50610315600480360381019061031091906122ba565b6109e5565b60405161032291906121dc565b60405180910390f35b34801561033757600080fd5b50610340610a14565b60405161034d919061229f565b60405180910390f35b34801561036257600080fd5b5061036b610a1a565b60405161037891906121dc565b60405180910390f35b34801561038d57600080fd5b50610396610a2d565b6040516103a3919061229f565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce919061230d565b610a33565b005b3480156103e157600080fd5b506103ea610a9c565b6040516103f79190612356565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190612371565b610aa5565b60405161043491906121dc565b60405180910390f35b34801561044957600080fd5b50610452610ac5565b60405161045f91906123fd565b60405180910390f35b34801561047457600080fd5b5061047d610aeb565b60405161048a9190612427565b60405180910390f35b34801561049f57600080fd5b506104a8610b11565b6040516104b591906121dc565b60405180910390f35b3480156104ca57600080fd5b506104d3610b24565b6040516104e0919061229f565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612371565b610b2a565b60405161051d919061229f565b60405180910390f35b34801561053257600080fd5b5061053b610b72565b005b34801561054957600080fd5b50610552610b86565b60405161055f9190612463565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612250565b610bac565b005b34801561059d57600080fd5b506105a6610db5565b6040516105b39190612427565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612250565b610ddf565b005b3480156105f157600080fd5b506105fa610e90565b60405161060791906120c6565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612181565b610f22565b60405161064491906121dc565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061247e565b610f45565b005b34801561068257600080fd5b5061068b610feb565b604051610698919061229f565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190612223565b610ff0565b005b3480156106d657600080fd5b506106df61104c565b6040516106ec9190612427565b60405180910390f35b34801561070157600080fd5b5061071c600480360381019061071791906124be565b611072565b604051610729919061229f565b60405180910390f35b34801561073e57600080fd5b506107476110f9565b60405161075491906120c6565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612371565b611132565b005b34801561079257600080fd5b5061079b6111b8565b6040516107a89190612427565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190612371565b6111d0565b6040516107e591906121dc565b60405180910390f35b3480156107fa57600080fd5b506108036111f0565b6040516108109190612356565b60405180910390f35b6060600380546108289061252d565b80601f01602080910402602001604051908101604052809291908181526020018280546108549061252d565b80156108a15780601f10610876576101008083540402835291602001916108a1565b820191906000526020600020905b81548152906001019060200180831161088457829003601f168201915b5050505050905090565b6000806108b66111f5565b90506108c38185856111fd565b600191505092915050565b6108d661120f565b80600960016101000a81548160ff0219169083151502179055507fa32873ac8d5b14de8a004b83c19ee1a422f35a4da8b4f7c7cfba001f718116fc8160405161091f91906121dc565b60405180910390a150565b61093261120f565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d826040516109cf91906121dc565b60405180910390a25050565b6000600254905090565b6000806109f06111f5565b90506109fd858285611296565b610a0885858561132a565b60019150509392505050565b60085481565b600960019054906101000a900460ff1681565b600e5481565b610a3b61120f565b610a43610a9c565b600a610a4f91906126c0565b81610a5a919061270b565b600e819055507ff77bc0f27f9ea31ec065a4335fbc597f208717e6c66d5e1e97cac8a7395e1d2e600e54604051610a91919061229f565b60405180910390a150565b60006012905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b7a61120f565b610b84600061141e565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bb461120f565b8015610c9057600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190612799565b60405180910390fd5b81600960026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d63565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790612805565b60405180910390fd5b6000600960026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8173ffffffffffffffffffffffffffffffffffffffff167fb40229924089a696fab5d90675c48d4ccf43269a56c8c545f5227708acbf4e5782604051610da991906121dc565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610de761120f565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac82604051610e8491906121dc565b60405180910390a25050565b606060048054610e9f9061252d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecb9061252d565b8015610f185780601f10610eed57610100808354040283529160200191610f18565b820191906000526020600020905b815481529060010190602001808311610efb57829003601f168201915b5050505050905090565b600080610f2d6111f5565b9050610f3a81858561132a565b600191505092915050565b610f4d61120f565b6007548211158015610f6157506008548111155b610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790612897565b60405180910390fd5b81600781905550806008819055507f8af72bce83e770654b24f833792771b0c5ecd95a31e17a43d11475b9f0c96aba8282604051610fdf9291906128b7565b60405180910390a15050565b600281565b610ff861120f565b80600f60006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161104191906121dc565b60405180910390a150565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280600581526020017f643374716a00000000000000000000000000000000000000000000000000000081525081565b61113a61120f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ac5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016111a39190612427565b60405180910390fd5b6111b58161141e565b50565b7304bda42de3bc32abb00df46004204424d4cf828781565b600b6020528060005260406000206000915054906101000a900460ff1681565b600381565b600033905090565b61120a83838360016114e4565b505050565b6112176111f5565b73ffffffffffffffffffffffffffffffffffffffff16611235610db5565b73ffffffffffffffffffffffffffffffffffffffff1614611294576112586111f5565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161128b9190612427565b60405180910390fd5b565b60006112a28484611072565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113245781811015611314578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161130b939291906128e0565b60405180910390fd5b611323848484840360006114e4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139c5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113939190612427565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361140e5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114059190612427565b60405180910390fd5b6114198383836116bb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115565760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161154d9190612427565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115c85760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115bf9190612427565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156116b5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116ac919061229f565b60405180910390a35b50505050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561175f5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590612963565b60405180910390fd5b6117a7836117fb565b156117b5576117b461189d565b5b60006117c2848484611930565b9050600081836117d29190612983565b905060008211156117e9576117e8853084611ae9565b5b6117f4858583611ae9565b5050505050565b6000600e5461180930610b2a565b101580156118245750600960009054906101000a900460ff16155b801561183c5750600f60009054906101000a900460ff165b80156118965750600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b6001600960006101000a81548160ff02191690831515021790555060006118c330610b2a565b905060006002826118d491906129e6565b9050600081836118e49190612983565b905060004790506118f483611d0e565b600081476119029190612983565b905061190e8382611f51565b50505050506000600960006101000a81548160ff021916908315150217905550565b6000600960019054906101000a900460ff16806119965750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806119ea5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119f85760009050611ae2565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a6e57606460085483611a5d919061270b565b611a6791906129e6565b9050611ae1565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ae057606460075483611ad3919061270b565b611add91906129e6565b90505b5b5b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b3b578060026000828254611b2f9190612a17565b92505081905550611c0e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611bbe939291906128e0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c575780600260008282540392505081905550611ca4565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d01919061229f565b60405180910390a3505050565b6000600267ffffffffffffffff811115611d2b57611d2a612a4b565b5b604051908082528060200260200182016040528015611d595781602001602082028036833780820191505090505b5090503081600081518110611d7157611d70612a7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3c9190612abe565b81600181518110611e5057611e4f612a7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611eb730600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111fd565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611f1b959493929190612be4565b600060405180830381600087803b158015611f3557600080fd5b505af1158015611f49573d6000803e3d6000fd5b505050505050565b611f7e30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111fd565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611fca610db5565b426040518863ffffffff1660e01b8152600401611fec96959493929190612c3e565b60606040518083038185885af115801561200a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061202f9190612cb4565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612070578082015181840152602081019050612055565b60008484015250505050565b6000601f19601f8301169050919050565b600061209882612036565b6120a28185612041565b93506120b2818560208601612052565b6120bb8161207c565b840191505092915050565b600060208201905081810360008301526120e0818461208d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612118826120ed565b9050919050565b6121288161210d565b811461213357600080fd5b50565b6000813590506121458161211f565b92915050565b6000819050919050565b61215e8161214b565b811461216957600080fd5b50565b60008135905061217b81612155565b92915050565b60008060408385031215612198576121976120e8565b5b60006121a685828601612136565b92505060206121b78582860161216c565b9150509250929050565b60008115159050919050565b6121d6816121c1565b82525050565b60006020820190506121f160008301846121cd565b92915050565b612200816121c1565b811461220b57600080fd5b50565b60008135905061221d816121f7565b92915050565b600060208284031215612239576122386120e8565b5b60006122478482850161220e565b91505092915050565b60008060408385031215612267576122666120e8565b5b600061227585828601612136565b92505060206122868582860161220e565b9150509250929050565b6122998161214b565b82525050565b60006020820190506122b46000830184612290565b92915050565b6000806000606084860312156122d3576122d26120e8565b5b60006122e186828701612136565b93505060206122f286828701612136565b92505060406123038682870161216c565b9150509250925092565b600060208284031215612323576123226120e8565b5b60006123318482850161216c565b91505092915050565b600060ff82169050919050565b6123508161233a565b82525050565b600060208201905061236b6000830184612347565b92915050565b600060208284031215612387576123866120e8565b5b600061239584828501612136565b91505092915050565b6000819050919050565b60006123c36123be6123b9846120ed565b61239e565b6120ed565b9050919050565b60006123d5826123a8565b9050919050565b60006123e7826123ca565b9050919050565b6123f7816123dc565b82525050565b600060208201905061241260008301846123ee565b92915050565b6124218161210d565b82525050565b600060208201905061243c6000830184612418565b92915050565b600061244d826123ca565b9050919050565b61245d81612442565b82525050565b60006020820190506124786000830184612454565b92915050565b60008060408385031215612495576124946120e8565b5b60006124a38582860161216c565b92505060206124b48582860161216c565b9150509250929050565b600080604083850312156124d5576124d46120e8565b5b60006124e385828601612136565b92505060206124f485828601612136565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254557607f821691505b602082108103612558576125576124fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156125e4578086048111156125c0576125bf61255e565b5b60018516156125cf5780820291505b80810290506125dd8561258d565b94506125a4565b94509492505050565b6000826125fd57600190506126b9565b8161260b57600090506126b9565b8160018114612621576002811461262b5761265a565b60019150506126b9565b60ff84111561263d5761263c61255e565b5b8360020a9150848211156126545761265361255e565b5b506126b9565b5060208310610133831016604e8410600b841016171561268f5782820a90508381111561268a5761268961255e565b5b6126b9565b61269c848484600161259a565b925090508184048111156126b3576126b261255e565b5b81810290505b9392505050565b60006126cb8261214b565b91506126d68361233a565b92506127037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846125ed565b905092915050565b60006127168261214b565b91506127218361214b565b925082820261272f8161214b565b915082820484148315176127465761274561255e565b5b5092915050565b7f5061697220616c72656164792061646465640000000000000000000000000000600082015250565b6000612783601283612041565b915061278e8261274d565b602082019050919050565b600060208201905081810360008301526127b281612776565b9050919050565b7f50616972206e6f74206164646564000000000000000000000000000000000000600082015250565b60006127ef600e83612041565b91506127fa826127b9565b602082019050919050565b6000602082019050818103600083015261281e816127e2565b9050919050565b7f4e657720746178207261746573206d757374206265206c657373206f7220657160008201527f75616c207468616e207468652063757272656e74207261746573000000000000602082015250565b6000612881603a83612041565b915061288c82612825565b604082019050919050565b600060208201905081810360008301526128b081612874565b9050919050565b60006040820190506128cc6000830185612290565b6128d96020830184612290565b9392505050565b60006060820190506128f56000830186612418565b6129026020830185612290565b61290f6040830184612290565b949350505050565b7f546f6b656e3a20626c61636b6c69737465642061646472657373000000000000600082015250565b600061294d601a83612041565b915061295882612917565b602082019050919050565b6000602082019050818103600083015261297c81612940565b9050919050565b600061298e8261214b565b91506129998361214b565b92508282039050818111156129b1576129b061255e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006129f18261214b565b91506129fc8361214b565b925082612a0c57612a0b6129b7565b5b828204905092915050565b6000612a228261214b565b9150612a2d8361214b565b9250828201905080821115612a4557612a4461255e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ab88161211f565b92915050565b600060208284031215612ad457612ad36120e8565b5b6000612ae284828501612aa9565b91505092915050565b6000819050919050565b6000612b10612b0b612b0684612aeb565b61239e565b61214b565b9050919050565b612b2081612af5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b5b8161210d565b82525050565b6000612b6d8383612b52565b60208301905092915050565b6000602082019050919050565b6000612b9182612b26565b612b9b8185612b31565b9350612ba683612b42565b8060005b83811015612bd7578151612bbe8882612b61565b9750612bc983612b79565b925050600181019050612baa565b5085935050505092915050565b600060a082019050612bf96000830188612290565b612c066020830187612b17565b8181036040830152612c188186612b86565b9050612c276060830185612418565b612c346080830184612290565b9695505050505050565b600060c082019050612c536000830189612418565b612c606020830188612290565b612c6d6040830187612b17565b612c7a6060830186612b17565b612c876080830185612418565b612c9460a0830184612290565b979650505050505050565b600081519050612cae81612155565b92915050565b600080600060608486031215612ccd57612ccc6120e8565b5b6000612cdb86828701612c9f565b9350506020612cec86828701612c9f565b9250506040612cfd86828701612c9f565b915050925092509256fea26469706673582212205b71b0b1c9bdcf62ee9b3f236fdcbad5a0f28c09854457b090d32e671f10018664736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000001406f400000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a43727970746f436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434c554200000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): CryptoClub
Arg [1] : symbol (string): CLUB
Arg [2] : _buyTaxRate (uint256): 1
Arg [3] : _sellTaxRate (uint256): 2
Arg [4] : supply_ (uint256): 21000000
Arg [5] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [6] : _taxTokenThreshold (uint256): 1
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000001406f40
Arg [5] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 43727970746f436c756200000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 434c554200000000000000000000000000000000000000000000000000000000
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.