Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
999,999 MBAR
Holders
200
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 Source Code Verified (Exact Match)
Contract Name:
Memecoin_Standard
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; import {IERC20, ERC20} from "./ERC20.sol"; import {ERC20Burnable} from "./ERC20Burnable.sol"; import {Ownable, Ownable2Step} from "./Ownable2Step.sol"; import {Initializable} from "./Initializable.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router01.sol"; import "./IUniswapV2Router02.sol"; contract Memecoin_Standard is ERC20, ERC20Burnable, Ownable2Step, Initializable { IUniswapV2Router02 public routerV2; address public pairV2; mapping (address => bool) public AMMs; error InvalidAMM(address AMM); event RouterV2Updated(address indexed routerV2); event AMMUpdated(address indexed AMM, bool isAMM); event TokensPreAllocated(address[] recipients, uint256[] amounts); uint256 public constant TOTAL_SUPPLY = 999999 * (10 ** 18); constructor(address initialOwner, address[] memory _recipients, uint256[] memory _amounts) ERC20(unicode"Memecoin Standard", unicode"MBAR") Ownable(msg.sender) { // Transfer ownership to the initial owner transferOwnership(initialOwner); // Ensure pre-allocations require(_recipients.length == _amounts.length, "Mismatch between addresses and amounts"); // Pre-allocate tokens to specified addresses for (uint256 i = 0; i < _recipients.length; i++) { _mint(_recipients[i], _amounts[i]); } // Mint the remaining supply to the owner uint256 totalAllocated = 0; for (uint256 i = 0; i < _amounts.length; i++) { totalAllocated += _amounts[i]; } uint256 remainingSupply = TOTAL_SUPPLY - totalAllocated; _mint(initialOwner, remainingSupply); // Emit an event to log pre-allocation emit TokensPreAllocated(_recipients, _amounts); } /* This token is not upgradeable. Function afterConstructor finishes post-deployment setup. */ function afterConstructor(address _router) initializer external { _updateRouterV2(_router); } function decimals() public pure override returns (uint8) { return 18; } function _updateRouterV2(address router) private { routerV2 = IUniswapV2Router02(router); pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH()); _setAMM(router, true); _setAMM(pairV2, true); emit RouterV2Updated(router); } function setAMM(address AMM, bool isAMM) external onlyOwner { if (AMM == pairV2 || AMM == address(routerV2)) revert InvalidAMM(AMM); _setAMM(AMM, isAMM); } function _setAMM(address AMM, bool isAMM) private { AMMs[AMM] = isAMM; if (isAMM) { } emit AMMUpdated(AMM, isAMM); } function _update(address from, address to, uint256 amount) internal override { _beforeTokenUpdate(from, to, amount); super._update(from, to, amount); _afterTokenUpdate(from, to, amount); } function _beforeTokenUpdate(address from, address to, uint256 amount) internal view { } function _afterTokenUpdate(address from, address to, uint256 amount) internal { } }
// 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; } }
// 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 "./IERC20Metadata.sol"; import {Context} from "./Context.sol"; import {IERC20Errors} from "./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/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "./ERC20.sol"; import {Context} from "./Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// 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.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 pragma solidity ^0.8.19; abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: UNLICENSED 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; }
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: UNLICENSED 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); }
// SPDX-License-Identifier: UNLICENSED 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 // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "./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) (access/Ownable2Step.sol) pragma solidity ^0.8.20; import {Ownable} from "./Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } }
{ "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
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"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":"AMM","type":"address"}],"name":"InvalidAMM","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":"AMM","type":"address"},{"indexed":false,"internalType":"bool","name":"isAMM","type":"bool"}],"name":"AMMUpdated","type":"event"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"recipients","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"TokensPreAllocated","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":[{"internalType":"address","name":"","type":"address"}],"name":"AMMs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"afterConstructor","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"AMM","type":"address"},{"internalType":"bool","name":"isAMM","type":"bool"}],"name":"setAMM","outputs":[],"stateMutability":"nonpayable","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":[{"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002f4d38038062002f4d833981810160405281019062000037919062000b63565b336040518060400160405280601181526020017f4d656d65636f696e205374616e646172640000000000000000000000000000008152506040518060400160405280600481526020017f4d424152000000000000000000000000000000000000000000000000000000008152508160039081620000b5919062000e3e565b508060049081620000c7919062000e3e565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013f5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000136919062000f36565b60405180910390fd5b6200015081620002cf60201b60201c565b5062000162836200030860201b60201c565b8051825114620001a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a09062000fda565b60405180910390fd5b60005b8251811015620002105762000202838281518110620001d057620001cf62000ffc565b5b6020026020010151838381518110620001ee57620001ed62000ffc565b5b6020026020010151620003c560201b60201c565b8080600101915050620001ac565b506000805b82518110156200025a5782818151811062000235576200023462000ffc565b5b6020026020010151826200024a91906200105a565b9150808060010191505062000215565b5060008169d3c20dee1639f99c000062000275919062001095565b9050620002898582620003c560201b60201c565b7f05636b2dfbccfa3732a938b87744aed10671a00c3735e9481b0f05d4a83c96368484604051620002bc9291906200126c565b60405180910390a1505050505062001312565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905562000305816200045260201b60201c565b50565b620003186200051860201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1662000380620005ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200043a5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000431919062000f36565b60405180910390fd5b6200044e60008383620005e460201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005286200062260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200054e620005ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005b8576200057a6200062260201b60201c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620005af919062000f36565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005f78383836200062a60201b60201c565b6200060a8383836200062f60201b60201c565b6200061d8383836200085f60201b60201c565b505050565b600033905090565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620006855780600260008282546200067891906200105a565b925050819055506200075b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000714578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200070b93929190620012b8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007a65780600260008282540392505081905550620007f3565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008529190620012f5565b60405180910390a3505050565b505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008a58262000878565b9050919050565b620008b78162000898565b8114620008c357600080fd5b50565b600081519050620008d781620008ac565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200092d82620008e2565b810181811067ffffffffffffffff821117156200094f576200094e620008f3565b5b80604052505050565b60006200096462000864565b905062000972828262000922565b919050565b600067ffffffffffffffff821115620009955762000994620008f3565b5b602082029050602081019050919050565b600080fd5b6000620009c2620009bc8462000977565b62000958565b90508083825260208201905060208402830185811115620009e857620009e7620009a6565b5b835b8181101562000a15578062000a008882620008c6565b845260208401935050602081019050620009ea565b5050509392505050565b600082601f83011262000a375762000a36620008dd565b5b815162000a49848260208601620009ab565b91505092915050565b600067ffffffffffffffff82111562000a705762000a6f620008f3565b5b602082029050602081019050919050565b6000819050919050565b62000a968162000a81565b811462000aa257600080fd5b50565b60008151905062000ab68162000a8b565b92915050565b600062000ad362000acd8462000a52565b62000958565b9050808382526020820190506020840283018581111562000af95762000af8620009a6565b5b835b8181101562000b26578062000b11888262000aa5565b84526020840193505060208101905062000afb565b5050509392505050565b600082601f83011262000b485762000b47620008dd565b5b815162000b5a84826020860162000abc565b91505092915050565b60008060006060848603121562000b7f5762000b7e6200086e565b5b600062000b8f86828701620008c6565b935050602084015167ffffffffffffffff81111562000bb35762000bb262000873565b5b62000bc18682870162000a1f565b925050604084015167ffffffffffffffff81111562000be55762000be462000873565b5b62000bf38682870162000b30565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c5057607f821691505b60208210810362000c665762000c6562000c08565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cd07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c91565b62000cdc868362000c91565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000d1f62000d1962000d138462000a81565b62000cf4565b62000a81565b9050919050565b6000819050919050565b62000d3b8362000cfe565b62000d5362000d4a8262000d26565b84845462000c9e565b825550505050565b600090565b62000d6a62000d5b565b62000d7781848462000d30565b505050565b5b8181101562000d9f5762000d9360008262000d60565b60018101905062000d7d565b5050565b601f82111562000dee5762000db88162000c6c565b62000dc38462000c81565b8101602085101562000dd3578190505b62000deb62000de28562000c81565b83018262000d7c565b50505b505050565b600082821c905092915050565b600062000e136000198460080262000df3565b1980831691505092915050565b600062000e2e838362000e00565b9150826002028217905092915050565b62000e498262000bfd565b67ffffffffffffffff81111562000e655762000e64620008f3565b5b62000e71825462000c37565b62000e7e82828562000da3565b600060209050601f83116001811462000eb6576000841562000ea1578287015190505b62000ead858262000e20565b86555062000f1d565b601f19841662000ec68662000c6c565b60005b8281101562000ef05784890151825560018201915060208501945060208101905062000ec9565b8683101562000f10578489015162000f0c601f89168262000e00565b8355505b6001600288020188555050505b505050505050565b62000f308162000898565b82525050565b600060208201905062000f4d600083018462000f25565b92915050565b600082825260208201905092915050565b7f4d69736d61746368206265747765656e2061646472657373657320616e64206160008201527f6d6f756e74730000000000000000000000000000000000000000000000000000602082015250565b600062000fc260268362000f53565b915062000fcf8262000f64565b604082019050919050565b6000602082019050818103600083015262000ff58162000fb3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010678262000a81565b9150620010748362000a81565b92508282019050808211156200108f576200108e6200102b565b5b92915050565b6000620010a28262000a81565b9150620010af8362000a81565b9250828203905081811115620010ca57620010c96200102b565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620011078162000898565b82525050565b60006200111b8383620010fc565b60208301905092915050565b6000602082019050919050565b60006200114182620010d0565b6200114d8185620010db565b93506200115a83620010ec565b8060005b83811015620011915781516200117588826200110d565b9750620011828362001127565b9250506001810190506200115e565b5085935050505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620011d58162000a81565b82525050565b6000620011e98383620011ca565b60208301905092915050565b6000602082019050919050565b60006200120f826200119e565b6200121b8185620011a9565b93506200122883620011ba565b8060005b838110156200125f578151620012438882620011db565b97506200125083620011f5565b9250506001810190506200122c565b5085935050505092915050565b6000604082019050818103600083015262001288818562001134565b905081810360208301526200129e818462001202565b90509392505050565b620012b28162000a81565b82525050565b6000606082019050620012cf600083018662000f25565b620012de6020830185620012a7565b620012ed6040830184620012a7565b949350505050565b60006020820190506200130c6000830184620012a7565b92915050565b611c2b80620013226000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806379ba5097116100b857806395d89b411161007c57806395d89b4114610341578063a9059cbb1461035f578063a9d3cd8a1461038f578063dd62ed3e146103ab578063e30c3978146103db578063f2fde38b146103f957610142565b806379ba5097146102c157806379cc6790146102cb5780638da5cb5b146102e75780638fffabed14610305578063902d55a51461032357610142565b806323b872dd1161010a57806323b872dd146101ff578063313ce5671461022f57806342966c681461024d578063502f74461461026957806370a0823114610287578063715018a6146102b757610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806318533a0d146101b35780631e9fe6c6146101cf575b600080fd5b61014f610415565b60405161015c919061166f565b60405180910390f35b61017f600480360381019061017a919061172a565b6104a7565b60405161018c9190611785565b60405180910390f35b61019d6104ca565b6040516101aa91906117af565b60405180910390f35b6101cd60048036038101906101c891906117ca565b6104d4565b005b6101e960048036038101906101e491906117ca565b6105bc565b6040516101f69190611785565b60405180910390f35b610219600480360381019061021491906117f7565b6105dc565b6040516102269190611785565b60405180910390f35b61023761060b565b6040516102449190611866565b60405180910390f35b61026760048036038101906102629190611881565b610614565b005b610271610628565b60405161027e919061190d565b60405180910390f35b6102a1600480360381019061029c91906117ca565b61064e565b6040516102ae91906117af565b60405180910390f35b6102bf610696565b005b6102c96106aa565b005b6102e560048036038101906102e0919061172a565b610739565b005b6102ef610759565b6040516102fc9190611937565b60405180910390f35b61030d610783565b60405161031a9190611937565b60405180910390f35b61032b6107a9565b60405161033891906117af565b60405180910390f35b6103496107b7565b604051610356919061166f565b60405180910390f35b6103796004803603810190610374919061172a565b610849565b6040516103869190611785565b60405180910390f35b6103a960048036038101906103a4919061197e565b61086c565b005b6103c560048036038101906103c091906119be565b61096d565b6040516103d291906117af565b60405180910390f35b6103e36109f4565b6040516103f09190611937565b60405180910390f35b610413600480360381019061040e91906117ca565b610a1e565b005b60606003805461042490611a2d565b80601f016020809104026020016040519081016040528092919081815260200182805461045090611a2d565b801561049d5780601f106104725761010080835404028352916020019161049d565b820191906000526020600020905b81548152906001019060200180831161048057829003601f168201915b5050505050905090565b6000806104b2610acb565b90506104bf818585610ad3565b600191505092915050565b6000600254905090565b600660159054906101000a900460ff16806104fc5750600660149054906101000a900460ff16155b61053b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053290611ad0565b60405180910390fd5b6000600660159054906101000a900460ff16159050801561058d576001600660156101000a81548160ff0219169083151502179055506001600660146101000a81548160ff0219169083151502179055505b61059682610ae5565b80156105b8576000600660156101000a81548160ff0219169083151502179055505b5050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000806105e7610acb565b90506105f4858285610d82565b6105ff858585610e16565b60019150509392505050565b60006012905090565b61062561061f610acb565b82610f0a565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61069e610f8c565b6106a86000611013565b565b60006106b4610acb565b90508073ffffffffffffffffffffffffffffffffffffffff166106d56109f4565b73ffffffffffffffffffffffffffffffffffffffff161461072d57806040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107249190611937565b60405180910390fd5b61073681611013565b50565b61074b82610745610acb565b83610d82565b6107558282610f0a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b69d3c20dee1639f99c000081565b6060600480546107c690611a2d565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611a2d565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b600080610854610acb565b9050610861818585610e16565b600191505092915050565b610874610f8c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061091d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561095f57816040517f86bd5ef60000000000000000000000000000000000000000000000000000000081526004016109569190611937565b60405180910390fd5b6109698282611044565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a26610f8c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610a86610759565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600033905090565b610ae083838360016110ed565b505050565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb79190611b05565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c649190611b05565b6040518363ffffffff1660e01b8152600401610c81929190611b32565b6020604051808303816000875af1158015610ca0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc49190611b05565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d0f816001611044565b610d3c600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611044565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b6000610d8e848461096d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e105781811015610e00578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610df793929190611b5b565b60405180910390fd5b610e0f848484840360006110ed565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e885760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e7f9190611937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610efa5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ef19190611937565b60405180910390fd5b610f058383836112c4565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7c5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f739190611937565b60405180910390fd5b610f88826000836112c4565b5050565b610f94610acb565b73ffffffffffffffffffffffffffffffffffffffff16610fb2610759565b73ffffffffffffffffffffffffffffffffffffffff161461101157610fd5610acb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110089190611937565b60405180910390fd5b565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055611041816112ea565b50565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f2cc8631dda80fe178488d3174721fafacf84b0f194a7eddae85c9bcc599ac78b826040516110e19190611785565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361115f5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111569190611937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111d15760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111c89190611937565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156112be578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112b591906117af565b60405180910390a35b50505050565b6112cf8383836113b0565b6112da8383836113b5565b6112e58383836115da565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114075780600260008282546113fb9190611bc1565b925050819055506114da565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611493578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161148a93929190611b5b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115235780600260008282540392505081905550611570565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115cd91906117af565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116195780820151818401526020810190506115fe565b60008484015250505050565b6000601f19601f8301169050919050565b6000611641826115df565b61164b81856115ea565b935061165b8185602086016115fb565b61166481611625565b840191505092915050565b600060208201905081810360008301526116898184611636565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116c182611696565b9050919050565b6116d1816116b6565b81146116dc57600080fd5b50565b6000813590506116ee816116c8565b92915050565b6000819050919050565b611707816116f4565b811461171257600080fd5b50565b600081359050611724816116fe565b92915050565b6000806040838503121561174157611740611691565b5b600061174f858286016116df565b925050602061176085828601611715565b9150509250929050565b60008115159050919050565b61177f8161176a565b82525050565b600060208201905061179a6000830184611776565b92915050565b6117a9816116f4565b82525050565b60006020820190506117c460008301846117a0565b92915050565b6000602082840312156117e0576117df611691565b5b60006117ee848285016116df565b91505092915050565b6000806000606084860312156118105761180f611691565b5b600061181e868287016116df565b935050602061182f868287016116df565b925050604061184086828701611715565b9150509250925092565b600060ff82169050919050565b6118608161184a565b82525050565b600060208201905061187b6000830184611857565b92915050565b60006020828403121561189757611896611691565b5b60006118a584828501611715565b91505092915050565b6000819050919050565b60006118d36118ce6118c984611696565b6118ae565b611696565b9050919050565b60006118e5826118b8565b9050919050565b60006118f7826118da565b9050919050565b611907816118ec565b82525050565b600060208201905061192260008301846118fe565b92915050565b611931816116b6565b82525050565b600060208201905061194c6000830184611928565b92915050565b61195b8161176a565b811461196657600080fd5b50565b60008135905061197881611952565b92915050565b6000806040838503121561199557611994611691565b5b60006119a3858286016116df565b92505060206119b485828601611969565b9150509250929050565b600080604083850312156119d5576119d4611691565b5b60006119e3858286016116df565b92505060206119f4858286016116df565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a4557607f821691505b602082108103611a5857611a576119fe565b5b50919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000611aba602e836115ea565b9150611ac582611a5e565b604082019050919050565b60006020820190508181036000830152611ae981611aad565b9050919050565b600081519050611aff816116c8565b92915050565b600060208284031215611b1b57611b1a611691565b5b6000611b2984828501611af0565b91505092915050565b6000604082019050611b476000830185611928565b611b546020830184611928565b9392505050565b6000606082019050611b706000830186611928565b611b7d60208301856117a0565b611b8a60408301846117a0565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bcc826116f4565b9150611bd7836116f4565b9250828201905080821115611bef57611bee611b92565b5b9291505056fea2646970667358221220a8911276cfbe04ef7bbe1fafd78e091d3e06fed6c5a8199e8e444b16024050b964736f6c63430008180033000000000000000000000000777934b922f8f0e05377e4f42491c441558ff71900000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000001000000000000000000000000063a0a20bd3aa53977c4cbe250cf697b991f80252000000000000000000000000a6bfc18a8f79bcccbe6d7e96d20f567c4a85372c000000000000000000000000ba268e82eecf0500ad0c21b5845efddd1b9a055b0000000000000000000000006df050072db07148d23b3ab7c6e134160bc33e140000000000000000000000008ba078faa80777639b7ffefa638ac9574bf7693e00000000000000000000000087eba7c264bb5dfa60f04008c914a8ee6cf7d09a0000000000000000000000007d866a390ce070855fb8cece58837044130c8d1f000000000000000000000000a462190b78621e73ee4e70f3b40eb739ba157d3300000000000000000000000092c250279e52016cd494f0b6caa2538b793d561f000000000000000000000000b2554fd540be633bbb999516a81b743f0a7541bb0000000000000000000000003274a2848c046e17e734157e61076496df411d7a000000000000000000000000b0500c1258304e978d05ea4c529b356f598748520000000000000000000000000624492024ddf6e687892327ba6e148c3e83c85f00000000000000000000000033012f47baf37e56680c44c759ec632d25636d8f0000000000000000000000008c91ca608a817262cb4fc6a1eb2da5d8abc34302000000000000000000000000f9e2b2ec69b200c891916adf369151f61cd5aa1e00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000003d20f0c31631da800000000000000000000000000000000000000000000000004a62ed4d16cb52c00000000000000000000000000000000000000000000000004c305d07ec490fc00000000000000000000000000000000000000000000000003b99c2a52e3387c000000000000000000000000000000000000000000000000044586bc5429dbb0000000000000000000000000000000000000000000000000043c33c1937564800000000000000000000000000000000000000000000000000515e8f3b5c755400000000000000000000000000000000000000000000000000369d00fc9e0b97c00000000000000000000000000000000000000000000000002142e3e2f4e09c40000000000000000000000000000000000000000000000000653be6c0245f87c000000000000000000000000000000000000000000000000041aa567cf0fa5b40000000000000000000000000000000000000000000000000462ccbdb71ef2a00000000000000000000000000000000000000000000000000334172c886bbd60000000000000000000000000000000000000000000000000043b47d5718746dc000000000000000000000000000000000000000000000000054a390468fd51340000000000000000000000000000000000000000000000001074201cd7c1ab900000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806379ba5097116100b857806395d89b411161007c57806395d89b4114610341578063a9059cbb1461035f578063a9d3cd8a1461038f578063dd62ed3e146103ab578063e30c3978146103db578063f2fde38b146103f957610142565b806379ba5097146102c157806379cc6790146102cb5780638da5cb5b146102e75780638fffabed14610305578063902d55a51461032357610142565b806323b872dd1161010a57806323b872dd146101ff578063313ce5671461022f57806342966c681461024d578063502f74461461026957806370a0823114610287578063715018a6146102b757610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806318533a0d146101b35780631e9fe6c6146101cf575b600080fd5b61014f610415565b60405161015c919061166f565b60405180910390f35b61017f600480360381019061017a919061172a565b6104a7565b60405161018c9190611785565b60405180910390f35b61019d6104ca565b6040516101aa91906117af565b60405180910390f35b6101cd60048036038101906101c891906117ca565b6104d4565b005b6101e960048036038101906101e491906117ca565b6105bc565b6040516101f69190611785565b60405180910390f35b610219600480360381019061021491906117f7565b6105dc565b6040516102269190611785565b60405180910390f35b61023761060b565b6040516102449190611866565b60405180910390f35b61026760048036038101906102629190611881565b610614565b005b610271610628565b60405161027e919061190d565b60405180910390f35b6102a1600480360381019061029c91906117ca565b61064e565b6040516102ae91906117af565b60405180910390f35b6102bf610696565b005b6102c96106aa565b005b6102e560048036038101906102e0919061172a565b610739565b005b6102ef610759565b6040516102fc9190611937565b60405180910390f35b61030d610783565b60405161031a9190611937565b60405180910390f35b61032b6107a9565b60405161033891906117af565b60405180910390f35b6103496107b7565b604051610356919061166f565b60405180910390f35b6103796004803603810190610374919061172a565b610849565b6040516103869190611785565b60405180910390f35b6103a960048036038101906103a4919061197e565b61086c565b005b6103c560048036038101906103c091906119be565b61096d565b6040516103d291906117af565b60405180910390f35b6103e36109f4565b6040516103f09190611937565b60405180910390f35b610413600480360381019061040e91906117ca565b610a1e565b005b60606003805461042490611a2d565b80601f016020809104026020016040519081016040528092919081815260200182805461045090611a2d565b801561049d5780601f106104725761010080835404028352916020019161049d565b820191906000526020600020905b81548152906001019060200180831161048057829003601f168201915b5050505050905090565b6000806104b2610acb565b90506104bf818585610ad3565b600191505092915050565b6000600254905090565b600660159054906101000a900460ff16806104fc5750600660149054906101000a900460ff16155b61053b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053290611ad0565b60405180910390fd5b6000600660159054906101000a900460ff16159050801561058d576001600660156101000a81548160ff0219169083151502179055506001600660146101000a81548160ff0219169083151502179055505b61059682610ae5565b80156105b8576000600660156101000a81548160ff0219169083151502179055505b5050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000806105e7610acb565b90506105f4858285610d82565b6105ff858585610e16565b60019150509392505050565b60006012905090565b61062561061f610acb565b82610f0a565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61069e610f8c565b6106a86000611013565b565b60006106b4610acb565b90508073ffffffffffffffffffffffffffffffffffffffff166106d56109f4565b73ffffffffffffffffffffffffffffffffffffffff161461072d57806040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107249190611937565b60405180910390fd5b61073681611013565b50565b61074b82610745610acb565b83610d82565b6107558282610f0a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b69d3c20dee1639f99c000081565b6060600480546107c690611a2d565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611a2d565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b600080610854610acb565b9050610861818585610e16565b600191505092915050565b610874610f8c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061091d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561095f57816040517f86bd5ef60000000000000000000000000000000000000000000000000000000081526004016109569190611937565b60405180910390fd5b6109698282611044565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a26610f8c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610a86610759565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600033905090565b610ae083838360016110ed565b505050565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb79190611b05565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c649190611b05565b6040518363ffffffff1660e01b8152600401610c81929190611b32565b6020604051808303816000875af1158015610ca0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc49190611b05565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d0f816001611044565b610d3c600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611044565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b6000610d8e848461096d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e105781811015610e00578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610df793929190611b5b565b60405180910390fd5b610e0f848484840360006110ed565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e885760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e7f9190611937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610efa5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ef19190611937565b60405180910390fd5b610f058383836112c4565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7c5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f739190611937565b60405180910390fd5b610f88826000836112c4565b5050565b610f94610acb565b73ffffffffffffffffffffffffffffffffffffffff16610fb2610759565b73ffffffffffffffffffffffffffffffffffffffff161461101157610fd5610acb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110089190611937565b60405180910390fd5b565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055611041816112ea565b50565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f2cc8631dda80fe178488d3174721fafacf84b0f194a7eddae85c9bcc599ac78b826040516110e19190611785565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361115f5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111569190611937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111d15760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111c89190611937565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156112be578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112b591906117af565b60405180910390a35b50505050565b6112cf8383836113b0565b6112da8383836113b5565b6112e58383836115da565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114075780600260008282546113fb9190611bc1565b925050819055506114da565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611493578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161148a93929190611b5b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115235780600260008282540392505081905550611570565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115cd91906117af565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116195780820151818401526020810190506115fe565b60008484015250505050565b6000601f19601f8301169050919050565b6000611641826115df565b61164b81856115ea565b935061165b8185602086016115fb565b61166481611625565b840191505092915050565b600060208201905081810360008301526116898184611636565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116c182611696565b9050919050565b6116d1816116b6565b81146116dc57600080fd5b50565b6000813590506116ee816116c8565b92915050565b6000819050919050565b611707816116f4565b811461171257600080fd5b50565b600081359050611724816116fe565b92915050565b6000806040838503121561174157611740611691565b5b600061174f858286016116df565b925050602061176085828601611715565b9150509250929050565b60008115159050919050565b61177f8161176a565b82525050565b600060208201905061179a6000830184611776565b92915050565b6117a9816116f4565b82525050565b60006020820190506117c460008301846117a0565b92915050565b6000602082840312156117e0576117df611691565b5b60006117ee848285016116df565b91505092915050565b6000806000606084860312156118105761180f611691565b5b600061181e868287016116df565b935050602061182f868287016116df565b925050604061184086828701611715565b9150509250925092565b600060ff82169050919050565b6118608161184a565b82525050565b600060208201905061187b6000830184611857565b92915050565b60006020828403121561189757611896611691565b5b60006118a584828501611715565b91505092915050565b6000819050919050565b60006118d36118ce6118c984611696565b6118ae565b611696565b9050919050565b60006118e5826118b8565b9050919050565b60006118f7826118da565b9050919050565b611907816118ec565b82525050565b600060208201905061192260008301846118fe565b92915050565b611931816116b6565b82525050565b600060208201905061194c6000830184611928565b92915050565b61195b8161176a565b811461196657600080fd5b50565b60008135905061197881611952565b92915050565b6000806040838503121561199557611994611691565b5b60006119a3858286016116df565b92505060206119b485828601611969565b9150509250929050565b600080604083850312156119d5576119d4611691565b5b60006119e3858286016116df565b92505060206119f4858286016116df565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a4557607f821691505b602082108103611a5857611a576119fe565b5b50919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000611aba602e836115ea565b9150611ac582611a5e565b604082019050919050565b60006020820190508181036000830152611ae981611aad565b9050919050565b600081519050611aff816116c8565b92915050565b600060208284031215611b1b57611b1a611691565b5b6000611b2984828501611af0565b91505092915050565b6000604082019050611b476000830185611928565b611b546020830184611928565b9392505050565b6000606082019050611b706000830186611928565b611b7d60208301856117a0565b611b8a60408301846117a0565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bcc826116f4565b9150611bd7836116f4565b9250828201905080821115611bef57611bee611b92565b5b9291505056fea2646970667358221220a8911276cfbe04ef7bbe1fafd78e091d3e06fed6c5a8199e8e444b16024050b964736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000777934b922f8f0e05377e4f42491c441558ff71900000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000001000000000000000000000000063a0a20bd3aa53977c4cbe250cf697b991f80252000000000000000000000000a6bfc18a8f79bcccbe6d7e96d20f567c4a85372c000000000000000000000000ba268e82eecf0500ad0c21b5845efddd1b9a055b0000000000000000000000006df050072db07148d23b3ab7c6e134160bc33e140000000000000000000000008ba078faa80777639b7ffefa638ac9574bf7693e00000000000000000000000087eba7c264bb5dfa60f04008c914a8ee6cf7d09a0000000000000000000000007d866a390ce070855fb8cece58837044130c8d1f000000000000000000000000a462190b78621e73ee4e70f3b40eb739ba157d3300000000000000000000000092c250279e52016cd494f0b6caa2538b793d561f000000000000000000000000b2554fd540be633bbb999516a81b743f0a7541bb0000000000000000000000003274a2848c046e17e734157e61076496df411d7a000000000000000000000000b0500c1258304e978d05ea4c529b356f598748520000000000000000000000000624492024ddf6e687892327ba6e148c3e83c85f00000000000000000000000033012f47baf37e56680c44c759ec632d25636d8f0000000000000000000000008c91ca608a817262cb4fc6a1eb2da5d8abc34302000000000000000000000000f9e2b2ec69b200c891916adf369151f61cd5aa1e00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000003d20f0c31631da800000000000000000000000000000000000000000000000004a62ed4d16cb52c00000000000000000000000000000000000000000000000004c305d07ec490fc00000000000000000000000000000000000000000000000003b99c2a52e3387c000000000000000000000000000000000000000000000000044586bc5429dbb0000000000000000000000000000000000000000000000000043c33c1937564800000000000000000000000000000000000000000000000000515e8f3b5c755400000000000000000000000000000000000000000000000000369d00fc9e0b97c00000000000000000000000000000000000000000000000002142e3e2f4e09c40000000000000000000000000000000000000000000000000653be6c0245f87c000000000000000000000000000000000000000000000000041aa567cf0fa5b40000000000000000000000000000000000000000000000000462ccbdb71ef2a00000000000000000000000000000000000000000000000000334172c886bbd60000000000000000000000000000000000000000000000000043b47d5718746dc000000000000000000000000000000000000000000000000054a390468fd51340000000000000000000000000000000000000000000000001074201cd7c1ab900000
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x777934b922f8F0E05377e4f42491C441558ff719
Arg [1] : _recipients (address[]): 0x63a0A20BD3Aa53977c4CbE250cf697B991F80252,0xA6Bfc18a8F79bcCCBE6D7e96d20F567C4A85372C,0xBa268e82EEcF0500ad0C21B5845eFdDd1b9A055B,0x6dF050072dB07148d23b3AB7c6E134160BC33E14,0x8ba078FaA80777639B7fFeFa638AC9574BF7693e,0x87ebA7C264bB5dfa60F04008c914A8EE6cF7D09A,0x7D866a390cE070855fb8Cece58837044130c8d1f,0xa462190B78621e73eE4E70f3B40eb739ba157D33,0x92c250279E52016cd494f0b6Caa2538b793D561f,0xb2554FD540Be633bBB999516a81b743F0a7541Bb,0x3274A2848C046e17E734157e61076496df411D7a,0xB0500C1258304E978D05eA4C529b356F59874852,0x0624492024DdF6e687892327BA6E148c3e83c85F,0x33012F47BAf37E56680c44c759EC632D25636d8f,0x8C91ca608a817262CB4FC6a1EB2DA5D8aBC34302,0xF9e2b2ec69B200C891916AdF369151F61cd5Aa1e
Arg [2] : _amounts (uint256[]): 18042000000000000000000,21955000000000000000000,22487000000000000000000,17591000000000000000000,20172000000000000000000,20000000000000000000000,24016000000000000000000,16119000000000000000000,9817000000000000000000,29879000000000000000000,19381000000000000000000,20712000000000000000000,15128000000000000000000,19983000000000000000000,24981000000000000000000,77700000000000000000000
-----Encoded View---------------
37 Constructor Arguments found :
Arg [0] : 000000000000000000000000777934b922f8f0e05377e4f42491c441558ff719
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 00000000000000000000000063a0a20bd3aa53977c4cbe250cf697b991f80252
Arg [5] : 000000000000000000000000a6bfc18a8f79bcccbe6d7e96d20f567c4a85372c
Arg [6] : 000000000000000000000000ba268e82eecf0500ad0c21b5845efddd1b9a055b
Arg [7] : 0000000000000000000000006df050072db07148d23b3ab7c6e134160bc33e14
Arg [8] : 0000000000000000000000008ba078faa80777639b7ffefa638ac9574bf7693e
Arg [9] : 00000000000000000000000087eba7c264bb5dfa60f04008c914a8ee6cf7d09a
Arg [10] : 0000000000000000000000007d866a390ce070855fb8cece58837044130c8d1f
Arg [11] : 000000000000000000000000a462190b78621e73ee4e70f3b40eb739ba157d33
Arg [12] : 00000000000000000000000092c250279e52016cd494f0b6caa2538b793d561f
Arg [13] : 000000000000000000000000b2554fd540be633bbb999516a81b743f0a7541bb
Arg [14] : 0000000000000000000000003274a2848c046e17e734157e61076496df411d7a
Arg [15] : 000000000000000000000000b0500c1258304e978d05ea4c529b356f59874852
Arg [16] : 0000000000000000000000000624492024ddf6e687892327ba6e148c3e83c85f
Arg [17] : 00000000000000000000000033012f47baf37e56680c44c759ec632d25636d8f
Arg [18] : 0000000000000000000000008c91ca608a817262cb4fc6a1eb2da5d8abc34302
Arg [19] : 000000000000000000000000f9e2b2ec69b200c891916adf369151f61cd5aa1e
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [21] : 0000000000000000000000000000000000000000000003d20f0c31631da80000
Arg [22] : 0000000000000000000000000000000000000000000004a62ed4d16cb52c0000
Arg [23] : 0000000000000000000000000000000000000000000004c305d07ec490fc0000
Arg [24] : 0000000000000000000000000000000000000000000003b99c2a52e3387c0000
Arg [25] : 00000000000000000000000000000000000000000000044586bc5429dbb00000
Arg [26] : 00000000000000000000000000000000000000000000043c33c1937564800000
Arg [27] : 000000000000000000000000000000000000000000000515e8f3b5c755400000
Arg [28] : 000000000000000000000000000000000000000000000369d00fc9e0b97c0000
Arg [29] : 0000000000000000000000000000000000000000000002142e3e2f4e09c40000
Arg [30] : 000000000000000000000000000000000000000000000653be6c0245f87c0000
Arg [31] : 00000000000000000000000000000000000000000000041aa567cf0fa5b40000
Arg [32] : 000000000000000000000000000000000000000000000462ccbdb71ef2a00000
Arg [33] : 000000000000000000000000000000000000000000000334172c886bbd600000
Arg [34] : 00000000000000000000000000000000000000000000043b47d5718746dc0000
Arg [35] : 00000000000000000000000000000000000000000000054a390468fd51340000
Arg [36] : 000000000000000000000000000000000000000000001074201cd7c1ab900000
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.