ERC-20
Overview
Max Total Supply
777,777,777 LIVE
Holders
350
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000081460287 LIVEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LivestreambetsToken
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* __ __ ______ __ __ ________ _| \_ | \ | \| \ | \| \ / $$ \ | $$ \$$$$$$| $$ | $$| $$$$$$$$ | $$$$$$\| $$ | $$ | $$ | $$| $$__ | $$___\$$| $$ | $$ \$$\ / $$| $$ \ \$$ \ | $$ | $$ \$$\ $$ | $$$$$ _\$$$$$$\| $$_____ _| $$_ \$$ $$ | $$_____ | \__/ $$| $$ \| $$ \ \$$$ | $$ \ \$$ $$ \$$$$$$$$ \$$$$$$ \$ \$$$$$$$$ \$$$$$$ \$$ [Website] https://www.livestreambets.gg [Twitter/X] https://twitter.com/livestreambets [Telegram] https://t.me/livestreambetsgg */ pragma solidity ^0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract LivestreambetsToken is ERC20, Ownable { mapping(address => bool) public isTaxExempt; mapping(address => bool) public isBlacklisted; uint256 public tax; address public pair; address public taxManager; address public taxRecipient; bool public blacklistEnabled; bool public sizeLimitEnabled; uint256 public minHoldingAmount; uint256 public maxHoldingAmount; modifier onlyOwnerOrTaxManager() { require( msg.sender == owner() || msg.sender == taxManager, "Caller is neither the owner nor tax manager" ); _; } error NotAllowed(); error InvalidConfig(); constructor( address mintRecipient_, address taxRecipient_, address taxManager_, uint256 tax_ ) ERC20("Livestreambets", "LIVE") { _mint(mintRecipient_, 777_777_777 * 10 ** decimals()); setTaxRecipient(taxRecipient_); setTaxManager(taxManager_); setTax(tax_); setTaxExempt(msg.sender, true); setTaxExempt(taxManager, true); setTaxExempt(taxRecipient, true); } function setPair(address pair_) external onlyOwner { pair = pair_; } function setTaxRecipient( address taxRecipient_ ) public onlyOwnerOrTaxManager { if (taxRecipient_ == address(0)) { revert InvalidConfig(); } taxRecipient = taxRecipient_; } function setTaxManager(address taxManager_) public onlyOwner { if (taxManager_ == address(0)) { revert InvalidConfig(); } taxManager = taxManager_; } function setTax(uint256 tax_) public onlyOwnerOrTaxManager { if (tax_ > 25) { revert InvalidConfig(); } tax = tax_; } function setTaxExempt( address account_, bool isTaxExempt_ ) public onlyOwnerOrTaxManager { isTaxExempt[account_] = isTaxExempt_; } function shouldTakeTax( address sender, address recipient ) public view returns (bool) { return !isTaxExempt[sender] && !isTaxExempt[recipient] && sender != owner() && recipient != owner() && pair != address(0) && (sender == pair || recipient == pair); } function setIsBlacklisted( address account_, bool isBlacklisted_ ) public onlyOwner { isBlacklisted[account_] = isBlacklisted_; } function setBlacklistEnabled(bool blacklistEnabled_) external onlyOwner { blacklistEnabled = blacklistEnabled_; } function setSizeLimitEnabled(bool sizeLimitEnabled_) external onlyOwner { sizeLimitEnabled = sizeLimitEnabled_; } function setSizeLimits( uint256 minHoldingAmount_, uint256 maxHoldingAmount_ ) external onlyOwner { if (minHoldingAmount_ > maxHoldingAmount_) { revert InvalidConfig(); } minHoldingAmount = minHoldingAmount_; maxHoldingAmount = maxHoldingAmount_; } function _transfer( address sender, address recipient, uint256 amount ) internal override { if ( blacklistEnabled && (isBlacklisted[sender] || isBlacklisted[recipient]) ) { revert NotAllowed(); } if ( sizeLimitEnabled && sender == pair && (balanceOf(recipient) + amount > maxHoldingAmount || balanceOf(recipient) + amount < minHoldingAmount) ) { revert NotAllowed(); } if (shouldTakeTax(sender, recipient)) { uint256 taxAmount = (amount * tax) / 100; super._transfer(sender, recipient, amount - taxAmount); super._transfer(sender, taxRecipient, taxAmount); return; } else { super._transfer(sender, recipient, amount); return; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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 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/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 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"mintRecipient_","type":"address"},{"internalType":"address","name":"taxRecipient_","type":"address"},{"internalType":"address","name":"taxManager_","type":"address"},{"internalType":"uint256","name":"tax_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidConfig","type":"error"},{"inputs":[],"name":"NotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"blacklistEnabled_","type":"bool"}],"name":"setBlacklistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"bool","name":"isBlacklisted_","type":"bool"}],"name":"setIsBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair_","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"sizeLimitEnabled_","type":"bool"}],"name":"setSizeLimitEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minHoldingAmount_","type":"uint256"},{"internalType":"uint256","name":"maxHoldingAmount_","type":"uint256"}],"name":"setSizeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax_","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"bool","name":"isTaxExempt_","type":"bool"}],"name":"setTaxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxManager_","type":"address"}],"name":"setTaxManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxRecipient_","type":"address"}],"name":"setTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"shouldTakeTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sizeLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200392d3803806200392d833981810160405281019062000037919062000a23565b6040518060400160405280600e81526020017f4c69766573747265616d626574730000000000000000000000000000000000008152506040518060400160405280600481526020017f4c495645000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000d05565b508060049081620000c6919062000d05565b505050620000e9620000dd620001e360201b60201c565b620001eb60201b60201c565b6200012984620000fe620002b160201b60201c565b600a6200010c919062000f7c565b632e5bf2716200011d919062000fcd565b620002ba60201b60201c565b6200013a836200042760201b60201c565b6200014b82620005ab60201b60201c565b6200015c816200066660201b60201c565b6200016f3360016200078560201b60201c565b620001a4600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078560201b60201c565b620001d9600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078560201b60201c565b505050506200120e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200032c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003239062001079565b60405180910390fd5b6200034060008383620008b960201b60201c565b80600260008282546200035491906200109b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004079190620010e7565b60405180910390a36200042360008383620008be60201b60201c565b5050565b62000437620008c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480620004be5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b62000500576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f7906200117a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000567576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620005bb620008ed60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000622576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000676620008c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480620006fd5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6200073f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000736906200117a565b60405180910390fd5b60198111156200077b576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060088190555050565b62000795620008c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806200081c5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6200085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000855906200117a565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008fd620001e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000923620008c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200097c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097390620011ec565b60405180910390fd5b565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009b08262000983565b9050919050565b620009c281620009a3565b8114620009ce57600080fd5b50565b600081519050620009e281620009b7565b92915050565b6000819050919050565b620009fd81620009e8565b811462000a0957600080fd5b50565b60008151905062000a1d81620009f2565b92915050565b6000806000806080858703121562000a405762000a3f6200097e565b5b600062000a5087828801620009d1565b945050602062000a6387828801620009d1565b935050604062000a7687828801620009d1565b925050606062000a898782880162000a0c565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b1757607f821691505b60208210810362000b2d5762000b2c62000acf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b58565b62000ba3868362000b58565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000be662000be062000bda84620009e8565b62000bbb565b620009e8565b9050919050565b6000819050919050565b62000c028362000bc5565b62000c1a62000c118262000bed565b84845462000b65565b825550505050565b600090565b62000c3162000c22565b62000c3e81848462000bf7565b505050565b5b8181101562000c665762000c5a60008262000c27565b60018101905062000c44565b5050565b601f82111562000cb55762000c7f8162000b33565b62000c8a8462000b48565b8101602085101562000c9a578190505b62000cb262000ca98562000b48565b83018262000c43565b50505b505050565b600082821c905092915050565b600062000cda6000198460080262000cba565b1980831691505092915050565b600062000cf5838362000cc7565b9150826002028217905092915050565b62000d108262000a95565b67ffffffffffffffff81111562000d2c5762000d2b62000aa0565b5b62000d38825462000afe565b62000d4582828562000c6a565b600060209050601f83116001811462000d7d576000841562000d68578287015190505b62000d74858262000ce7565b86555062000de4565b601f19841662000d8d8662000b33565b60005b8281101562000db75784890151825560018201915060208501945060208101905062000d90565b8683101562000dd7578489015162000dd3601f89168262000cc7565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000e7a5780860481111562000e525762000e5162000dec565b5b600185161562000e625780820291505b808102905062000e728562000e1b565b945062000e32565b94509492505050565b60008262000e95576001905062000f68565b8162000ea5576000905062000f68565b816001811462000ebe576002811462000ec95762000eff565b600191505062000f68565b60ff84111562000ede5762000edd62000dec565b5b8360020a91508482111562000ef85762000ef762000dec565b5b5062000f68565b5060208310610133831016604e8410600b841016171562000f395782820a90508381111562000f335762000f3262000dec565b5b62000f68565b62000f48848484600162000e28565b9250905081840481111562000f625762000f6162000dec565b5b81810290505b9392505050565b600060ff82169050919050565b600062000f8982620009e8565b915062000f968362000f6f565b925062000fc57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e83565b905092915050565b600062000fda82620009e8565b915062000fe783620009e8565b925082820262000ff781620009e8565b9150828204841483151762001011576200101062000dec565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001061601f8362001018565b91506200106e8262001029565b602082019050919050565b60006020820190508181036000830152620010948162001052565b9050919050565b6000620010a882620009e8565b9150620010b583620009e8565b9250828201905080821115620010d057620010cf62000dec565b5b92915050565b620010e181620009e8565b82525050565b6000602082019050620010fe6000830184620010d6565b92915050565b7f43616c6c6572206973206e65697468657220746865206f776e6572206e6f722060008201527f746178206d616e61676572000000000000000000000000000000000000000000602082015250565b600062001162602b8362001018565b91506200116f8262001104565b604082019050919050565b60006020820190508181036000830152620011958162001153565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011d460208362001018565b9150620011e1826200119c565b602082019050919050565b600060208201905081810360008301526200120781620011c5565b9050919050565b61270f806200121e6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063737ea06e1161011a578063a0e38492116100ad578063b9deefbd1161007c578063b9deefbd146105db578063bffb691d146105f9578063dd62ed3e14610617578063f2fde38b14610647578063fe575a871461066357610206565b8063a0e3849214610541578063a457c2d71461055d578063a8aa1b311461058d578063a9059cbb146105ab57610206565b806389f9a1d3116100e957806389f9a1d3146104c95780638da5cb5b146104e757806395d89b411461050557806399c8d5561461052357610206565b8063737ea06e1461045757806378e3079e146104755780637cb0c8f1146104915780638187f516146104ad57610206565b80631dc610401161019d578063395093511161016c578063395093511461039f5780634d237730146103cf57806370a08231146103ed578063715018a61461041d5780637223442d1461042757610206565b80631dc610401461031957806323b872dd146103355780632e5bb6ff14610365578063313ce5671461038157610206565b80631201cbd0116101d95780631201cbd01461029157806316c2be6b146102ad57806318160ddd146102dd5780631ab99e12146102fb57610206565b8063037a04651461020b57806306fdde0314610227578063095e391314610245578063095ea7b314610261575b600080fd5b61022560048036038101906102209190611c03565b610693565b005b61022f6106b8565b60405161023c9190611cc0565b60405180910390f35b61025f600480360381019061025a9190611d40565b61074a565b005b61027b60048036038101906102769190611da3565b6107fc565b6040516102889190611df2565b60405180910390f35b6102ab60048036038101906102a69190611c03565b61081f565b005b6102c760048036038101906102c29190611d40565b610844565b6040516102d49190611df2565b60405180910390f35b6102e5610864565b6040516102f29190611e1c565b60405180910390f35b61030361086e565b6040516103109190611e1c565b60405180910390f35b610333600480360381019061032e9190611e37565b610874565b005b61034f600480360381019061034a9190611e77565b61099c565b60405161035c9190611df2565b60405180910390f35b61037f600480360381019061037a9190611eca565b6109cb565b005b610389610add565b6040516103969190611f13565b60405180910390f35b6103b960048036038101906103b49190611da3565b610ae6565b6040516103c69190611df2565b60405180910390f35b6103d7610b1d565b6040516103e49190611f3d565b60405180910390f35b61040760048036038101906104029190611d40565b610b43565b6040516104149190611e1c565b60405180910390f35b610425610b8b565b005b610441600480360381019061043c9190611f58565b610b9f565b60405161044e9190611df2565b60405180910390f35b61045f610dd7565b60405161046c9190611f3d565b60405180910390f35b61048f600480360381019061048a9190611d40565b610dfd565b005b6104ab60048036038101906104a69190611f98565b610f74565b005b6104c760048036038101906104c29190611d40565b610fc8565b005b6104d1611014565b6040516104de9190611e1c565b60405180910390f35b6104ef61101a565b6040516104fc9190611f3d565b60405180910390f35b61050d611044565b60405161051a9190611cc0565b60405180910390f35b61052b6110d6565b6040516105389190611e1c565b60405180910390f35b61055b60048036038101906105569190611e37565b6110dc565b005b61057760048036038101906105729190611da3565b61113f565b6040516105849190611df2565b60405180910390f35b6105956111b6565b6040516105a29190611f3d565b60405180910390f35b6105c560048036038101906105c09190611da3565b6111dc565b6040516105d29190611df2565b60405180910390f35b6105e36111ff565b6040516105f09190611df2565b60405180910390f35b610601611212565b60405161060e9190611df2565b60405180910390f35b610631600480360381019061062c9190611f58565b611225565b60405161063e9190611e1c565b60405180910390f35b610661600480360381019061065c9190611d40565b6112ac565b005b61067d60048036038101906106789190611d40565b61132f565b60405161068a9190611df2565b60405180910390f35b61069b61134f565b80600b60156101000a81548160ff02191690831515021790555050565b6060600380546106c790612007565b80601f01602080910402602001604051908101604052809291908181526020018280546106f390612007565b80156107405780601f1061071557610100808354040283529160200191610740565b820191906000526020600020905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b61075261134f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107b8576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806108076113cd565b90506108148185856113d5565b600191505092915050565b61082761134f565b80600b60146101000a81548160ff02191690831515021790555050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600c5481565b61087c61101a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109025750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610938906120aa565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806109a76113cd565b90506109b485828561159e565b6109bf85858561162a565b60019150509392505050565b6109d361101a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a595750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906120aa565b60405180910390fd5b6019811115610ad3576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060088190555050565b60006012905090565b600080610af16113cd565b9050610b12818585610b038589611225565b610b0d91906120f9565b6113d5565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b9361134f565b610b9d6000611880565b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610c455750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610c845750610c5461101a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610cc35750610c9361101a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610d1e5750600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b8015610dcf5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610dce5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e0561101a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e8b5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906120aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f30576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f7c61134f565b80821115610fb6576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c8190555080600d819055505050565b610fd061134f565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461105390612007565b80601f016020809104026020016040519081016040528092919081815260200182805461107f90612007565b80156110cc5780601f106110a1576101008083540402835291602001916110cc565b820191906000526020600020905b8154815290600101906020018083116110af57829003601f168201915b5050505050905090565b60085481565b6110e461134f565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008061114a6113cd565b905060006111588286611225565b90508381101561119d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111949061219f565b60405180910390fd5b6111aa82868684036113d5565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806111e76113cd565b90506111f481858561162a565b600191505092915050565b600b60159054906101000a900460ff1681565b600b60149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112b461134f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90612231565b60405180910390fd5b61132c81611880565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b6113576113cd565b73ffffffffffffffffffffffffffffffffffffffff1661137561101a565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c29061229d565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b9061232f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906123c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115919190611e1c565b60405180910390a3505050565b60006115aa8484611225565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116245781811015611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d9061242d565b60405180910390fd5b61162384848484036113d5565b5b50505050565b600b60149054906101000a900460ff1680156116e35750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116e25750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b1561171a576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60159054906101000a900460ff1680156117835750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156117c25750600d548161179784610b43565b6117a191906120f9565b11806117c15750600c54816117b584610b43565b6117bf91906120f9565b105b5b156117f9576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118038383610b9f565b1561186f57600060646008548361181a919061244d565b61182491906124be565b905061183c8484838561183791906124ef565b611946565b61186984600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611946565b5061187b565b61187a838383611946565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90612595565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90612627565b60405180910390fd5b611a2f838383611bbc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906126b9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba39190611e1c565b60405180910390a3611bb6848484611bc1565b50505050565b505050565b505050565b600080fd5b60008115159050919050565b611be081611bcb565b8114611beb57600080fd5b50565b600081359050611bfd81611bd7565b92915050565b600060208284031215611c1957611c18611bc6565b5b6000611c2784828501611bee565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c6a578082015181840152602081019050611c4f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c9282611c30565b611c9c8185611c3b565b9350611cac818560208601611c4c565b611cb581611c76565b840191505092915050565b60006020820190508181036000830152611cda8184611c87565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d0d82611ce2565b9050919050565b611d1d81611d02565b8114611d2857600080fd5b50565b600081359050611d3a81611d14565b92915050565b600060208284031215611d5657611d55611bc6565b5b6000611d6484828501611d2b565b91505092915050565b6000819050919050565b611d8081611d6d565b8114611d8b57600080fd5b50565b600081359050611d9d81611d77565b92915050565b60008060408385031215611dba57611db9611bc6565b5b6000611dc885828601611d2b565b9250506020611dd985828601611d8e565b9150509250929050565b611dec81611bcb565b82525050565b6000602082019050611e076000830184611de3565b92915050565b611e1681611d6d565b82525050565b6000602082019050611e316000830184611e0d565b92915050565b60008060408385031215611e4e57611e4d611bc6565b5b6000611e5c85828601611d2b565b9250506020611e6d85828601611bee565b9150509250929050565b600080600060608486031215611e9057611e8f611bc6565b5b6000611e9e86828701611d2b565b9350506020611eaf86828701611d2b565b9250506040611ec086828701611d8e565b9150509250925092565b600060208284031215611ee057611edf611bc6565b5b6000611eee84828501611d8e565b91505092915050565b600060ff82169050919050565b611f0d81611ef7565b82525050565b6000602082019050611f286000830184611f04565b92915050565b611f3781611d02565b82525050565b6000602082019050611f526000830184611f2e565b92915050565b60008060408385031215611f6f57611f6e611bc6565b5b6000611f7d85828601611d2b565b9250506020611f8e85828601611d2b565b9150509250929050565b60008060408385031215611faf57611fae611bc6565b5b6000611fbd85828601611d8e565b9250506020611fce85828601611d8e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061201f57607f821691505b60208210810361203257612031611fd8565b5b50919050565b7f43616c6c6572206973206e65697468657220746865206f776e6572206e6f722060008201527f746178206d616e61676572000000000000000000000000000000000000000000602082015250565b6000612094602b83611c3b565b915061209f82612038565b604082019050919050565b600060208201905081810360008301526120c381612087565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061210482611d6d565b915061210f83611d6d565b9250828201905080821115612127576121266120ca565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612189602583611c3b565b91506121948261212d565b604082019050919050565b600060208201905081810360008301526121b88161217c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061221b602683611c3b565b9150612226826121bf565b604082019050919050565b6000602082019050818103600083015261224a8161220e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612287602083611c3b565b915061229282612251565b602082019050919050565b600060208201905081810360008301526122b68161227a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612319602483611c3b565b9150612324826122bd565b604082019050919050565b600060208201905081810360008301526123488161230c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123ab602283611c3b565b91506123b68261234f565b604082019050919050565b600060208201905081810360008301526123da8161239e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612417601d83611c3b565b9150612422826123e1565b602082019050919050565b600060208201905081810360008301526124468161240a565b9050919050565b600061245882611d6d565b915061246383611d6d565b925082820261247181611d6d565b91508282048414831517612488576124876120ca565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124c982611d6d565b91506124d483611d6d565b9250826124e4576124e361248f565b5b828204905092915050565b60006124fa82611d6d565b915061250583611d6d565b925082820390508181111561251d5761251c6120ca565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061257f602583611c3b565b915061258a82612523565b604082019050919050565b600060208201905081810360008301526125ae81612572565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612611602383611c3b565b915061261c826125b5565b604082019050919050565b6000602082019050818103600083015261264081612604565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126a3602683611c3b565b91506126ae82612647565b604082019050919050565b600060208201905081810360008301526126d281612696565b905091905056fea2646970667358221220d1c444d8e3880af4f2a312312ecadaf227be385ffb6227fa71d32f3da41685f064736f6c63430008130033000000000000000000000000fd362e31061709f5b4d479bac8effcc91ffcf827000000000000000000000000d985864ff0bae093e809b1189bb0ed1430aeeba1000000000000000000000000d985864ff0bae093e809b1189bb0ed1430aeeba10000000000000000000000000000000000000000000000000000000000000007
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063737ea06e1161011a578063a0e38492116100ad578063b9deefbd1161007c578063b9deefbd146105db578063bffb691d146105f9578063dd62ed3e14610617578063f2fde38b14610647578063fe575a871461066357610206565b8063a0e3849214610541578063a457c2d71461055d578063a8aa1b311461058d578063a9059cbb146105ab57610206565b806389f9a1d3116100e957806389f9a1d3146104c95780638da5cb5b146104e757806395d89b411461050557806399c8d5561461052357610206565b8063737ea06e1461045757806378e3079e146104755780637cb0c8f1146104915780638187f516146104ad57610206565b80631dc610401161019d578063395093511161016c578063395093511461039f5780634d237730146103cf57806370a08231146103ed578063715018a61461041d5780637223442d1461042757610206565b80631dc610401461031957806323b872dd146103355780632e5bb6ff14610365578063313ce5671461038157610206565b80631201cbd0116101d95780631201cbd01461029157806316c2be6b146102ad57806318160ddd146102dd5780631ab99e12146102fb57610206565b8063037a04651461020b57806306fdde0314610227578063095e391314610245578063095ea7b314610261575b600080fd5b61022560048036038101906102209190611c03565b610693565b005b61022f6106b8565b60405161023c9190611cc0565b60405180910390f35b61025f600480360381019061025a9190611d40565b61074a565b005b61027b60048036038101906102769190611da3565b6107fc565b6040516102889190611df2565b60405180910390f35b6102ab60048036038101906102a69190611c03565b61081f565b005b6102c760048036038101906102c29190611d40565b610844565b6040516102d49190611df2565b60405180910390f35b6102e5610864565b6040516102f29190611e1c565b60405180910390f35b61030361086e565b6040516103109190611e1c565b60405180910390f35b610333600480360381019061032e9190611e37565b610874565b005b61034f600480360381019061034a9190611e77565b61099c565b60405161035c9190611df2565b60405180910390f35b61037f600480360381019061037a9190611eca565b6109cb565b005b610389610add565b6040516103969190611f13565b60405180910390f35b6103b960048036038101906103b49190611da3565b610ae6565b6040516103c69190611df2565b60405180910390f35b6103d7610b1d565b6040516103e49190611f3d565b60405180910390f35b61040760048036038101906104029190611d40565b610b43565b6040516104149190611e1c565b60405180910390f35b610425610b8b565b005b610441600480360381019061043c9190611f58565b610b9f565b60405161044e9190611df2565b60405180910390f35b61045f610dd7565b60405161046c9190611f3d565b60405180910390f35b61048f600480360381019061048a9190611d40565b610dfd565b005b6104ab60048036038101906104a69190611f98565b610f74565b005b6104c760048036038101906104c29190611d40565b610fc8565b005b6104d1611014565b6040516104de9190611e1c565b60405180910390f35b6104ef61101a565b6040516104fc9190611f3d565b60405180910390f35b61050d611044565b60405161051a9190611cc0565b60405180910390f35b61052b6110d6565b6040516105389190611e1c565b60405180910390f35b61055b60048036038101906105569190611e37565b6110dc565b005b61057760048036038101906105729190611da3565b61113f565b6040516105849190611df2565b60405180910390f35b6105956111b6565b6040516105a29190611f3d565b60405180910390f35b6105c560048036038101906105c09190611da3565b6111dc565b6040516105d29190611df2565b60405180910390f35b6105e36111ff565b6040516105f09190611df2565b60405180910390f35b610601611212565b60405161060e9190611df2565b60405180910390f35b610631600480360381019061062c9190611f58565b611225565b60405161063e9190611e1c565b60405180910390f35b610661600480360381019061065c9190611d40565b6112ac565b005b61067d60048036038101906106789190611d40565b61132f565b60405161068a9190611df2565b60405180910390f35b61069b61134f565b80600b60156101000a81548160ff02191690831515021790555050565b6060600380546106c790612007565b80601f01602080910402602001604051908101604052809291908181526020018280546106f390612007565b80156107405780601f1061071557610100808354040283529160200191610740565b820191906000526020600020905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b61075261134f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107b8576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806108076113cd565b90506108148185856113d5565b600191505092915050565b61082761134f565b80600b60146101000a81548160ff02191690831515021790555050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600c5481565b61087c61101a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109025750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610938906120aa565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806109a76113cd565b90506109b485828561159e565b6109bf85858561162a565b60019150509392505050565b6109d361101a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a595750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906120aa565b60405180910390fd5b6019811115610ad3576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060088190555050565b60006012905090565b600080610af16113cd565b9050610b12818585610b038589611225565b610b0d91906120f9565b6113d5565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b9361134f565b610b9d6000611880565b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610c455750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610c845750610c5461101a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610cc35750610c9361101a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610d1e5750600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b8015610dcf5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610dce5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e0561101a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e8b5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906120aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f30576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f7c61134f565b80821115610fb6576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c8190555080600d819055505050565b610fd061134f565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461105390612007565b80601f016020809104026020016040519081016040528092919081815260200182805461107f90612007565b80156110cc5780601f106110a1576101008083540402835291602001916110cc565b820191906000526020600020905b8154815290600101906020018083116110af57829003601f168201915b5050505050905090565b60085481565b6110e461134f565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008061114a6113cd565b905060006111588286611225565b90508381101561119d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111949061219f565b60405180910390fd5b6111aa82868684036113d5565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806111e76113cd565b90506111f481858561162a565b600191505092915050565b600b60159054906101000a900460ff1681565b600b60149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112b461134f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90612231565b60405180910390fd5b61132c81611880565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b6113576113cd565b73ffffffffffffffffffffffffffffffffffffffff1661137561101a565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c29061229d565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b9061232f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906123c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115919190611e1c565b60405180910390a3505050565b60006115aa8484611225565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116245781811015611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d9061242d565b60405180910390fd5b61162384848484036113d5565b5b50505050565b600b60149054906101000a900460ff1680156116e35750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116e25750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b1561171a576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b60159054906101000a900460ff1680156117835750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156117c25750600d548161179784610b43565b6117a191906120f9565b11806117c15750600c54816117b584610b43565b6117bf91906120f9565b105b5b156117f9576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118038383610b9f565b1561186f57600060646008548361181a919061244d565b61182491906124be565b905061183c8484838561183791906124ef565b611946565b61186984600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611946565b5061187b565b61187a838383611946565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90612595565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90612627565b60405180910390fd5b611a2f838383611bbc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906126b9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba39190611e1c565b60405180910390a3611bb6848484611bc1565b50505050565b505050565b505050565b600080fd5b60008115159050919050565b611be081611bcb565b8114611beb57600080fd5b50565b600081359050611bfd81611bd7565b92915050565b600060208284031215611c1957611c18611bc6565b5b6000611c2784828501611bee565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c6a578082015181840152602081019050611c4f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c9282611c30565b611c9c8185611c3b565b9350611cac818560208601611c4c565b611cb581611c76565b840191505092915050565b60006020820190508181036000830152611cda8184611c87565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d0d82611ce2565b9050919050565b611d1d81611d02565b8114611d2857600080fd5b50565b600081359050611d3a81611d14565b92915050565b600060208284031215611d5657611d55611bc6565b5b6000611d6484828501611d2b565b91505092915050565b6000819050919050565b611d8081611d6d565b8114611d8b57600080fd5b50565b600081359050611d9d81611d77565b92915050565b60008060408385031215611dba57611db9611bc6565b5b6000611dc885828601611d2b565b9250506020611dd985828601611d8e565b9150509250929050565b611dec81611bcb565b82525050565b6000602082019050611e076000830184611de3565b92915050565b611e1681611d6d565b82525050565b6000602082019050611e316000830184611e0d565b92915050565b60008060408385031215611e4e57611e4d611bc6565b5b6000611e5c85828601611d2b565b9250506020611e6d85828601611bee565b9150509250929050565b600080600060608486031215611e9057611e8f611bc6565b5b6000611e9e86828701611d2b565b9350506020611eaf86828701611d2b565b9250506040611ec086828701611d8e565b9150509250925092565b600060208284031215611ee057611edf611bc6565b5b6000611eee84828501611d8e565b91505092915050565b600060ff82169050919050565b611f0d81611ef7565b82525050565b6000602082019050611f286000830184611f04565b92915050565b611f3781611d02565b82525050565b6000602082019050611f526000830184611f2e565b92915050565b60008060408385031215611f6f57611f6e611bc6565b5b6000611f7d85828601611d2b565b9250506020611f8e85828601611d2b565b9150509250929050565b60008060408385031215611faf57611fae611bc6565b5b6000611fbd85828601611d8e565b9250506020611fce85828601611d8e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061201f57607f821691505b60208210810361203257612031611fd8565b5b50919050565b7f43616c6c6572206973206e65697468657220746865206f776e6572206e6f722060008201527f746178206d616e61676572000000000000000000000000000000000000000000602082015250565b6000612094602b83611c3b565b915061209f82612038565b604082019050919050565b600060208201905081810360008301526120c381612087565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061210482611d6d565b915061210f83611d6d565b9250828201905080821115612127576121266120ca565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612189602583611c3b565b91506121948261212d565b604082019050919050565b600060208201905081810360008301526121b88161217c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061221b602683611c3b565b9150612226826121bf565b604082019050919050565b6000602082019050818103600083015261224a8161220e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612287602083611c3b565b915061229282612251565b602082019050919050565b600060208201905081810360008301526122b68161227a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612319602483611c3b565b9150612324826122bd565b604082019050919050565b600060208201905081810360008301526123488161230c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123ab602283611c3b565b91506123b68261234f565b604082019050919050565b600060208201905081810360008301526123da8161239e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612417601d83611c3b565b9150612422826123e1565b602082019050919050565b600060208201905081810360008301526124468161240a565b9050919050565b600061245882611d6d565b915061246383611d6d565b925082820261247181611d6d565b91508282048414831517612488576124876120ca565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124c982611d6d565b91506124d483611d6d565b9250826124e4576124e361248f565b5b828204905092915050565b60006124fa82611d6d565b915061250583611d6d565b925082820390508181111561251d5761251c6120ca565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061257f602583611c3b565b915061258a82612523565b604082019050919050565b600060208201905081810360008301526125ae81612572565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612611602383611c3b565b915061261c826125b5565b604082019050919050565b6000602082019050818103600083015261264081612604565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126a3602683611c3b565b91506126ae82612647565b604082019050919050565b600060208201905081810360008301526126d281612696565b905091905056fea2646970667358221220d1c444d8e3880af4f2a312312ecadaf227be385ffb6227fa71d32f3da41685f064736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fd362e31061709f5b4d479bac8effcc91ffcf827000000000000000000000000d985864ff0bae093e809b1189bb0ed1430aeeba1000000000000000000000000d985864ff0bae093e809b1189bb0ed1430aeeba10000000000000000000000000000000000000000000000000000000000000007
-----Decoded View---------------
Arg [0] : mintRecipient_ (address): 0xfD362e31061709F5B4D479bAc8efFCC91FFCf827
Arg [1] : taxRecipient_ (address): 0xD985864fF0BaE093E809B1189bb0ed1430aeEBa1
Arg [2] : taxManager_ (address): 0xD985864fF0BaE093E809B1189bb0ed1430aeEBa1
Arg [3] : tax_ (uint256): 7
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000fd362e31061709f5b4d479bac8effcc91ffcf827
Arg [1] : 000000000000000000000000d985864ff0bae093e809b1189bb0ed1430aeeba1
Arg [2] : 000000000000000000000000d985864ff0bae093e809b1189bb0ed1430aeeba1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
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.