ERC-20
Overview
Max Total Supply
50,000,000 CGI
Holders
63
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
798,697.815749029340415706 CGIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CGI
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-05-22 */ /* WEBSITE: https://site.chaingameisland.fun/ PLAY NOW: https://chaingameisland.fun/play/ COMMUNITY: https://t.me/ChainGameIslandCGI */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @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); } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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) virtual 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); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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); } } // File: contracts/token11.sol pragma solidity >=0.8.18; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract CGI is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public CGIOperations; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public buyFees; uint256 public sellFees; bool public swapping; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; bool public transferDelayEnabled = true; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => uint256) private _holderLastTransferTimestamp; mapping(address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor() ERC20("ChainGameIsland", "CGI") Ownable(msg.sender) { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); buyFees = 10; sellFees = 30; uint256 totalSupply = 50_000_000 * 1e18; maxTransactionAmount = (totalSupply * 2) / 100; // 2% maxWallet = (totalSupply * 2) / 100; // 2% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet CGIOperations = address(0x4Cf720c3afd687dD20F4b60ccffbdb8EC798B784); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); _mint(msg.sender, totalSupply); } receive() external payable {} function startTrading() external onlyOwner { tradingActive = true; } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _buyFees ) external onlyOwner { buyFees = _buyFees; require(buyFees <= 10, "Must keep buy fees at 10% or less"); } function updateSellFees( uint256 _sellFees ) external onlyOwner { sellFees = _sellFees; require(sellFees <= 30, "Must keep sell fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function _transfer( address from, address to, uint256 amount ) internal override { if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && !swapping ) { if (!tradingActive) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to],"Trading is not active."); } if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one purchase per tx per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet,"Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; _swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellFees > 0) { fees = amount * sellFees / 100; } else if (automatedMarketMakerPairs[from] && buyFees > 0) { fees = amount * buyFees / 100; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function _swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); try uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ){} catch{ } } function _swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount) { contractBalance = swapTokensAtAmount; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; _swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance - initialETHBalance; (success, ) = address(CGIOperations).call{value: ethBalance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","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":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CGIOperations","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapping","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFees","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600c805464ffffffff00191664010100010017905534801562000025575f80fd5b50336040518060400160405280600f81526020016e10da185a5b91d85b59525cdb185b99608a1b8152506040518060400160405280600381526020016243474960e81b81525081600390816200007c9190620006e6565b5060046200008b8282620006e6565b5050506001600160a01b038116620000bd57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000c8816200036a565b50737a250d5630b4cf539739df2c5dacb4c659f2488d620000eb816001620003bb565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000134573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200015a9190620007ae565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001cc9190620007ae565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000217573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200023d9190620007ae565b6001600160a01b031660a081905262000258906001620003bb565b60a05162000268906001620003ef565b600a8055601e600b556a295be96e6406697200000060646200028c826002620007f1565b62000298919062000811565b6007556064620002aa826002620007f1565b620002b6919062000811565b600955612710620002c9826005620007f1565b620002d5919062000811565b600855600680546001600160a01b031916734cf720c3afd687dd20f4b60ccffbdb8ec798b7841790556200031d620003156005546001600160a01b031690565b600162000442565b6200032a30600162000442565b62000349620003416005546001600160a01b031690565b6001620003bb565b62000356306001620003bb565b620003623382620004aa565b505062000847565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620003c5620004e6565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200044c620004e6565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004d55760405163ec442f0560e01b81525f6004820152602401620000b4565b620004e25f838362000517565b5050565b6005546001600160a01b03163314620005155760405163118cdaa760e01b8152336004820152602401620000b4565b565b6001600160a01b03831662000545578060025f82825462000539919062000831565b90915550620005b79050565b6001600160a01b0383165f9081526020819052604090205481811015620005995760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000b4565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620005d557600280548290039055620005f3565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200063991815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200066f57607f821691505b6020821081036200068e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006e1575f81815260208120601f850160051c81016020861015620006bc5750805b601f850160051c820191505b81811015620006dd57828155600101620006c8565b5050505b505050565b81516001600160401b0381111562000702576200070262000646565b6200071a816200071384546200065a565b8462000694565b602080601f83116001811462000750575f8415620007385750858301515b5f19600386901b1c1916600185901b178555620006dd565b5f85815260208120601f198616915b8281101562000780578886015182559484019460019091019084016200075f565b50858210156200079e57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007bf575f80fd5b81516001600160a01b0381168114620007d6575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200080b576200080b620007dd565b92915050565b5f826200082c57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200080b576200080b620007dd565b60805160a0516117236200088c5f395f81816103300152610b3001525f818161025e01528181610af2015281816112b70152818161136e01526113aa01526117235ff3fe6080604052600436106101e9575f3560e01c80637571336a11610108578063c876d0b91161009d578063e2f456051161006d578063e2f45605146105b3578063e4748b9e146105c8578063eba4c333146105dd578063f2fde38b146105fc578063f8b45b051461061b575f80fd5b8063c876d0b914610524578063c8c8ebe414610545578063dd62ed3e1461055a578063e0f3ccf51461059e575f80fd5b8063a9059cbb116100d8578063a9059cbb14610499578063b62496f5146104b8578063bbc0c742146104e6578063c024666814610505575f80fd5b80637571336a1461042a5780638da5cb5b14610449578063924de9b71461046657806395d89b4114610485575f80fd5b806349bd5a5e1161017e57806370a082311161014e57806370a08231146103af578063715018a6146103e357806371fc4688146103f7578063751039fc14610416575f80fd5b806349bd5a5e1461031f5780634a62bb651461035257806364125367146103705780636ddd17131461038f575f80fd5b806318160ddd116101b957806318160ddd146102b157806323b872dd146102cf578063293230b8146102ee578063313ce56714610304575f80fd5b806306fdde03146101f4578063095ea7b31461021e5780631694505e1461024d5780631732cded14610298575f80fd5b366101f057005b5f80fd5b3480156101ff575f80fd5b50610208610630565b6040516102159190611410565b60405180910390f35b348015610229575f80fd5b5061023d61023836600461146f565b6106c0565b6040519015158152602001610215565b348015610258575f80fd5b506102807f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102a3575f80fd5b50600c5461023d9060ff1681565b3480156102bc575f80fd5b506002545b604051908152602001610215565b3480156102da575f80fd5b5061023d6102e9366004611499565b6106d9565b3480156102f9575f80fd5b506103026106fc565b005b34801561030f575f80fd5b5060405160128152602001610215565b34801561032a575f80fd5b506102807f000000000000000000000000000000000000000000000000000000000000000081565b34801561035d575f80fd5b50600c5461023d90610100900460ff1681565b34801561037b575f80fd5b50600654610280906001600160a01b031681565b34801561039a575f80fd5b50600c5461023d906301000000900460ff1681565b3480156103ba575f80fd5b506102c16103c93660046114d7565b6001600160a01b03165f9081526020819052604090205490565b3480156103ee575f80fd5b50610302610717565b348015610402575f80fd5b506103026104113660046114f9565b61072a565b348015610421575f80fd5b5061023d610798565b348015610435575f80fd5b50610302610444366004611524565b6107b2565b348015610454575f80fd5b506005546001600160a01b0316610280565b348015610471575f80fd5b50610302610480366004611557565b6107e4565b348015610490575f80fd5b5061020861080a565b3480156104a4575f80fd5b5061023d6104b336600461146f565b610819565b3480156104c3575f80fd5b5061023d6104d23660046114d7565b60106020525f908152604090205460ff1681565b3480156104f1575f80fd5b50600c5461023d9062010000900460ff1681565b348015610510575f80fd5b5061030261051f366004611524565b610826565b34801561052f575f80fd5b50600c5461023d90640100000000900460ff1681565b348015610550575f80fd5b506102c160075481565b348015610565575f80fd5b506102c1610574366004611570565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156105a9575f80fd5b506102c1600b5481565b3480156105be575f80fd5b506102c160085481565b3480156105d3575f80fd5b506102c1600a5481565b3480156105e8575f80fd5b506103026105f73660046114f9565b61088c565b348015610607575f80fd5b506103026106163660046114d7565b6108f5565b348015610626575f80fd5b506102c160095481565b60606003805461063f906115a7565b80601f016020809104026020016040519081016040528092919081815260200182805461066b906115a7565b80156106b65780601f1061068d576101008083540402835291602001916106b6565b820191905f5260205f20905b81548152906001019060200180831161069957829003601f168201915b5050505050905090565b5f336106cd81858561092f565b60019150505b92915050565b5f336106e6858285610941565b6106f18585856109bc565b506001949350505050565b610704610ef4565b600c805462ff0000191662010000179055565b61071f610ef4565b6107285f610f21565b565b610732610ef4565b600a8181558111156107955760405162461bcd60e51b815260206004820152602160248201527f4d757374206b65657020627579206665657320617420313025206f72206c65736044820152607360f81b60648201526084015b60405180910390fd5b50565b5f6107a1610ef4565b50600c805461ff0019169055600190565b6107ba610ef4565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b6107ec610ef4565b600c805491151563010000000263ff00000019909216919091179055565b60606004805461063f906115a7565b5f336106cd8185856109bc565b61082e610ef4565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610894610ef4565b600b819055601e8111156107955760405162461bcd60e51b815260206004820152602260248201527f4d757374206b6565702073656c6c206665657320617420333025206f72206c65604482015261737360f01b606482015260840161078c565b6108fd610ef4565b6001600160a01b03811661092657604051631e4fbdf760e01b81525f600482015260240161078c565b61079581610f21565b61093c8383836001610f72565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146109b657818110156109a857604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161078c565b6109b684848484035f610f72565b50505050565b805f036109ce5761093c83835f611044565b600c54610100900460ff1615610d0a576005546001600160a01b03848116911614801590610a0a57506005546001600160a01b03838116911614155b8015610a1e57506001600160a01b03821615155b8015610a2d5750600c5460ff16155b15610d0a57600c5462010000900460ff16610ac4576001600160a01b0383165f908152600d602052604090205460ff1680610a7f57506001600160a01b0382165f908152600d602052604090205460ff165b610ac45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078c565b600c54640100000000900460ff1615610bed576005546001600160a01b03838116911614801590610b2757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015610b6557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15610bed57325f908152600f60205260409020544311610bdb5760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c79206f6e65207075726368617365207065722074782070657220626c6f60448201526a31b59030b63637bbb2b21760a91b606482015260840161078c565b325f908152600f602052604090204390555b6001600160a01b0383165f9081526010602052604090205460ff168015610c2c57506001600160a01b0382165f908152600e602052604090205460ff16155b15610d0a57600754811115610ca15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161078c565b6009546001600160a01b0383165f90815260208190526040902054610cc690836115f3565b1115610d0a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078c565b305f9081526020819052604090205460085481108015908190610d365750600c546301000000900460ff165b8015610d455750600c5460ff16155b8015610d6957506001600160a01b0385165f9081526010602052604090205460ff16155b8015610d8d57506001600160a01b0385165f908152600d602052604090205460ff16155b8015610db157506001600160a01b0384165f908152600d602052604090205460ff16155b15610dd657600c805460ff19166001179055610dcb6110a1565b600c805460ff191690555b600c546001600160a01b0386165f908152600d602052604090205460ff91821615911680610e1b57506001600160a01b0385165f908152600d602052604090205460ff165b15610e2357505f5b5f8115610ee0576001600160a01b0386165f9081526010602052604090205460ff168015610e5257505f600b54115b15610e78576064600b5486610e679190611606565b610e71919061161d565b9050610ec2565b6001600160a01b0387165f9081526010602052604090205460ff168015610ea057505f600a54115b15610ec2576064600a5486610eb59190611606565b610ebf919061161d565b90505b8015610ed357610ed3873083611044565b610edd818661163c565b94505b610eeb878787611044565b50505050505050565b6005546001600160a01b031633146107285760405163118cdaa760e01b815233600482015260240161078c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610f9b5760405163e602df0560e01b81525f600482015260240161078c565b6001600160a01b038316610fc457604051634a1406b160e11b81525f600482015260240161078c565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156109b657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161103691815260200190565b60405180910390a350505050565b6001600160a01b03831661106d57604051634b637e8f60e11b81525f600482015260240161078c565b6001600160a01b0382166110965760405163ec442f0560e01b81525f600482015260240161078c565b61093c83838361113c565b305f90815260208190526040812054908181036110bc575050565b6008548211156110cc5760085491505b81476110d782611262565b5f6110e2824761163c565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f811461112d576040519150601f19603f3d011682016040523d82523d5f602084013e611132565b606091505b5050505050505050565b6001600160a01b038316611166578060025f82825461115b91906115f3565b909155506111d69050565b6001600160a01b0383165f90815260208190526040902054818110156111b85760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161078c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166111f257600280548290039055611210565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161125591815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106112955761129561164f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611311573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113359190611663565b816001815181106113485761134861164f565b60200260200101906001600160a01b031690816001600160a01b031681525050611393307f00000000000000000000000000000000000000000000000000000000000000008461092f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906113e79085905f9086903090429060040161167e565b5f604051808303815f87803b1580156113fe575f80fd5b505af192505050801561093c57505050565b5f6020808352835180828501525f5b8181101561143b5785810183015185820160400152820161141f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610795575f80fd5b5f8060408385031215611480575f80fd5b823561148b8161145b565b946020939093013593505050565b5f805f606084860312156114ab575f80fd5b83356114b68161145b565b925060208401356114c68161145b565b929592945050506040919091013590565b5f602082840312156114e7575f80fd5b81356114f28161145b565b9392505050565b5f60208284031215611509575f80fd5b5035919050565b8035801515811461151f575f80fd5b919050565b5f8060408385031215611535575f80fd5b82356115408161145b565b915061154e60208401611510565b90509250929050565b5f60208284031215611567575f80fd5b6114f282611510565b5f8060408385031215611581575f80fd5b823561158c8161145b565b9150602083013561159c8161145b565b809150509250929050565b600181811c908216806115bb57607f821691505b6020821081036115d957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156106d3576106d36115df565b80820281158282048414176106d3576106d36115df565b5f8261163757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106d3576106d36115df565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611673575f80fd5b81516114f28161145b565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156116cc5784516001600160a01b0316835293830193918301916001016116a7565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220461dc6ee15f44f30ae45ec5a03f919ec49f4df448d011e00c43734ae5a5543d964736f6c63430008140033
Deployed Bytecode
0x6080604052600436106101e9575f3560e01c80637571336a11610108578063c876d0b91161009d578063e2f456051161006d578063e2f45605146105b3578063e4748b9e146105c8578063eba4c333146105dd578063f2fde38b146105fc578063f8b45b051461061b575f80fd5b8063c876d0b914610524578063c8c8ebe414610545578063dd62ed3e1461055a578063e0f3ccf51461059e575f80fd5b8063a9059cbb116100d8578063a9059cbb14610499578063b62496f5146104b8578063bbc0c742146104e6578063c024666814610505575f80fd5b80637571336a1461042a5780638da5cb5b14610449578063924de9b71461046657806395d89b4114610485575f80fd5b806349bd5a5e1161017e57806370a082311161014e57806370a08231146103af578063715018a6146103e357806371fc4688146103f7578063751039fc14610416575f80fd5b806349bd5a5e1461031f5780634a62bb651461035257806364125367146103705780636ddd17131461038f575f80fd5b806318160ddd116101b957806318160ddd146102b157806323b872dd146102cf578063293230b8146102ee578063313ce56714610304575f80fd5b806306fdde03146101f4578063095ea7b31461021e5780631694505e1461024d5780631732cded14610298575f80fd5b366101f057005b5f80fd5b3480156101ff575f80fd5b50610208610630565b6040516102159190611410565b60405180910390f35b348015610229575f80fd5b5061023d61023836600461146f565b6106c0565b6040519015158152602001610215565b348015610258575f80fd5b506102807f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102a3575f80fd5b50600c5461023d9060ff1681565b3480156102bc575f80fd5b506002545b604051908152602001610215565b3480156102da575f80fd5b5061023d6102e9366004611499565b6106d9565b3480156102f9575f80fd5b506103026106fc565b005b34801561030f575f80fd5b5060405160128152602001610215565b34801561032a575f80fd5b506102807f00000000000000000000000065cd5aad6653c4fe719cc6919ebfef4f0c78ab4481565b34801561035d575f80fd5b50600c5461023d90610100900460ff1681565b34801561037b575f80fd5b50600654610280906001600160a01b031681565b34801561039a575f80fd5b50600c5461023d906301000000900460ff1681565b3480156103ba575f80fd5b506102c16103c93660046114d7565b6001600160a01b03165f9081526020819052604090205490565b3480156103ee575f80fd5b50610302610717565b348015610402575f80fd5b506103026104113660046114f9565b61072a565b348015610421575f80fd5b5061023d610798565b348015610435575f80fd5b50610302610444366004611524565b6107b2565b348015610454575f80fd5b506005546001600160a01b0316610280565b348015610471575f80fd5b50610302610480366004611557565b6107e4565b348015610490575f80fd5b5061020861080a565b3480156104a4575f80fd5b5061023d6104b336600461146f565b610819565b3480156104c3575f80fd5b5061023d6104d23660046114d7565b60106020525f908152604090205460ff1681565b3480156104f1575f80fd5b50600c5461023d9062010000900460ff1681565b348015610510575f80fd5b5061030261051f366004611524565b610826565b34801561052f575f80fd5b50600c5461023d90640100000000900460ff1681565b348015610550575f80fd5b506102c160075481565b348015610565575f80fd5b506102c1610574366004611570565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156105a9575f80fd5b506102c1600b5481565b3480156105be575f80fd5b506102c160085481565b3480156105d3575f80fd5b506102c1600a5481565b3480156105e8575f80fd5b506103026105f73660046114f9565b61088c565b348015610607575f80fd5b506103026106163660046114d7565b6108f5565b348015610626575f80fd5b506102c160095481565b60606003805461063f906115a7565b80601f016020809104026020016040519081016040528092919081815260200182805461066b906115a7565b80156106b65780601f1061068d576101008083540402835291602001916106b6565b820191905f5260205f20905b81548152906001019060200180831161069957829003601f168201915b5050505050905090565b5f336106cd81858561092f565b60019150505b92915050565b5f336106e6858285610941565b6106f18585856109bc565b506001949350505050565b610704610ef4565b600c805462ff0000191662010000179055565b61071f610ef4565b6107285f610f21565b565b610732610ef4565b600a8181558111156107955760405162461bcd60e51b815260206004820152602160248201527f4d757374206b65657020627579206665657320617420313025206f72206c65736044820152607360f81b60648201526084015b60405180910390fd5b50565b5f6107a1610ef4565b50600c805461ff0019169055600190565b6107ba610ef4565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b6107ec610ef4565b600c805491151563010000000263ff00000019909216919091179055565b60606004805461063f906115a7565b5f336106cd8185856109bc565b61082e610ef4565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610894610ef4565b600b819055601e8111156107955760405162461bcd60e51b815260206004820152602260248201527f4d757374206b6565702073656c6c206665657320617420333025206f72206c65604482015261737360f01b606482015260840161078c565b6108fd610ef4565b6001600160a01b03811661092657604051631e4fbdf760e01b81525f600482015260240161078c565b61079581610f21565b61093c8383836001610f72565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146109b657818110156109a857604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161078c565b6109b684848484035f610f72565b50505050565b805f036109ce5761093c83835f611044565b600c54610100900460ff1615610d0a576005546001600160a01b03848116911614801590610a0a57506005546001600160a01b03838116911614155b8015610a1e57506001600160a01b03821615155b8015610a2d5750600c5460ff16155b15610d0a57600c5462010000900460ff16610ac4576001600160a01b0383165f908152600d602052604090205460ff1680610a7f57506001600160a01b0382165f908152600d602052604090205460ff165b610ac45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078c565b600c54640100000000900460ff1615610bed576005546001600160a01b03838116911614801590610b2757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015610b6557507f00000000000000000000000065cd5aad6653c4fe719cc6919ebfef4f0c78ab446001600160a01b0316826001600160a01b031614155b15610bed57325f908152600f60205260409020544311610bdb5760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c79206f6e65207075726368617365207065722074782070657220626c6f60448201526a31b59030b63637bbb2b21760a91b606482015260840161078c565b325f908152600f602052604090204390555b6001600160a01b0383165f9081526010602052604090205460ff168015610c2c57506001600160a01b0382165f908152600e602052604090205460ff16155b15610d0a57600754811115610ca15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161078c565b6009546001600160a01b0383165f90815260208190526040902054610cc690836115f3565b1115610d0a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078c565b305f9081526020819052604090205460085481108015908190610d365750600c546301000000900460ff165b8015610d455750600c5460ff16155b8015610d6957506001600160a01b0385165f9081526010602052604090205460ff16155b8015610d8d57506001600160a01b0385165f908152600d602052604090205460ff16155b8015610db157506001600160a01b0384165f908152600d602052604090205460ff16155b15610dd657600c805460ff19166001179055610dcb6110a1565b600c805460ff191690555b600c546001600160a01b0386165f908152600d602052604090205460ff91821615911680610e1b57506001600160a01b0385165f908152600d602052604090205460ff165b15610e2357505f5b5f8115610ee0576001600160a01b0386165f9081526010602052604090205460ff168015610e5257505f600b54115b15610e78576064600b5486610e679190611606565b610e71919061161d565b9050610ec2565b6001600160a01b0387165f9081526010602052604090205460ff168015610ea057505f600a54115b15610ec2576064600a5486610eb59190611606565b610ebf919061161d565b90505b8015610ed357610ed3873083611044565b610edd818661163c565b94505b610eeb878787611044565b50505050505050565b6005546001600160a01b031633146107285760405163118cdaa760e01b815233600482015260240161078c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610f9b5760405163e602df0560e01b81525f600482015260240161078c565b6001600160a01b038316610fc457604051634a1406b160e11b81525f600482015260240161078c565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156109b657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161103691815260200190565b60405180910390a350505050565b6001600160a01b03831661106d57604051634b637e8f60e11b81525f600482015260240161078c565b6001600160a01b0382166110965760405163ec442f0560e01b81525f600482015260240161078c565b61093c83838361113c565b305f90815260208190526040812054908181036110bc575050565b6008548211156110cc5760085491505b81476110d782611262565b5f6110e2824761163c565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f811461112d576040519150601f19603f3d011682016040523d82523d5f602084013e611132565b606091505b5050505050505050565b6001600160a01b038316611166578060025f82825461115b91906115f3565b909155506111d69050565b6001600160a01b0383165f90815260208190526040902054818110156111b85760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161078c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166111f257600280548290039055611210565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161125591815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106112955761129561164f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611311573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113359190611663565b816001815181106113485761134861164f565b60200260200101906001600160a01b031690816001600160a01b031681525050611393307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461092f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906113e79085905f9086903090429060040161167e565b5f604051808303815f87803b1580156113fe575f80fd5b505af192505050801561093c57505050565b5f6020808352835180828501525f5b8181101561143b5785810183015185820160400152820161141f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610795575f80fd5b5f8060408385031215611480575f80fd5b823561148b8161145b565b946020939093013593505050565b5f805f606084860312156114ab575f80fd5b83356114b68161145b565b925060208401356114c68161145b565b929592945050506040919091013590565b5f602082840312156114e7575f80fd5b81356114f28161145b565b9392505050565b5f60208284031215611509575f80fd5b5035919050565b8035801515811461151f575f80fd5b919050565b5f8060408385031215611535575f80fd5b82356115408161145b565b915061154e60208401611510565b90509250929050565b5f60208284031215611567575f80fd5b6114f282611510565b5f8060408385031215611581575f80fd5b823561158c8161145b565b9150602083013561159c8161145b565b809150509250929050565b600181811c908216806115bb57607f821691505b6020821081036115d957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156106d3576106d36115df565b80820281158282048414176106d3576106d36115df565b5f8261163757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106d3576106d36115df565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611673575f80fd5b81516114f28161145b565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156116cc5784516001600160a01b0316835293830193918301916001016116a7565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220461dc6ee15f44f30ae45ec5a03f919ec49f4df448d011e00c43734ae5a5543d964736f6c63430008140033
Deployed Bytecode Sourcemap
26524:6111:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13471:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15764:190;;;;;;;;;;-1:-1:-1;15764:190:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;15764:190:0;1023:187:1;26561:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;26561:51:0;1215:229:1;26857:20:0;;;;;;;;;;-1:-1:-1;26857:20:0;;;;;;;;14573:99;;;;;;;;;;-1:-1:-1;14652:12:0;;14573:99;;;1595:25:1;;;1583:2;1568:18;14573:99:0;1449:177:1;16532:249:0;;;;;;;;;;-1:-1:-1;16532:249:0;;;;;:::i;:::-;;:::i;28559:73::-;;;;;;;;;;;;;:::i;:::-;;14424:84;;;;;;;;;;-1:-1:-1;14424:84:0;;14498:2;2234:36:1;;2222:2;2207:18;14424:84:0;2092:184:1;26616:38:0;;;;;;;;;;;;;;;26881:33;;;;;;;;;;-1:-1:-1;26881:33:0;;;;;;;;;;;26658:28;;;;;;;;;;-1:-1:-1;26658:28:0;;;;-1:-1:-1;;;;;26658:28:0;;;26955:30;;;;;;;;;;-1:-1:-1;26955:30:0;;;;;;;;;;;14735:118;;;;;;;;;;-1:-1:-1;14735:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14827:18:0;14800:7;14827:18;;;;;;;;;;;;14735:118;25154:103;;;;;;;;;;;;;:::i;28992:159::-;;;;;;;;;;-1:-1:-1;28992:159:0;;;;;:::i;:::-;;:::i;28637:106::-;;;;;;;;;;;;;:::i;28748:143::-;;;;;;;;;;-1:-1:-1;28748:143:0;;;;;:::i;:::-;;:::i;24479:87::-;;;;;;;;;;-1:-1:-1;24552:6:0;;-1:-1:-1;;;;;24552:6:0;24479:87;;28896:91;;;;;;;;;;-1:-1:-1;28896:91:0;;;;;:::i;:::-;;:::i;13681:95::-;;;;;;;;;;;;;:::i;15058:182::-;;;;;;;;;;-1:-1:-1;15058:182:0;;;;;:::i;:::-;;:::i;27232:57::-;;;;;;;;;;-1:-1:-1;27232:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26918:33;;;;;;;;;;-1:-1:-1;26918:33:0;;;;;;;;;;;29326:167;;;;;;;;;;-1:-1:-1;29326:167:0;;;;;:::i;:::-;;:::i;26989:39::-;;;;;;;;;;-1:-1:-1;26989:39:0;;;;;;;;;;;26692:35;;;;;;;;;;;;;;;;15303:142;;;;;;;;;;-1:-1:-1;15303:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;15410:18:0;;;15383:7;15410:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15303:142;26825:23;;;;;;;;;;;;;;;;26731:33;;;;;;;;;;;;;;;;26799:22;;;;;;;;;;;;;;;;29156:165;;;;;;;;;;-1:-1:-1;29156:165:0;;;;;:::i;:::-;;:::i;25412:220::-;;;;;;;;;;-1:-1:-1;25412:220:0;;;;;:::i;:::-;;:::i;26768:24::-;;;;;;;;;;;;;;;;13471:91;13516:13;13549:5;13542:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13471:91;:::o;15764:190::-;15837:4;11286:10;15893:31;11286:10;15909:7;15918:5;15893:8;:31::i;:::-;15942:4;15935:11;;;15764:190;;;;;:::o;16532:249::-;16619:4;11286:10;16677:37;16693:4;11286:10;16708:5;16677:15;:37::i;:::-;16725:26;16735:4;16741:2;16745:5;16725:9;:26::i;:::-;-1:-1:-1;16769:4:0;;16532:249;-1:-1:-1;;;;16532:249:0:o;28559:73::-;24365:13;:11;:13::i;:::-;28607::::1;:20:::0;;-1:-1:-1;;28607:20:0::1;::::0;::::1;::::0;;28559:73::o;25154:103::-;24365:13;:11;:13::i;:::-;25219:30:::1;25246:1;25219:18;:30::i;:::-;25154:103::o:0;28992:159::-;24365:13;:11;:13::i;:::-;29064:7:::1;:18:::0;;;29095:13;::::1;;29087:59;;;::::0;-1:-1:-1;;;29087:59:0;;4576:2:1;29087:59:0::1;::::0;::::1;4558:21:1::0;4615:2;4595:18;;;4588:30;4654:34;4634:18;;;4627:62;-1:-1:-1;;;4705:18:1;;;4698:31;4746:19;;29087:59:0::1;;;;;;;;;28992:159:::0;:::o;28637:106::-;28689:4;24365:13;:11;:13::i;:::-;-1:-1:-1;28700:14:0::1;:22:::0;;-1:-1:-1;;28700:22:0::1;::::0;;:14:::1;28637:106:::0;:::o;28748:143::-;24365:13;:11;:13::i;:::-;-1:-1:-1;;;;;28840:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28840:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28748:143::o;28896:91::-;24365:13;:11;:13::i;:::-;28961:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28961:21:0;;::::1;::::0;;;::::1;::::0;;28896:91::o;13681:95::-;13728:13;13761:7;13754:14;;;;;:::i;15058:182::-;15127:4;11286:10;15183:27;11286:10;15200:2;15204:5;15183:9;:27::i;29326:167::-;24365:13;:11;:13::i;:::-;-1:-1:-1;;;;;29405:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29405:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29454:34;;1163:41:1;;;29454:34:0::1;::::0;1136:18:1;29454:34:0::1;;;;;;;29326:167:::0;;:::o;29156:165::-;24365:13;:11;:13::i;:::-;29230:8:::1;:20:::0;;;29275:2:::1;29263:14:::0;::::1;;29255:61;;;::::0;-1:-1:-1;;;29255:61:0;;4978:2:1;29255:61:0::1;::::0;::::1;4960:21:1::0;5017:2;4997:18;;;4990:30;5056:34;5036:18;;;5029:62;-1:-1:-1;;;5107:18:1;;;5100:32;5149:19;;29255:61:0::1;4776:398:1::0;25412:220:0;24365:13;:11;:13::i;:::-;-1:-1:-1;;;;;25497:22:0;::::1;25493:93;;25543:31;::::0;-1:-1:-1;;;25543:31:0;;25571:1:::1;25543:31;::::0;::::1;1387:51:1::0;1360:18;;25543:31:0::1;1215:229:1::0;25493:93:0::1;25596:28;25615:8;25596:18;:28::i;20599:130::-:0;20684:37;20693:5;20700:7;20709:5;20716:4;20684:8;:37::i;:::-;20599:130;;;:::o;22315:487::-;-1:-1:-1;;;;;15410:18:0;;;22415:24;15410:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22482:37:0;;22478:317;;22559:5;22540:16;:24;22536:132;;;22592:60;;-1:-1:-1;;;22592:60:0;;-1:-1:-1;;;;;5399:32:1;;22592:60:0;;;5381:51:1;5448:18;;;5441:34;;;5491:18;;;5484:34;;;5354:18;;22592:60:0;5179:345:1;22536:132:0;22711:57;22720:5;22727:7;22755:5;22736:16;:24;22762:5;22711:8;:57::i;:::-;22404:398;22315:487;;;:::o;29674:1961::-;29777:6;29787:1;29777:11;29773:69;;29796:28;29812:4;29818:2;29822:1;29796:15;:28::i;29773:69::-;29852:14;;;;;;;29848:905;;;24552:6;;-1:-1:-1;;;;;29886:15:0;;;24552:6;;29886:15;;;;:37;;-1:-1:-1;24552:6:0;;-1:-1:-1;;;;;29910:13:0;;;24552:6;;29910:13;;29886:37;:62;;;;-1:-1:-1;;;;;;29932:16:0;;;;29886:62;:80;;;;-1:-1:-1;29958:8:0;;;;29957:9;29886:80;29876:872;;;29987:13;;;;;;;29982:122;;-1:-1:-1;;;;;30018:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30047:23:0;;;;;;:19;:23;;;;;;;;30018:52;30010:86;;;;-1:-1:-1;;;30010:86:0;;5731:2:1;30010:86:0;;;5713:21:1;5770:2;5750:18;;;5743:30;-1:-1:-1;;;5789:18:1;;;5782:52;5851:18;;30010:86:0;5529:346:1;30010:86:0;30116:20;;;;;;;30112:346;;;24552:6;;-1:-1:-1;;;;;30158:13:0;;;24552:6;;30158:13;;;;:54;;;30196:15;-1:-1:-1;;;;;30182:30:0;:2;-1:-1:-1;;;;;30182:30:0;;;30158:54;:93;;;;;30237:13;-1:-1:-1;;;;;30223:28:0;:2;-1:-1:-1;;;;;30223:28:0;;;30158:93;30146:305;;;30306:9;30277:39;;;;:28;:39;;;;;;30319:12;-1:-1:-1;30269:110:0;;;;-1:-1:-1;;;30269:110:0;;6082:2:1;30269:110:0;;;6064:21:1;6121:2;6101:18;;;6094:30;6160:34;6140:18;;;6133:62;-1:-1:-1;;;6211:18:1;;;6204:41;6262:19;;30269:110:0;5880:407:1;30269:110:0;30417:9;30388:39;;;;:28;:39;;;;;30430:12;30388:54;;30146:305;-1:-1:-1;;;;;30477:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;30513:35:0;;;;;;:31;:35;;;;;;;;30512:36;30477:71;30466:276;;;30582:20;;30572:6;:30;;30564:96;;;;-1:-1:-1;;;30564:96:0;;6494:2:1;30564:96:0;;;6476:21:1;6533:2;6513:18;;;6506:30;6572:34;6552:18;;;6545:62;-1:-1:-1;;;6623:18:1;;;6616:51;6684:19;;30564:96:0;6292:417:1;30564:96:0;30702:9;;-1:-1:-1;;;;;14827:18:0;;14800:7;14827:18;;;;;;;;;;;30676:22;;:6;:22;:::i;:::-;:35;;30668:66;;;;-1:-1:-1;;;30668:66:0;;7178:2:1;30668:66:0;;;7160:21:1;7217:2;7197:18;;;7190:30;-1:-1:-1;;;7236:18:1;;;7229:49;7295:18;;30668:66:0;6976:343:1;30668:66:0;30808:4;30759:28;14827:18;;;;;;;;;;;30860;;30836:42;;;;;;;30894:26;;-1:-1:-1;30909:11:0;;;;;;;30894:26;:43;;;;-1:-1:-1;30929:8:0;;;;30928:9;30894:43;:83;;;;-1:-1:-1;;;;;;30946:31:0;;;;;;:25;:31;;;;;;;;30945:32;30894:83;:117;;;;-1:-1:-1;;;;;;30986:25:0;;;;;;:19;:25;;;;;;;;30985:26;30894:117;:149;;;;-1:-1:-1;;;;;;31020:23:0;;;;;;:19;:23;;;;;;;;31019:24;30894:149;30885:234;;;31055:8;:15;;-1:-1:-1;;31055:15:0;31066:4;31055:15;;;31078:11;:9;:11::i;:::-;31097:8;:16;;-1:-1:-1;;31097:16:0;;;30885:234;31141:8;;-1:-1:-1;;;;;31160:25:0;;31125:12;31160:25;;;:19;:25;;;;;;31141:8;;;;31140:9;;31160:25;;:52;;-1:-1:-1;;;;;;31189:23:0;;;;;;:19;:23;;;;;;;;31160:52;31156:85;;;-1:-1:-1;31230:5:0;31156:85;31247:12;31272:7;31268:323;;;-1:-1:-1;;;;;31291:29:0;;;;;;:25;:29;;;;;;;;:45;;;;;31335:1;31324:8;;:12;31291:45;31287:200;;;31372:3;31361:8;;31352:6;:17;;;;:::i;:::-;:23;;;;:::i;:::-;31345:30;;31287:200;;;-1:-1:-1;;;;;31396:31:0;;;;;;:25;:31;;;;;;;;:46;;;;;31441:1;31431:7;;:11;31396:46;31392:95;;;31477:3;31467:7;;31458:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;31451:29;;31392:95;31498:8;;31494:70;;31515:42;31531:4;31545;31552;31515:15;:42::i;:::-;31571:14;31581:4;31571:14;;:::i;:::-;;;31268:323;31597:33;31613:4;31619:2;31623:6;31597:15;:33::i;:::-;29766:1869;;;;29674:1961;;;:::o;24644:166::-;24552:6;;-1:-1:-1;;;;;24552:6:0;11286:10;24704:23;24700:103;;24751:40;;-1:-1:-1;;;24751:40:0;;11286:10;24751:40;;;1387:51:1;1360:18;;24751:40:0;1215:229:1;25792:191:0;25885:6;;;-1:-1:-1;;;;;25902:17:0;;;-1:-1:-1;;;;;;25902:17:0;;;;;;;25935:40;;25885:6;;;25902:17;25885:6;;25935:40;;25866:16;;25935:40;25855:128;25792:191;:::o;21580:443::-;-1:-1:-1;;;;;21693:19:0;;21689:91;;21736:32;;-1:-1:-1;;;21736:32:0;;21765:1;21736:32;;;1387:51:1;1360:18;;21736:32:0;1215:229:1;21689:91:0;-1:-1:-1;;;;;21794:21:0;;21790:92;;21839:31;;-1:-1:-1;;;21839:31:0;;21867:1;21839:31;;;1387:51:1;1360:18;;21839:31:0;1215:229:1;21790:92:0;-1:-1:-1;;;;;21892:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21938:78;;;;21989:7;-1:-1:-1;;;;;21973:31:0;21982:5;-1:-1:-1;;;;;21973:31:0;;21998:5;21973:31;;;;1595:25:1;;1583:2;1568:18;;1449:177;21973:31:0;;;;;;;;21580:443;;;;:::o;17166:316::-;-1:-1:-1;;;;;17258:18:0;;17254:88;;17300:30;;-1:-1:-1;;;17300:30:0;;17327:1;17300:30;;;1387:51:1;1360:18;;17300:30:0;1215:229:1;17254:88:0;-1:-1:-1;;;;;17356:16:0;;17352:88;;17396:32;;-1:-1:-1;;;17396:32:0;;17425:1;17396:32;;;1387:51:1;1360:18;;17396:32:0;1215:229:1;17352:88:0;17450:24;17458:4;17464:2;17468:5;17450:7;:24::i;32087:543::-;32165:4;32121:23;14827:18;;;;;;;;;;;;32199:20;;;32195:44;;32227:7;;32087:543::o;32195:44::-;32267:18;;32249:15;:36;32245:90;;;32311:18;;32293:36;;32245:90;32370:15;32420:21;32448:37;32370:15;32448:17;:37::i;:::-;32492:18;32513:41;32537:17;32513:21;:41;:::i;:::-;32583:13;;32575:50;;32492:62;;-1:-1:-1;;;;;;32583:13:0;;32492:62;;32575:50;;;;32492:62;32583:13;32575:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;32087:543:0:o;17806:1135::-;-1:-1:-1;;;;;17896:18:0;;17892:552;;18050:5;18034:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17892:552:0;;-1:-1:-1;17892:552:0;;-1:-1:-1;;;;;18110:15:0;;18088:19;18110:15;;;;;;;;;;;18144:19;;;18140:117;;;18191:50;;-1:-1:-1;;;18191:50:0;;-1:-1:-1;;;;;5399:32:1;;18191:50:0;;;5381:51:1;5448:18;;;5441:34;;;5491:18;;;5484:34;;;5354:18;;18191:50:0;5179:345:1;18140:117:0;-1:-1:-1;;;;;18380:15:0;;:9;:15;;;;;;;;;;18398:19;;;;18380:37;;17892:552;-1:-1:-1;;;;;18460:16:0;;18456:435;;18626:12;:21;;;;;;;18456:435;;;-1:-1:-1;;;;;18842:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18456:435;18923:2;-1:-1:-1;;;;;18908:25:0;18917:4;-1:-1:-1;;;;;18908:25:0;;18927:5;18908:25;;;;1595::1;;1583:2;1568:18;;1449:177;18908:25:0;;;;;;;;17806:1135;;;:::o;31640:442::-;31725:16;;;31739:1;31725:16;;;;;;;;31701:21;;31725:16;;;;;;;;;;-1:-1:-1;31725:16:0;31701:40;;31764:4;31746;31751:1;31746:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31746:23:0;;;-1:-1:-1;;;;;31746:23:0;;;;;31784:15;-1:-1:-1;;;;;31784:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31774:4;31779:1;31774:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;31774:32:0;;;-1:-1:-1;;;;;31774:32:0;;;;;31813:62;31830:4;31845:15;31863:11;31813:8;:62::i;:::-;31886:146;;-1:-1:-1;;;31886:146:0;;-1:-1:-1;;;;;31886:15:0;:66;;;;:146;;31958:11;;31975:1;;31982:4;;32000;;32011:15;;31886:146;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31696:386;31640:442;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;:::-;2725:5;2489:247;-1:-1:-1;;;2489:247:1:o;2741:180::-;2800:6;2853:2;2841:9;2832:7;2828:23;2824:32;2821:52;;;2869:1;2866;2859:12;2821:52;-1:-1:-1;2892:23:1;;2741:180;-1:-1:-1;2741:180:1:o;2926:160::-;2991:20;;3047:13;;3040:21;3030:32;;3020:60;;3076:1;3073;3066:12;3020:60;2926:160;;;:::o;3091:315::-;3156:6;3164;3217:2;3205:9;3196:7;3192:23;3188:32;3185:52;;;3233:1;3230;3223:12;3185:52;3272:9;3259:23;3291:31;3316:5;3291:31;:::i;:::-;3341:5;-1:-1:-1;3365:35:1;3396:2;3381:18;;3365:35;:::i;:::-;3355:45;;3091:315;;;;;:::o;3411:180::-;3467:6;3520:2;3508:9;3499:7;3495:23;3491:32;3488:52;;;3536:1;3533;3526:12;3488:52;3559:26;3575:9;3559:26;:::i;3596:388::-;3664:6;3672;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3780:9;3767:23;3799:31;3824:5;3799:31;:::i;:::-;3849:5;-1:-1:-1;3906:2:1;3891:18;;3878:32;3919:33;3878:32;3919:33;:::i;:::-;3971:7;3961:17;;;3596:388;;;;;:::o;3989:380::-;4068:1;4064:12;;;;4111;;;4132:61;;4186:4;4178:6;4174:17;4164:27;;4132:61;4239:2;4231:6;4228:14;4208:18;4205:38;4202:161;;4285:10;4280:3;4276:20;4273:1;4266:31;4320:4;4317:1;4310:15;4348:4;4345:1;4338:15;4202:161;;3989:380;;;:::o;6714:127::-;6775:10;6770:3;6766:20;6763:1;6756:31;6806:4;6803:1;6796:15;6830:4;6827:1;6820:15;6846:125;6911:9;;;6932:10;;;6929:36;;;6945:18;;:::i;7324:168::-;7397:9;;;7428;;7445:15;;;7439:22;;7425:37;7415:71;;7466:18;;:::i;7497:217::-;7537:1;7563;7553:132;;7607:10;7602:3;7598:20;7595:1;7588:31;7642:4;7639:1;7632:15;7670:4;7667:1;7660:15;7553:132;-1:-1:-1;7699:9:1;;7497:217::o;7719:128::-;7786:9;;;7807:11;;;7804:37;;;7821:18;;:::i;8194:127::-;8255:10;8250:3;8246:20;8243:1;8236:31;8286:4;8283:1;8276:15;8310:4;8307:1;8300:15;8326:251;8396:6;8449:2;8437:9;8428:7;8424:23;8420:32;8417:52;;;8465:1;8462;8455:12;8417:52;8497:9;8491:16;8516:31;8541:5;8516:31;:::i;8582:980::-;8844:4;8892:3;8881:9;8877:19;8923:6;8912:9;8905:25;8949:2;8987:6;8982:2;8971:9;8967:18;8960:34;9030:3;9025:2;9014:9;9010:18;9003:31;9054:6;9089;9083:13;9120:6;9112;9105:22;9158:3;9147:9;9143:19;9136:26;;9197:2;9189:6;9185:15;9171:29;;9218:1;9228:195;9242:6;9239:1;9236:13;9228:195;;;9307:13;;-1:-1:-1;;;;;9303:39:1;9291:52;;9398:15;;;;9363:12;;;;9339:1;9257:9;9228:195;;;-1:-1:-1;;;;;;;9479:32:1;;;;9474:2;9459:18;;9452:60;-1:-1:-1;;;9543:3:1;9528:19;9521:35;9440:3;8582:980;-1:-1:-1;;;8582:980:1:o
Swarm Source
ipfs://461dc6ee15f44f30ae45ec5a03f919ec49f4df448d011e00c43734ae5a5543d9
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.