Feature Tip: Add private address tag to any address under My Name Tag !
Note: This token's displayed name does not match its contract's Name function.
ERC-20
DeFi
Overview
Max Total Supply
100,000,000,000 send
Holders
536 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (+5.06%)
Onchain Market Cap
$10,943,000.00
Circulating Supply Market Cap
$2,912,495.00
Other Info
Token Contract (WITH 0 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Send
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {ERC20Snapshot} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol"; contract Send is ERC20("Send Token", "send"), ERC20Snapshot { using SafeERC20 for IERC20; /*********************** + Constructor + ***********************/ constructor( address multisig, address manager, address[] memory knownBots, uint256 initialMaxBuy ) { _manager = manager; _maxBuy = initialMaxBuy; _multisig = multisig; // Add known bots for (uint256 i = 0; i < knownBots.length; i++) { _knownBots[knownBots[i]] = true; } // Mint initial supply ERC20._mint(multisig, _totalSupply); // Bot defence is initially deactivated _botDefence = false; _botDefenceActivatedOnce = false; } /*********************** + Globals + ***********************/ uint256 public _totalSupply = 100000000000; uint256 public _maxBuy; address public _manager; address public _multisig; bool public _botDefence; bool public _botDefenceActivatedOnce; mapping(address => bool) public _knownBots; function decimals() public view virtual override returns (uint8) { return 0; } /*********************** + Distribution logic + ***********************/ function activateBotDefenceOnce() external onlyManager { if (_botDefenceActivatedOnce) { return; } _botDefenceActivatedOnce = true; _botDefence = true; } function deactivateBotDefence() external onlyManager { _botDefence = false; } function removeBots(address[] calldata _bots) external onlyManager { for (uint256 i = 0; i < _bots.length; i++) { _knownBots[_bots[i]] = false; } } function modifyMaxBuy(uint256 _newMaxBuy) external onlyManager { _maxBuy = _newMaxBuy; } // Hook function to track balances for distributions and protect against bots function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override(ERC20, ERC20Snapshot) { // If bot defence is enabled, check if the transfer is from a known bot // Manager and multisig are exempt from bot defence if ( _botDefence && msg.sender != _manager && msg.sender != _multisig && // allow the position manager to transfer msg.sender != 0xC36442b4a4522E871399CD717aBDD847Ab11FE88 ) { require( !_knownBots[from] && !_knownBots[to], "Bots cannot transfer" ); require( amount <= _maxBuy, "Cannot transfer more than the initial max buy" ); } ERC20Snapshot._beforeTokenTransfer(from, to, amount); } function createSnapshot() external onlyManager returns (uint256) { return ERC20Snapshot._snapshot(); } function getLatestSnapshot() external view returns (uint256) { return ERC20Snapshot._getCurrentSnapshotId(); } /*********************** + Management + ***********************/ modifier onlyManager() { require(msg.sender == _manager, "Only the manager can call this"); _; } function changeOwner(address _newManager) external onlyManager { _manager = _newManager; } function withdraw( uint256 _amount, address payable _to ) external onlyManager { _to.transfer(_amount); } function transferToken( address _tokenContract, address _transferTo, uint256 _value ) external onlyManager { IERC20(_tokenContract).safeTransfer(_transferTo, _value); } function transferTokenFrom( address _tokenContract, address _transferFrom, address _transferTo, uint256 _value ) external onlyManager { IERC20(_tokenContract).safeTransferFrom( _transferFrom, _transferTo, _value ); } function approveToken( address _tokenContract, address _spender, uint256 _value ) external onlyManager { IERC20(_tokenContract).safeApprove(_spender, _value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Snapshot.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Arrays.sol"; import "../../../utils/Counters.sol"; /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it * return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract. * * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient * alternative consider {ERC20Votes}. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } /** * @dev Get the current snapshotId */ function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to * 0 before setting it to a non-zero value. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Arrays.sol) pragma solidity ^0.8.0; import "./StorageSlot.sol"; import "./math/Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { using StorageSlot for bytes32; /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (unsafeAccess(array, mid).value > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && unsafeAccess(array, low - 1).value == element) { return low - 1; } else { return low; } } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.17/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getAddressSlot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.17/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getBytes32Slot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.17/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getUint256Slot(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"multisig","type":"address"},{"internalType":"address","name":"manager","type":"address"},{"internalType":"address[]","name":"knownBots","type":"address[]"},{"internalType":"uint256","name":"initialMaxBuy","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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":"_botDefence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_botDefenceActivatedOnce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_knownBots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_multisig","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateBotDefenceOnce","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approveToken","outputs":[],"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newManager","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivateBotDefence","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLatestSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxBuy","type":"uint256"}],"name":"modifyMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_bots","type":"address[]"}],"name":"removeBots","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_transferTo","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_transferFrom","type":"address"},{"internalType":"address","name":"_transferTo","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferTokenFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405264174876e80060095534801562000019575f80fd5b50604051620043ba380380620043ba83398181016040528101906200003f919062000ad8565b6040518060400160405280600a81526020017f53656e6420546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f73656e64000000000000000000000000000000000000000000000000000000008152508160039081620000bc919062000d94565b508060049081620000ce919062000d94565b50505082600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a8190555083600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f5b8251811015620001ec576001600d5f8584815181106200017f576200017e62000e78565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080620001e39062000ed2565b9150506200015a565b5062000201846009546200023f60201b60201c565b5f600c60146101000a81548160ff0219169083151502179055505f600c60156101000a81548160ff021916908315150217905550505050506200113e565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a79062000f7c565b60405180910390fd5b620002c35f8383620003a460201b60201c565b8060025f828254620002d6919062000f9c565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000385919062000fe7565b60405180910390a3620003a05f8383620005fd60201b60201c565b5050565b600c60149054906101000a900460ff1680156200040e5750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b8015620004685750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b8015620004b5575073c36442b4a4522e871399cd717abdd847ab11fe8873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15620005e557600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156200055a5750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6200059c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005939062001050565b60405180910390fd5b600a54811115620005e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005db90620010e4565b60405180910390fd5b5b620005f88383836200060260201b60201c565b505050565b505050565b62000615838383620006f460201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000670576200065a82620006f960201b60201c565b6200066a6200075a60201b60201c565b620006ef565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006cb57620006b583620006f960201b60201c565b620006c56200075a60201b60201c565b620006ee565b620006dc83620006f960201b60201c565b620006ed82620006f960201b60201c565b5b5b505050565b505050565b6200075760055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206200074b836200077e60201b60201c565b620007c360201b60201c565b50565b6200077c6006620007706200084660201b60201c565b620007c360201b60201c565b565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f620007d46200084f60201b60201c565b905080620007ea845f016200086760201b60201c565b10156200084157825f0181908060018154018082558091505060019003905f5260205f20015f90919091909150558260010182908060018154018082558091505060019003905f5260205f20015f90919091909150555b505050565b5f600254905090565b5f620008626008620008b660201b60201c565b905090565b5f808280549050036200087d575f9050620008b1565b816001838054905062000891919062001104565b81548110620008a557620008a462000e78565b5b905f5260205f20015490505b919050565b5f815f01549050919050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008fe82620008d3565b9050919050565b6200091081620008f2565b81146200091b575f80fd5b50565b5f815190506200092e8162000905565b92915050565b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620009808262000938565b810181811067ffffffffffffffff82111715620009a257620009a162000948565b5b80604052505050565b5f620009b6620008c2565b9050620009c4828262000975565b919050565b5f67ffffffffffffffff821115620009e657620009e562000948565b5b602082029050602081019050919050565b5f80fd5b5f62000a1162000a0b84620009c9565b620009ab565b9050808382526020820190506020840283018581111562000a375762000a36620009f7565b5b835b8181101562000a64578062000a4f88826200091e565b84526020840193505060208101905062000a39565b5050509392505050565b5f82601f83011262000a855762000a8462000934565b5b815162000a97848260208601620009fb565b91505092915050565b5f819050919050565b62000ab48162000aa0565b811462000abf575f80fd5b50565b5f8151905062000ad28162000aa9565b92915050565b5f805f806080858703121562000af35762000af2620008cb565b5b5f62000b02878288016200091e565b945050602062000b15878288016200091e565b935050604085015167ffffffffffffffff81111562000b395762000b38620008cf565b5b62000b478782880162000a6e565b925050606062000b5a8782880162000ac2565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bb557607f821691505b60208210810362000bcb5762000bca62000b70565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c2f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bf2565b62000c3b868362000bf2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000c7c62000c7662000c708462000aa0565b62000c53565b62000aa0565b9050919050565b5f819050919050565b62000c978362000c5c565b62000caf62000ca68262000c83565b84845462000bfe565b825550505050565b5f90565b62000cc562000cb7565b62000cd281848462000c8c565b505050565b5b8181101562000cf95762000ced5f8262000cbb565b60018101905062000cd8565b5050565b601f82111562000d485762000d128162000bd1565b62000d1d8462000be3565b8101602085101562000d2d578190505b62000d4562000d3c8562000be3565b83018262000cd7565b50505b505050565b5f82821c905092915050565b5f62000d6a5f198460080262000d4d565b1980831691505092915050565b5f62000d84838362000d59565b9150826002028217905092915050565b62000d9f8262000b66565b67ffffffffffffffff81111562000dbb5762000dba62000948565b5b62000dc7825462000b9d565b62000dd482828562000cfd565b5f60209050601f83116001811462000e0a575f841562000df5578287015190505b62000e01858262000d77565b86555062000e70565b601f19841662000e1a8662000bd1565b5f5b8281101562000e435784890151825560018201915060208501945060208101905062000e1c565b8683101562000e63578489015162000e5f601f89168262000d59565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000ede8262000aa0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000f135762000f1262000ea5565b5b600182019050919050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f64601f8362000f1e565b915062000f718262000f2e565b602082019050919050565b5f6020820190508181035f83015262000f958162000f56565b9050919050565b5f62000fa88262000aa0565b915062000fb58362000aa0565b925082820190508082111562000fd05762000fcf62000ea5565b5b92915050565b62000fe18162000aa0565b82525050565b5f60208201905062000ffc5f83018462000fd6565b92915050565b7f426f74732063616e6e6f74207472616e736665720000000000000000000000005f82015250565b5f6200103860148362000f1e565b9150620010458262001002565b602082019050919050565b5f6020820190508181035f83015262001069816200102a565b9050919050565b7f43616e6e6f74207472616e73666572206d6f7265207468616e2074686520696e5f8201527f697469616c206d61782062757900000000000000000000000000000000000000602082015250565b5f620010cc602d8362000f1e565b9150620010d98262001070565b604082019050919050565b5f6020820190508181035f830152620010fd81620010be565b9050919050565b5f620011108262000aa0565b91506200111d8362000aa0565b925082820390508181111562001138576200113762000ea5565b5b92915050565b61326e806200114c5f395ff3fe608060405234801561000f575f80fd5b50600436106101e2575f3560e01c806389cd28501161010d578063bc70e5d6116100a0578063dd62ed3e1161006f578063dd62ed3e14610580578063e5994905146105b0578063f0329f6b146105cc578063f5537ede146105ea576101e2565b8063bc70e5d61461051e578063ce6d7acd14610528578063d518f24314610546578063da3e339714610564576101e2565b8063a457c2d7116100dc578063a457c2d714610484578063a6f9dae1146104b4578063a9059cbb146104d0578063a9dec43614610500576101e2565b806389cd28501461040e5780638fd40d321461041857806395d89b4114610436578063981b24d014610454576101e2565b8063313ce567116101855780634ee2cd7e116101545780634ee2cd7e1461036257806366540a1c146103925780636c3bbfd7146103c257806370a08231146103de576101e2565b8063313ce567146102da578063334c7cb5146102f857806339509351146103145780633eaaf86b14610344576101e2565b8063128c2871116101c1578063128c2871146102505780631504d8f01461026e57806318160ddd1461028c57806323b872dd146102aa576101e2565b8062f714ce146101e657806306fdde0314610202578063095ea7b314610220575b5f80fd5b61020060048036038101906101fb91906122fe565b610606565b005b61020a6106dd565b60405161021791906123c6565b60405180910390f35b61023a60048036038101906102359190612421565b61076d565b6040516102479190612479565b60405180910390f35b61025861078f565b6040516102659190612479565b60405180910390f35b6102766107a2565b60405161028391906124a1565b60405180910390f35b61029461083f565b6040516102a191906124a1565b60405180910390f35b6102c460048036038101906102bf91906124ba565b610848565b6040516102d19190612479565b60405180910390f35b6102e2610876565b6040516102ef9190612525565b60405180910390f35b610312600480360381019061030d919061253e565b61087a565b005b61032e60048036038101906103299190612421565b610913565b60405161033b9190612479565b60405180910390f35b61034c610949565b60405161035991906124a1565b60405180910390f35b61037c60048036038101906103779190612421565b61094f565b60405161038991906124a1565b60405180910390f35b6103ac60048036038101906103a79190612569565b6109bb565b6040516103b99190612479565b60405180910390f35b6103dc60048036038101906103d791906125f5565b6109d8565b005b6103f860048036038101906103f39190612569565b610b07565b60405161040591906124a1565b60405180910390f35b610416610b4c565b005b610420610bf7565b60405161042d919061264f565b60405180910390f35b61043e610c1c565b60405161044b91906123c6565b60405180910390f35b61046e6004803603810190610469919061253e565b610cac565b60405161047b91906124a1565b60405180910390f35b61049e60048036038101906104999190612421565b610cdb565b6040516104ab9190612479565b60405180910390f35b6104ce60048036038101906104c99190612569565b610d50565b005b6104ea60048036038101906104e59190612421565b610e22565b6040516104f79190612479565b60405180910390f35b610508610e44565b60405161051591906124a1565b60405180910390f35b610526610e4a565b005b610530610f26565b60405161053d9190612479565b60405180910390f35b61054e610f39565b60405161055b91906124a1565b60405180910390f35b61057e600480360381019061057991906124ba565b610f47565b005b61059a60048036038101906105959190612668565b611006565b6040516105a791906124a1565b60405180910390f35b6105ca60048036038101906105c591906126a6565b611088565b005b6105d461114a565b6040516105e1919061264f565b60405180910390f35b61060460048036038101906105ff91906124ba565b61116f565b005b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068c90612754565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156106d8573d5f803e3d5ffd5b505050565b6060600380546106ec9061279f565b80601f01602080910402602001604051908101604052809291908181526020018280546107189061279f565b80156107635780601f1061073a57610100808354040283529160200191610763565b820191905f5260205f20905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b5f8061077761122e565b9050610784818585611235565b600191505092915050565b600c60159054906101000a900460ff1681565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612754565b60405180910390fd5b61083a6113f8565b905090565b5f600254905090565b5f8061085261122e565b905061085f85828561144c565b61086a8585856114d7565b60019150509392505050565b5f90565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090090612754565b60405180910390fd5b80600a8190555050565b5f8061091d61122e565b905061093e81858561092f8589611006565b61093991906127fc565b611235565b600191505092915050565b60095481565b5f805f6109988460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20611743565b91509150816109af576109aa85610b07565b6109b1565b805b9250505092915050565b600d602052805f5260405f205f915054906101000a900460ff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90612754565b60405180910390fd5b5f5b82829050811015610b02575f600d5f858585818110610a8b57610a8a61282f565b5b9050602002016020810190610aa09190612569565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610afa9061285c565b915050610a69565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290612754565b60405180910390fd5b5f600c60146101000a81548160ff021916908315150217905550565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610c2b9061279f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c579061279f565b8015610ca25780601f10610c7957610100808354040283529160200191610ca2565b820191905f5260205f20905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b5f805f610cba846006611743565b9150915081610cd057610ccb61083f565b610cd2565b805b92505050919050565b5f80610ce561122e565b90505f610cf28286611006565b905083811015610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90612913565b60405180910390fd5b610d448286868403611235565b60019250505092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612754565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610e2c61122e565b9050610e398185856114d7565b600191505092915050565b600a5481565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090612754565b60405180910390fd5b600c60159054906101000a900460ff16610f24576001600c60156101000a81548160ff0219169083151502179055506001600c60146101000a81548160ff0219169083151502179055505b565b600c60149054906101000a900460ff1681565b5f610f42611830565b905090565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612754565b60405180910390fd5b61100182828573ffffffffffffffffffffffffffffffffffffffff166118409092919063ffffffff16565b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612754565b60405180910390fd5b6111448383838773ffffffffffffffffffffffffffffffffffffffff1661198b909392919063ffffffff16565b50505050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590612754565b60405180910390fd5b61122982828573ffffffffffffffffffffffffffffffffffffffff16611a149092919063ffffffff16565b505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906129a1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890612a2f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113eb91906124a1565b60405180910390a3505050565b5f6114036008611a9a565b5f61140c611830565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161143d91906124a1565b60405180910390a18091505090565b5f6114578484611006565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114d157818110156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90612a97565b60405180910390fd5b6114d08484848403611235565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90612b25565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90612bb3565b60405180910390fd5b6115be838383611aae565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612c41565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161172a91906124a1565b60405180910390a361173d848484611cf4565b50505050565b5f805f8411611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90612ca9565b60405180910390fd5b61178f611830565b8411156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612d11565b60405180910390fd5b5f6117e785855f01611cf990919063ffffffff16565b9050835f01805490508103611802575f809250925050611829565b600184600101828154811061181a5761181961282f565b5b905f5260205f20015492509250505b9250929050565b5f61183b6008611dab565b905090565b5f8114806118c657505f8373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401611885929190612d2f565b602060405180830381865afa1580156118a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c49190612d6a565b145b611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90612e05565b60405180910390fd5b6119868363095ea7b360e01b8484604051602401611924929190612e23565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611db7565b505050565b611a0e846323b872dd60e01b8585856040516024016119ac93929190612e4a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611db7565b50505050565b611a958363a9059cbb60e01b8484604051602401611a33929190612e23565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611db7565b505050565b6001815f015f828254019250508190555050565b600c60149054906101000a900460ff168015611b175750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b8015611b705750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b8015611bbc575073c36442b4a4522e871399cd717abdd847ab11fe8873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15611ce457600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611c5f5750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9590612ec9565b60405180910390fd5b600a54811115611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90612f57565b60405180910390fd5b5b611cef838383611e7d565b505050565b505050565b5f80838054905003611d0d575f9050611da5565b5f80848054905090505b80821015611d5e575f611d2a8383611f33565b905084611d378783611f58565b5f01541115611d4857809150611d58565b600181611d5591906127fc565b92505b50611d17565b5f82118015611d84575083611d7f86600185611d7a9190612f75565b611f58565b5f0154145b15611d9f57600182611d969190612f75565b92505050611da5565b81925050505b92915050565b5f815f01549050919050565b5f611e18826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611f779092919063ffffffff16565b90505f81511480611e39575080806020019051810190611e389190612fd2565b5b611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f9061306d565b60405180910390fd5b505050565b611e88838383611f8e565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ed157611ec482611f93565b611ecc611fe4565b611f2e565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f1a57611f0d83611f93565b611f15611fe4565b611f2d565b611f2383611f93565b611f2c82611f93565b5b5b505050565b5f6002828418611f4391906130b8565b828416611f5091906127fc565b905092915050565b5f80835f528260205f20019050611f6e81611ff8565b91505092915050565b6060611f8584845f85612001565b90509392505050565b505050565b611fe160055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20611fdc83610b07565b6120ca565b50565b611ff66006611ff161083f565b6120ca565b565b5f819050919050565b606082471015612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613158565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff16858760405161206e91906131ba565b5f6040518083038185875af1925050503d805f81146120a8576040519150601f19603f3d011682016040523d82523d5f602084013e6120ad565b606091505b50915091506120be8783838761213c565b92505050949350505050565b5f6120d3611830565b9050806120e1845f016121b0565b101561213757825f0181908060018154018082558091505060019003905f5260205f20015f90919091909150558260010182908060018154018082558091505060019003905f5260205f20015f90919091909150555b505050565b6060831561219d575f83510361219557612155856121f8565b612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b9061321a565b60405180910390fd5b5b8290506121a8565b6121a7838361221a565b5b949350505050565b5f808280549050036121c4575f90506121f3565b81600183805490506121d69190612f75565b815481106121e7576121e661282f565b5b905f5260205f20015490505b919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8251111561222c5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226091906123c6565b60405180910390fd5b5f80fd5b5f80fd5b5f819050919050565b61228381612271565b811461228d575f80fd5b50565b5f8135905061229e8161227a565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6122cd826122a4565b9050919050565b6122dd816122c3565b81146122e7575f80fd5b50565b5f813590506122f8816122d4565b92915050565b5f806040838503121561231457612313612269565b5b5f61232185828601612290565b9250506020612332858286016122ea565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612373578082015181840152602081019050612358565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6123988261233c565b6123a28185612346565b93506123b2818560208601612356565b6123bb8161237e565b840191505092915050565b5f6020820190508181035f8301526123de818461238e565b905092915050565b5f6123f0826122a4565b9050919050565b612400816123e6565b811461240a575f80fd5b50565b5f8135905061241b816123f7565b92915050565b5f806040838503121561243757612436612269565b5b5f6124448582860161240d565b925050602061245585828601612290565b9150509250929050565b5f8115159050919050565b6124738161245f565b82525050565b5f60208201905061248c5f83018461246a565b92915050565b61249b81612271565b82525050565b5f6020820190506124b45f830184612492565b92915050565b5f805f606084860312156124d1576124d0612269565b5b5f6124de8682870161240d565b93505060206124ef8682870161240d565b925050604061250086828701612290565b9150509250925092565b5f60ff82169050919050565b61251f8161250a565b82525050565b5f6020820190506125385f830184612516565b92915050565b5f6020828403121561255357612552612269565b5b5f61256084828501612290565b91505092915050565b5f6020828403121561257e5761257d612269565b5b5f61258b8482850161240d565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126125b5576125b4612594565b5b8235905067ffffffffffffffff8111156125d2576125d1612598565b5b6020830191508360208202830111156125ee576125ed61259c565b5b9250929050565b5f806020838503121561260b5761260a612269565b5b5f83013567ffffffffffffffff8111156126285761262761226d565b5b612634858286016125a0565b92509250509250929050565b612649816123e6565b82525050565b5f6020820190506126625f830184612640565b92915050565b5f806040838503121561267e5761267d612269565b5b5f61268b8582860161240d565b925050602061269c8582860161240d565b9150509250929050565b5f805f80608085870312156126be576126bd612269565b5b5f6126cb8782880161240d565b94505060206126dc8782880161240d565b93505060406126ed8782880161240d565b92505060606126fe87828801612290565b91505092959194509250565b7f4f6e6c7920746865206d616e616765722063616e2063616c6c207468697300005f82015250565b5f61273e601e83612346565b91506127498261270a565b602082019050919050565b5f6020820190508181035f83015261276b81612732565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806127b657607f821691505b6020821081036127c9576127c8612772565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61280682612271565b915061281183612271565b9250828201905080821115612829576128286127cf565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61286682612271565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612898576128976127cf565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6128fd602583612346565b9150612908826128a3565b604082019050919050565b5f6020820190508181035f83015261292a816128f1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61298b602483612346565b915061299682612931565b604082019050919050565b5f6020820190508181035f8301526129b88161297f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a19602283612346565b9150612a24826129bf565b604082019050919050565b5f6020820190508181035f830152612a4681612a0d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612a81601d83612346565b9150612a8c82612a4d565b602082019050919050565b5f6020820190508181035f830152612aae81612a75565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b0f602583612346565b9150612b1a82612ab5565b604082019050919050565b5f6020820190508181035f830152612b3c81612b03565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612b9d602383612346565b9150612ba882612b43565b604082019050919050565b5f6020820190508181035f830152612bca81612b91565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612c2b602683612346565b9150612c3682612bd1565b604082019050919050565b5f6020820190508181035f830152612c5881612c1f565b9050919050565b7f4552433230536e617073686f743a2069642069732030000000000000000000005f82015250565b5f612c93601683612346565b9150612c9e82612c5f565b602082019050919050565b5f6020820190508181035f830152612cc081612c87565b9050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e742069640000005f82015250565b5f612cfb601d83612346565b9150612d0682612cc7565b602082019050919050565b5f6020820190508181035f830152612d2881612cef565b9050919050565b5f604082019050612d425f830185612640565b612d4f6020830184612640565b9392505050565b5f81519050612d648161227a565b92915050565b5f60208284031215612d7f57612d7e612269565b5b5f612d8c84828501612d56565b91505092915050565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f5f8201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b5f612def603683612346565b9150612dfa82612d95565b604082019050919050565b5f6020820190508181035f830152612e1c81612de3565b9050919050565b5f604082019050612e365f830185612640565b612e436020830184612492565b9392505050565b5f606082019050612e5d5f830186612640565b612e6a6020830185612640565b612e776040830184612492565b949350505050565b7f426f74732063616e6e6f74207472616e736665720000000000000000000000005f82015250565b5f612eb3601483612346565b9150612ebe82612e7f565b602082019050919050565b5f6020820190508181035f830152612ee081612ea7565b9050919050565b7f43616e6e6f74207472616e73666572206d6f7265207468616e2074686520696e5f8201527f697469616c206d61782062757900000000000000000000000000000000000000602082015250565b5f612f41602d83612346565b9150612f4c82612ee7565b604082019050919050565b5f6020820190508181035f830152612f6e81612f35565b9050919050565b5f612f7f82612271565b9150612f8a83612271565b9250828203905081811115612fa257612fa16127cf565b5b92915050565b612fb18161245f565b8114612fbb575f80fd5b50565b5f81519050612fcc81612fa8565b92915050565b5f60208284031215612fe757612fe6612269565b5b5f612ff484828501612fbe565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f613057602a83612346565b915061306282612ffd565b604082019050919050565b5f6020820190508181035f8301526130848161304b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6130c282612271565b91506130cd83612271565b9250826130dd576130dc61308b565b5b828204905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f613142602683612346565b915061314d826130e8565b604082019050919050565b5f6020820190508181035f83015261316f81613136565b9050919050565b5f81519050919050565b5f81905092915050565b5f61319482613176565b61319e8185613180565b93506131ae818560208601612356565b80840191505092915050565b5f6131c5828461318a565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f613204601d83612346565b915061320f826131d0565b602082019050919050565b5f6020820190508181035f830152613231816131f8565b905091905056fea26469706673582212208a964373dc8f81a0b1545272058af92a0c92369036368baabf7326d9b3fc6f7264736f6c634300081400330000000000000000000000004bb2f4c771ccb60723a78a974a2537ad339071c7000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f89000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000007a12000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae2fc483527b8ef99eb5d9b44875f005ba1fae13
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101e2575f3560e01c806389cd28501161010d578063bc70e5d6116100a0578063dd62ed3e1161006f578063dd62ed3e14610580578063e5994905146105b0578063f0329f6b146105cc578063f5537ede146105ea576101e2565b8063bc70e5d61461051e578063ce6d7acd14610528578063d518f24314610546578063da3e339714610564576101e2565b8063a457c2d7116100dc578063a457c2d714610484578063a6f9dae1146104b4578063a9059cbb146104d0578063a9dec43614610500576101e2565b806389cd28501461040e5780638fd40d321461041857806395d89b4114610436578063981b24d014610454576101e2565b8063313ce567116101855780634ee2cd7e116101545780634ee2cd7e1461036257806366540a1c146103925780636c3bbfd7146103c257806370a08231146103de576101e2565b8063313ce567146102da578063334c7cb5146102f857806339509351146103145780633eaaf86b14610344576101e2565b8063128c2871116101c1578063128c2871146102505780631504d8f01461026e57806318160ddd1461028c57806323b872dd146102aa576101e2565b8062f714ce146101e657806306fdde0314610202578063095ea7b314610220575b5f80fd5b61020060048036038101906101fb91906122fe565b610606565b005b61020a6106dd565b60405161021791906123c6565b60405180910390f35b61023a60048036038101906102359190612421565b61076d565b6040516102479190612479565b60405180910390f35b61025861078f565b6040516102659190612479565b60405180910390f35b6102766107a2565b60405161028391906124a1565b60405180910390f35b61029461083f565b6040516102a191906124a1565b60405180910390f35b6102c460048036038101906102bf91906124ba565b610848565b6040516102d19190612479565b60405180910390f35b6102e2610876565b6040516102ef9190612525565b60405180910390f35b610312600480360381019061030d919061253e565b61087a565b005b61032e60048036038101906103299190612421565b610913565b60405161033b9190612479565b60405180910390f35b61034c610949565b60405161035991906124a1565b60405180910390f35b61037c60048036038101906103779190612421565b61094f565b60405161038991906124a1565b60405180910390f35b6103ac60048036038101906103a79190612569565b6109bb565b6040516103b99190612479565b60405180910390f35b6103dc60048036038101906103d791906125f5565b6109d8565b005b6103f860048036038101906103f39190612569565b610b07565b60405161040591906124a1565b60405180910390f35b610416610b4c565b005b610420610bf7565b60405161042d919061264f565b60405180910390f35b61043e610c1c565b60405161044b91906123c6565b60405180910390f35b61046e6004803603810190610469919061253e565b610cac565b60405161047b91906124a1565b60405180910390f35b61049e60048036038101906104999190612421565b610cdb565b6040516104ab9190612479565b60405180910390f35b6104ce60048036038101906104c99190612569565b610d50565b005b6104ea60048036038101906104e59190612421565b610e22565b6040516104f79190612479565b60405180910390f35b610508610e44565b60405161051591906124a1565b60405180910390f35b610526610e4a565b005b610530610f26565b60405161053d9190612479565b60405180910390f35b61054e610f39565b60405161055b91906124a1565b60405180910390f35b61057e600480360381019061057991906124ba565b610f47565b005b61059a60048036038101906105959190612668565b611006565b6040516105a791906124a1565b60405180910390f35b6105ca60048036038101906105c591906126a6565b611088565b005b6105d461114a565b6040516105e1919061264f565b60405180910390f35b61060460048036038101906105ff91906124ba565b61116f565b005b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068c90612754565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156106d8573d5f803e3d5ffd5b505050565b6060600380546106ec9061279f565b80601f01602080910402602001604051908101604052809291908181526020018280546107189061279f565b80156107635780601f1061073a57610100808354040283529160200191610763565b820191905f5260205f20905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b5f8061077761122e565b9050610784818585611235565b600191505092915050565b600c60159054906101000a900460ff1681565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612754565b60405180910390fd5b61083a6113f8565b905090565b5f600254905090565b5f8061085261122e565b905061085f85828561144c565b61086a8585856114d7565b60019150509392505050565b5f90565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090090612754565b60405180910390fd5b80600a8190555050565b5f8061091d61122e565b905061093e81858561092f8589611006565b61093991906127fc565b611235565b600191505092915050565b60095481565b5f805f6109988460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20611743565b91509150816109af576109aa85610b07565b6109b1565b805b9250505092915050565b600d602052805f5260405f205f915054906101000a900460ff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90612754565b60405180910390fd5b5f5b82829050811015610b02575f600d5f858585818110610a8b57610a8a61282f565b5b9050602002016020810190610aa09190612569565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610afa9061285c565b915050610a69565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290612754565b60405180910390fd5b5f600c60146101000a81548160ff021916908315150217905550565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610c2b9061279f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c579061279f565b8015610ca25780601f10610c7957610100808354040283529160200191610ca2565b820191905f5260205f20905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b5f805f610cba846006611743565b9150915081610cd057610ccb61083f565b610cd2565b805b92505050919050565b5f80610ce561122e565b90505f610cf28286611006565b905083811015610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90612913565b60405180910390fd5b610d448286868403611235565b60019250505092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612754565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610e2c61122e565b9050610e398185856114d7565b600191505092915050565b600a5481565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090612754565b60405180910390fd5b600c60159054906101000a900460ff16610f24576001600c60156101000a81548160ff0219169083151502179055506001600c60146101000a81548160ff0219169083151502179055505b565b600c60149054906101000a900460ff1681565b5f610f42611830565b905090565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612754565b60405180910390fd5b61100182828573ffffffffffffffffffffffffffffffffffffffff166118409092919063ffffffff16565b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612754565b60405180910390fd5b6111448383838773ffffffffffffffffffffffffffffffffffffffff1661198b909392919063ffffffff16565b50505050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590612754565b60405180910390fd5b61122982828573ffffffffffffffffffffffffffffffffffffffff16611a149092919063ffffffff16565b505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906129a1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890612a2f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113eb91906124a1565b60405180910390a3505050565b5f6114036008611a9a565b5f61140c611830565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161143d91906124a1565b60405180910390a18091505090565b5f6114578484611006565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114d157818110156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90612a97565b60405180910390fd5b6114d08484848403611235565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90612b25565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90612bb3565b60405180910390fd5b6115be838383611aae565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612c41565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161172a91906124a1565b60405180910390a361173d848484611cf4565b50505050565b5f805f8411611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90612ca9565b60405180910390fd5b61178f611830565b8411156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612d11565b60405180910390fd5b5f6117e785855f01611cf990919063ffffffff16565b9050835f01805490508103611802575f809250925050611829565b600184600101828154811061181a5761181961282f565b5b905f5260205f20015492509250505b9250929050565b5f61183b6008611dab565b905090565b5f8114806118c657505f8373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401611885929190612d2f565b602060405180830381865afa1580156118a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c49190612d6a565b145b611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90612e05565b60405180910390fd5b6119868363095ea7b360e01b8484604051602401611924929190612e23565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611db7565b505050565b611a0e846323b872dd60e01b8585856040516024016119ac93929190612e4a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611db7565b50505050565b611a958363a9059cbb60e01b8484604051602401611a33929190612e23565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611db7565b505050565b6001815f015f828254019250508190555050565b600c60149054906101000a900460ff168015611b175750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b8015611b705750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b8015611bbc575073c36442b4a4522e871399cd717abdd847ab11fe8873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15611ce457600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611c5f5750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9590612ec9565b60405180910390fd5b600a54811115611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90612f57565b60405180910390fd5b5b611cef838383611e7d565b505050565b505050565b5f80838054905003611d0d575f9050611da5565b5f80848054905090505b80821015611d5e575f611d2a8383611f33565b905084611d378783611f58565b5f01541115611d4857809150611d58565b600181611d5591906127fc565b92505b50611d17565b5f82118015611d84575083611d7f86600185611d7a9190612f75565b611f58565b5f0154145b15611d9f57600182611d969190612f75565b92505050611da5565b81925050505b92915050565b5f815f01549050919050565b5f611e18826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611f779092919063ffffffff16565b90505f81511480611e39575080806020019051810190611e389190612fd2565b5b611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f9061306d565b60405180910390fd5b505050565b611e88838383611f8e565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ed157611ec482611f93565b611ecc611fe4565b611f2e565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f1a57611f0d83611f93565b611f15611fe4565b611f2d565b611f2383611f93565b611f2c82611f93565b5b5b505050565b5f6002828418611f4391906130b8565b828416611f5091906127fc565b905092915050565b5f80835f528260205f20019050611f6e81611ff8565b91505092915050565b6060611f8584845f85612001565b90509392505050565b505050565b611fe160055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20611fdc83610b07565b6120ca565b50565b611ff66006611ff161083f565b6120ca565b565b5f819050919050565b606082471015612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613158565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff16858760405161206e91906131ba565b5f6040518083038185875af1925050503d805f81146120a8576040519150601f19603f3d011682016040523d82523d5f602084013e6120ad565b606091505b50915091506120be8783838761213c565b92505050949350505050565b5f6120d3611830565b9050806120e1845f016121b0565b101561213757825f0181908060018154018082558091505060019003905f5260205f20015f90919091909150558260010182908060018154018082558091505060019003905f5260205f20015f90919091909150555b505050565b6060831561219d575f83510361219557612155856121f8565b612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b9061321a565b60405180910390fd5b5b8290506121a8565b6121a7838361221a565b5b949350505050565b5f808280549050036121c4575f90506121f3565b81600183805490506121d69190612f75565b815481106121e7576121e661282f565b5b905f5260205f20015490505b919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8251111561222c5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226091906123c6565b60405180910390fd5b5f80fd5b5f80fd5b5f819050919050565b61228381612271565b811461228d575f80fd5b50565b5f8135905061229e8161227a565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6122cd826122a4565b9050919050565b6122dd816122c3565b81146122e7575f80fd5b50565b5f813590506122f8816122d4565b92915050565b5f806040838503121561231457612313612269565b5b5f61232185828601612290565b9250506020612332858286016122ea565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612373578082015181840152602081019050612358565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6123988261233c565b6123a28185612346565b93506123b2818560208601612356565b6123bb8161237e565b840191505092915050565b5f6020820190508181035f8301526123de818461238e565b905092915050565b5f6123f0826122a4565b9050919050565b612400816123e6565b811461240a575f80fd5b50565b5f8135905061241b816123f7565b92915050565b5f806040838503121561243757612436612269565b5b5f6124448582860161240d565b925050602061245585828601612290565b9150509250929050565b5f8115159050919050565b6124738161245f565b82525050565b5f60208201905061248c5f83018461246a565b92915050565b61249b81612271565b82525050565b5f6020820190506124b45f830184612492565b92915050565b5f805f606084860312156124d1576124d0612269565b5b5f6124de8682870161240d565b93505060206124ef8682870161240d565b925050604061250086828701612290565b9150509250925092565b5f60ff82169050919050565b61251f8161250a565b82525050565b5f6020820190506125385f830184612516565b92915050565b5f6020828403121561255357612552612269565b5b5f61256084828501612290565b91505092915050565b5f6020828403121561257e5761257d612269565b5b5f61258b8482850161240d565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126125b5576125b4612594565b5b8235905067ffffffffffffffff8111156125d2576125d1612598565b5b6020830191508360208202830111156125ee576125ed61259c565b5b9250929050565b5f806020838503121561260b5761260a612269565b5b5f83013567ffffffffffffffff8111156126285761262761226d565b5b612634858286016125a0565b92509250509250929050565b612649816123e6565b82525050565b5f6020820190506126625f830184612640565b92915050565b5f806040838503121561267e5761267d612269565b5b5f61268b8582860161240d565b925050602061269c8582860161240d565b9150509250929050565b5f805f80608085870312156126be576126bd612269565b5b5f6126cb8782880161240d565b94505060206126dc8782880161240d565b93505060406126ed8782880161240d565b92505060606126fe87828801612290565b91505092959194509250565b7f4f6e6c7920746865206d616e616765722063616e2063616c6c207468697300005f82015250565b5f61273e601e83612346565b91506127498261270a565b602082019050919050565b5f6020820190508181035f83015261276b81612732565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806127b657607f821691505b6020821081036127c9576127c8612772565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61280682612271565b915061281183612271565b9250828201905080821115612829576128286127cf565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61286682612271565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612898576128976127cf565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6128fd602583612346565b9150612908826128a3565b604082019050919050565b5f6020820190508181035f83015261292a816128f1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61298b602483612346565b915061299682612931565b604082019050919050565b5f6020820190508181035f8301526129b88161297f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a19602283612346565b9150612a24826129bf565b604082019050919050565b5f6020820190508181035f830152612a4681612a0d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612a81601d83612346565b9150612a8c82612a4d565b602082019050919050565b5f6020820190508181035f830152612aae81612a75565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b0f602583612346565b9150612b1a82612ab5565b604082019050919050565b5f6020820190508181035f830152612b3c81612b03565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612b9d602383612346565b9150612ba882612b43565b604082019050919050565b5f6020820190508181035f830152612bca81612b91565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612c2b602683612346565b9150612c3682612bd1565b604082019050919050565b5f6020820190508181035f830152612c5881612c1f565b9050919050565b7f4552433230536e617073686f743a2069642069732030000000000000000000005f82015250565b5f612c93601683612346565b9150612c9e82612c5f565b602082019050919050565b5f6020820190508181035f830152612cc081612c87565b9050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e742069640000005f82015250565b5f612cfb601d83612346565b9150612d0682612cc7565b602082019050919050565b5f6020820190508181035f830152612d2881612cef565b9050919050565b5f604082019050612d425f830185612640565b612d4f6020830184612640565b9392505050565b5f81519050612d648161227a565b92915050565b5f60208284031215612d7f57612d7e612269565b5b5f612d8c84828501612d56565b91505092915050565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f5f8201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b5f612def603683612346565b9150612dfa82612d95565b604082019050919050565b5f6020820190508181035f830152612e1c81612de3565b9050919050565b5f604082019050612e365f830185612640565b612e436020830184612492565b9392505050565b5f606082019050612e5d5f830186612640565b612e6a6020830185612640565b612e776040830184612492565b949350505050565b7f426f74732063616e6e6f74207472616e736665720000000000000000000000005f82015250565b5f612eb3601483612346565b9150612ebe82612e7f565b602082019050919050565b5f6020820190508181035f830152612ee081612ea7565b9050919050565b7f43616e6e6f74207472616e73666572206d6f7265207468616e2074686520696e5f8201527f697469616c206d61782062757900000000000000000000000000000000000000602082015250565b5f612f41602d83612346565b9150612f4c82612ee7565b604082019050919050565b5f6020820190508181035f830152612f6e81612f35565b9050919050565b5f612f7f82612271565b9150612f8a83612271565b9250828203905081811115612fa257612fa16127cf565b5b92915050565b612fb18161245f565b8114612fbb575f80fd5b50565b5f81519050612fcc81612fa8565b92915050565b5f60208284031215612fe757612fe6612269565b5b5f612ff484828501612fbe565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f613057602a83612346565b915061306282612ffd565b604082019050919050565b5f6020820190508181035f8301526130848161304b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6130c282612271565b91506130cd83612271565b9250826130dd576130dc61308b565b5b828204905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f613142602683612346565b915061314d826130e8565b604082019050919050565b5f6020820190508181035f83015261316f81613136565b9050919050565b5f81519050919050565b5f81905092915050565b5f61319482613176565b61319e8185613180565b93506131ae818560208601612356565b80840191505092915050565b5f6131c5828461318a565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f613204601d83612346565b915061320f826131d0565b602082019050919050565b5f6020820190508181035f830152613231816131f8565b905091905056fea26469706673582212208a964373dc8f81a0b1545272058af92a0c92369036368baabf7326d9b3fc6f7264736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004bb2f4c771ccb60723a78a974a2537ad339071c7000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f89000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000007a12000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae2fc483527b8ef99eb5d9b44875f005ba1fae13
-----Decoded View---------------
Arg [0] : multisig (address): 0x4bB2f4c771ccB60723a78a974a2537AD339071c7
Arg [1] : manager (address): 0x647eb43401e13e995D89Cf26cD87e68890EE3f89
Arg [2] : knownBots (address[]): 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13
Arg [3] : initialMaxBuy (uint256): 8000000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000004bb2f4c771ccb60723a78a974a2537ad339071c7
Arg [1] : 000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f89
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000007a1200
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 000000000000000000000000ae2fc483527b8ef99eb5d9b44875f005ba1fae13
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.