Polygon Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 290,003 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 65578762 | 34 secs ago | IN | 0 POL | 0.00174267 | ||||
Approve | 65578737 | 1 min ago | IN | 0 POL | 0.00171129 | ||||
Approve | 65578718 | 2 mins ago | IN | 0 POL | 0.00174273 | ||||
Approve | 65578698 | 2 mins ago | IN | 0 POL | 0.00174272 | ||||
Approve | 65578678 | 3 mins ago | IN | 0 POL | 0.00213215 | ||||
Approve | 65578655 | 4 mins ago | IN | 0 POL | 0.0017427 | ||||
Approve | 65578544 | 9 mins ago | IN | 0 POL | 0.00090412 | ||||
Approve | 65578525 | 9 mins ago | IN | 0 POL | 0.0017535 | ||||
Approve | 65578520 | 10 mins ago | IN | 0 POL | 0.00092462 | ||||
Approve | 65578511 | 10 mins ago | IN | 0 POL | 0.00175494 | ||||
Approve | 65578508 | 10 mins ago | IN | 0 POL | 0.00175421 | ||||
Approve | 65578498 | 10 mins ago | IN | 0 POL | 0.0010556 | ||||
Approve | 65578493 | 11 mins ago | IN | 0 POL | 0.00278022 | ||||
Transfer | 65578489 | 11 mins ago | IN | 0 POL | 0.00147787 | ||||
Approve | 65578480 | 11 mins ago | IN | 0 POL | 0.00172934 | ||||
Transfer | 65578459 | 12 mins ago | IN | 0 POL | 0.00195321 | ||||
Approve | 65578451 | 12 mins ago | IN | 0 POL | 0.00175422 | ||||
Approve | 65578449 | 12 mins ago | IN | 0 POL | 0.00278094 | ||||
Approve | 65578444 | 12 mins ago | IN | 0 POL | 0.0017535 | ||||
Approve | 65578384 | 14 mins ago | IN | 0 POL | 0.00220637 | ||||
Approve | 65578383 | 14 mins ago | IN | 0 POL | 0.00175422 | ||||
Approve | 65578350 | 16 mins ago | IN | 0 POL | 0.0017535 | ||||
Approve | 65578323 | 17 mins ago | IN | 0 POL | 0.00175421 | ||||
Approve | 65578305 | 17 mins ago | IN | 0 POL | 0.00175422 | ||||
Approve | 65578298 | 18 mins ago | IN | 0 POL | 0.0017535 |
Loading...
Loading
Contract Name:
FalconToken
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2024-06-28 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IUniswapV2Router { function factory() external pure returns (address); } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } 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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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); } } 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); } 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); } 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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; } _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"); require(_totalSupply == 0, "ERC20: mint only creat"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = amount; _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; } _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 {} } contract FalconToken is ERC20, Ownable{ bool public _isOpenTrade; bool public _isPresaleActive =true; uint256 public _buyTax = 100; uint256 public _sellTax = 100; address public daiToken = 0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063; address public sushiRouter =0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506; address public constant BURN_ADDRESS = address(0xdead); mapping(address => bool) public _isWhitelisted; mapping(address => bool) public _isBlacklisted; mapping(address => bool) public _isPresaleWhitelist; mapping(address => bool) public _isLpAddress; constructor()ERC20("Falcon", "Falcon") { address sushiSwapLp = IUniswapV2Factory(IUniswapV2Router(sushiRouter).factory()).createPair(address(this),daiToken); _isLpAddress[sushiSwapLp] =true; _isWhitelisted[_msgSender()] =true; _mint(_msgSender(), 1000000000 * 10 ** uint256(decimals())); } function setSellTax(uint256 tax) public onlyOwner { require(tax <= 10000, "ERC20: sell tax must be between 0 and 10000 basis points"); _sellTax = tax; } function setBuyTax(uint256 tax) public onlyOwner { require(tax <= 10000, "ERC20: sell tax must be between 0 and 10000 basis points"); _buyTax = tax; } function setWhitelist(address[] memory accounts, bool isWhitelisted) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isWhitelisted[accounts[i]] = isWhitelisted; } } function setBlacklist(address[] memory accounts, bool isBlacklisted) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isBlacklisted[accounts[i]] = isBlacklisted; } } function setPresaleWhitelist(address[] memory accounts, bool isWhitelisted) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isPresaleWhitelist[accounts[i]] = isWhitelisted; } } function setLpAddress(address account, bool types) public onlyOwner { _isLpAddress[account] = types; } function setOpenTrade() external onlyOwner { _isOpenTrade = true; _isPresaleActive = false; } function setCloseTrade() external onlyOwner { _isOpenTrade = false; _isPresaleActive = true; } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_isBlacklisted[from], "ERC20: sender is blacklisted"); if (_isPresaleActive) { if (_isLpAddress[from] == true && _isPresaleWhitelist[to]) { uint256 taxAmount1 = amount * _buyTax / 10000; uint256 transferAmount1 = amount - taxAmount1; super._transfer(from, to, transferAmount1); super._transfer(from, BURN_ADDRESS, taxAmount1); return; } } uint256 taxAmount = 0; if (!_isWhitelisted[from] && !_isWhitelisted[to] && (_isLpAddress[from] == true || _isLpAddress[to] == true)) { require(_isOpenTrade, "not open trade"); if (_isLpAddress[from] == true) { taxAmount = amount * _buyTax / 10000; } else if (_isLpAddress[to] == true) { taxAmount = amount * _sellTax / 10000; } } uint256 transferAmount = amount - taxAmount; super._transfer(from, to, transferAmount); if (taxAmount > 0) { super._transfer(from, BURN_ADDRESS, taxAmount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":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":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isLpAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isOpenTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isPresaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"daiToken","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCloseTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"types","type":"bool"}],"name":"setLpAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOpenTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"setPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sushiRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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
60806040526005805460ff60a81b1916600160a81b17905560646006819055600755600880546001600160a01b0319908116738f3cf7ad23cd3cadbd9735aff958023239c6a0631790915560098054909116731b02da8cb0d097eb8d57a175b88c7d8b479975061790553480156200007657600080fd5b506040805180820182526006808252652330b631b7b760d11b602080840182815285518087019096529285528401528151919291620000b891600391620003df565b508051620000ce906004906020840190620003df565b505050620000eb620000e56200028760201b60201c565b6200028b565b6009546040805163c45a015560e01b815290516000926001600160a01b03169163c45a0155916004808301926020929190829003018186803b1580156200013157600080fd5b505afa15801562000146573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016c919062000485565b6008546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b158015620001b957600080fd5b505af1158015620001ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f4919062000485565b6001600160a01b0381166000908152600d60205260408120805460ff19166001908117909155919250600a90620002283390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620002806200025c3390565b6200026a6012600a62000500565b6200027a90633b9aca00620005be565b620002dd565b5062000633565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b600254156200038b5760405162461bcd60e51b815260206004820152601660248201527f45524332303a206d696e74206f6e6c7920637265617400000000000000000000604482015260640162000330565b60028190556001600160a01b038216600081815260208181526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620003ed90620005e0565b90600052602060002090601f0160209004810192826200041157600085556200045c565b82601f106200042c57805160ff19168380011785556200045c565b828001600101855582156200045c579182015b828111156200045c5782518255916020019190600101906200043f565b506200046a9291506200046e565b5090565b5b808211156200046a57600081556001016200046f565b6000602082840312156200049857600080fd5b81516001600160a01b0381168114620004b057600080fd5b9392505050565b600181815b80851115620004f8578160001904821115620004dc57620004dc6200061d565b80851615620004ea57918102915b93841c9390800290620004bc565b509250929050565b6000620004b083836000826200051957506001620005b8565b816200052857506000620005b8565b81600181146200054157600281146200054c576200056c565b6001915050620005b8565b60ff8411156200056057620005606200061d565b50506001821b620005b8565b5060208310610133831016604e8410600b841016171562000591575081810a620005b8565b6200059d8383620004b7565b8060001904821115620005b457620005b46200061d565b0290505b92915050565b6000816000190483118215151615620005db57620005db6200061d565b500290565b600181811c90821680620005f557607f821691505b602082108114156200061757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61142780620006436000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063be22f546116100ad578063dd62ed3e1161007c578063dd62ed3e14610446578063f2fde38b14610459578063f6fb000e1461046c578063f8cd68b01461047f578063fccc2813146104a257600080fd5b8063be22f54614610403578063ca9ec19914610416578063cc4e96111461041f578063dc1052e21461043357600080fd5b806395d89b41116100e957806395d89b41146103b25780639cee2142146103ba578063a457c2d7146103dd578063a9059cbb146103f057600080fd5b8063715018a614610363578063721fd87c1461036b5780638cd09d501461038e5780638da5cb5b146103a157600080fd5b806339509351116101925780634ec758db116101615780634ec758db146102f457806362771d33146102fc5780636d13582c1461030f57806370a082311461033a57600080fd5b806339509351146102bd5780633c271a05146102d057806342a11095146102e357806349114e06146102ec57600080fd5b806318160ddd116101ce57806318160ddd146102665780631cdd3be31461027857806323b872dd1461029b578063313ce567146102ae57600080fd5b80630115b2551461020057806306fdde0314610229578063095ea7b31461023e5780630e85d1e314610251575b600080fd5b60055461021490600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b6102316104ab565b60405161022091906111af565b61021461024c36600461108e565b61053d565b61026461025f3660046110b8565b610555565b005b6002545b604051908152602001610220565b610214610286366004610fd3565b600b6020526000908152604090205460ff1681565b6102146102a9366004611028565b6105c9565b60405160128152602001610220565b6102146102cb36600461108e565b6105ed565b6102646102de3660046110b8565b61060f565b61026a60065481565b61026461067e565b61026461069c565b61026461030a366004611064565b6106ba565b600954610322906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b61026a610348366004610fd3565b6001600160a01b031660009081526020819052604090205490565b6102646106ed565b610214610379366004610fd3565b600c6020526000908152604090205460ff1681565b61026461039c366004611196565b610701565b6005546001600160a01b0316610322565b610231610739565b6102146103c8366004610fd3565b600a6020526000908152604090205460ff1681565b6102146103eb36600461108e565b610748565b6102146103fe36600461108e565b6107c3565b600854610322906001600160a01b031681565b61026a60075481565b60055461021490600160a81b900460ff1681565b610264610441366004611196565b6107d1565b61026a610454366004610ff5565b610800565b610264610467366004610fd3565b61082b565b61026461047a3660046110b8565b6108a4565b61021461048d366004610fd3565b600d6020526000908152604090205460ff1681565b61032261dead81565b6060600380546104ba90611359565b80601f01602080910402602001604051908101604052809291908181526020018280546104e690611359565b80156105335780601f1061050857610100808354040283529160200191610533565b820191906000526020600020905b81548152906001019060200180831161051657829003601f168201915b5050505050905090565b60003361054b818585610913565b5060019392505050565b61055d610a37565b60005b82518110156105c45781600b6000858481518110610580576105806113c5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806105bc81611394565b915050610560565b505050565b6000336105d7858285610a91565b6105e2858585610b0b565b506001949350505050565b60003361054b8185856106008383610800565b61060a91906112e9565b610913565b610617610a37565b60005b82518110156105c45781600a600085848151811061063a5761063a6113c5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061067681611394565b91505061061a565b610686610a37565b6005805461ffff60a01b1916600160a01b179055565b6106a4610a37565b6005805461ffff60a01b1916600160a81b179055565b6106c2610a37565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6106f5610a37565b6106ff6000610e01565b565b610709610a37565b6127108111156107345760405162461bcd60e51b815260040161072b9061128c565b60405180910390fd5b600755565b6060600480546104ba90611359565b600033816107568286610800565b9050838110156107b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161072b565b6105e28286868403610913565b60003361054b818585610b0b565b6107d9610a37565b6127108111156107fb5760405162461bcd60e51b815260040161072b9061128c565b600655565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610833610a37565b6001600160a01b0381166108985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072b565b6108a181610e01565b50565b6108ac610a37565b60005b82518110156105c45781600c60008584815181106108cf576108cf6113c5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061090b81611394565b9150506108af565b6001600160a01b0383166109755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072b565b6001600160a01b0382166109d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146106ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072b565b6000610a9d8484610800565b90506000198114610b055781811015610af85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161072b565b610b058484848403610913565b50505050565b6001600160a01b038316610b315760405162461bcd60e51b815260040161072b90611247565b6001600160a01b038216610b575760405162461bcd60e51b815260040161072b90611204565b6001600160a01b0383166000908152600b602052604090205460ff1615610bc05760405162461bcd60e51b815260206004820152601c60248201527f45524332303a2073656e64657220697320626c61636b6c697374656400000000604482015260640161072b565b600554600160a81b900460ff1615610c68576001600160a01b0383166000908152600d602052604090205460ff1615156001148015610c1757506001600160a01b0382166000908152600c602052604090205460ff165b15610c6857600061271060065483610c2f9190611323565b610c399190611301565b90506000610c478284611342565b9050610c54858583610e53565b610c618561dead84610e53565b5050505050565b6001600160a01b0383166000908152600a602052604081205460ff16158015610caa57506001600160a01b0383166000908152600a602052604090205460ff16155b8015610cfa57506001600160a01b0384166000908152600d602052604090205460ff16151560011480610cfa57506001600160a01b0383166000908152600d602052604090205460ff1615156001145b15610dd557600554600160a01b900460ff16610d495760405162461bcd60e51b815260206004820152600e60248201526d6e6f74206f70656e20747261646560901b604482015260640161072b565b6001600160a01b0384166000908152600d602052604090205460ff16151560011415610d915761271060065483610d809190611323565b610d8a9190611301565b9050610dd5565b6001600160a01b0383166000908152600d602052604090205460ff16151560011415610dd55761271060075483610dc89190611323565b610dd29190611301565b90505b6000610de18284611342565b9050610dee858583610e53565b8115610c6157610c618561dead84610e53565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610e795760405162461bcd60e51b815260040161072b90611247565b6001600160a01b038216610e9f5760405162461bcd60e51b815260040161072b90611204565b6001600160a01b03831660009081526020819052604090205481811015610f175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161072b565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610f4e9084906112e9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f9a91815260200190565b60405180910390a3610b05565b80356001600160a01b0381168114610fbe57600080fd5b919050565b80358015158114610fbe57600080fd5b600060208284031215610fe557600080fd5b610fee82610fa7565b9392505050565b6000806040838503121561100857600080fd5b61101183610fa7565b915061101f60208401610fa7565b90509250929050565b60008060006060848603121561103d57600080fd5b61104684610fa7565b925061105460208501610fa7565b9150604084013590509250925092565b6000806040838503121561107757600080fd5b61108083610fa7565b915061101f60208401610fc3565b600080604083850312156110a157600080fd5b6110aa83610fa7565b946020939093013593505050565b600080604083850312156110cb57600080fd5b823567ffffffffffffffff808211156110e357600080fd5b818501915085601f8301126110f757600080fd5b813560208282111561110b5761110b6113db565b8160051b604051601f19603f83011681018181108682111715611130576111306113db565b604052838152828101945085830182870184018b101561114f57600080fd5b600096505b848710156111795761116581610fa7565b865260019690960195948301948301611154565b5096506111899050878201610fc3565b9450505050509250929050565b6000602082840312156111a857600080fd5b5035919050565b600060208083528351808285015260005b818110156111dc578581018301518582016040015282016111c0565b818111156111ee576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526038908201527f45524332303a2073656c6c20746178206d757374206265206265747765656e2060408201527f3020616e6420313030303020626173697320706f696e74730000000000000000606082015260800190565b600082198211156112fc576112fc6113af565b500190565b60008261131e57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561133d5761133d6113af565b500290565b600082821015611354576113546113af565b500390565b600181811c9082168061136d57607f821691505b6020821081141561138e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156113a8576113a86113af565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122070eec4e28b9479b873c7540c133d1ea11478396baac7bd7705c2851bf6c6897b64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063be22f546116100ad578063dd62ed3e1161007c578063dd62ed3e14610446578063f2fde38b14610459578063f6fb000e1461046c578063f8cd68b01461047f578063fccc2813146104a257600080fd5b8063be22f54614610403578063ca9ec19914610416578063cc4e96111461041f578063dc1052e21461043357600080fd5b806395d89b41116100e957806395d89b41146103b25780639cee2142146103ba578063a457c2d7146103dd578063a9059cbb146103f057600080fd5b8063715018a614610363578063721fd87c1461036b5780638cd09d501461038e5780638da5cb5b146103a157600080fd5b806339509351116101925780634ec758db116101615780634ec758db146102f457806362771d33146102fc5780636d13582c1461030f57806370a082311461033a57600080fd5b806339509351146102bd5780633c271a05146102d057806342a11095146102e357806349114e06146102ec57600080fd5b806318160ddd116101ce57806318160ddd146102665780631cdd3be31461027857806323b872dd1461029b578063313ce567146102ae57600080fd5b80630115b2551461020057806306fdde0314610229578063095ea7b31461023e5780630e85d1e314610251575b600080fd5b60055461021490600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b6102316104ab565b60405161022091906111af565b61021461024c36600461108e565b61053d565b61026461025f3660046110b8565b610555565b005b6002545b604051908152602001610220565b610214610286366004610fd3565b600b6020526000908152604090205460ff1681565b6102146102a9366004611028565b6105c9565b60405160128152602001610220565b6102146102cb36600461108e565b6105ed565b6102646102de3660046110b8565b61060f565b61026a60065481565b61026461067e565b61026461069c565b61026461030a366004611064565b6106ba565b600954610322906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b61026a610348366004610fd3565b6001600160a01b031660009081526020819052604090205490565b6102646106ed565b610214610379366004610fd3565b600c6020526000908152604090205460ff1681565b61026461039c366004611196565b610701565b6005546001600160a01b0316610322565b610231610739565b6102146103c8366004610fd3565b600a6020526000908152604090205460ff1681565b6102146103eb36600461108e565b610748565b6102146103fe36600461108e565b6107c3565b600854610322906001600160a01b031681565b61026a60075481565b60055461021490600160a81b900460ff1681565b610264610441366004611196565b6107d1565b61026a610454366004610ff5565b610800565b610264610467366004610fd3565b61082b565b61026461047a3660046110b8565b6108a4565b61021461048d366004610fd3565b600d6020526000908152604090205460ff1681565b61032261dead81565b6060600380546104ba90611359565b80601f01602080910402602001604051908101604052809291908181526020018280546104e690611359565b80156105335780601f1061050857610100808354040283529160200191610533565b820191906000526020600020905b81548152906001019060200180831161051657829003601f168201915b5050505050905090565b60003361054b818585610913565b5060019392505050565b61055d610a37565b60005b82518110156105c45781600b6000858481518110610580576105806113c5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806105bc81611394565b915050610560565b505050565b6000336105d7858285610a91565b6105e2858585610b0b565b506001949350505050565b60003361054b8185856106008383610800565b61060a91906112e9565b610913565b610617610a37565b60005b82518110156105c45781600a600085848151811061063a5761063a6113c5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061067681611394565b91505061061a565b610686610a37565b6005805461ffff60a01b1916600160a01b179055565b6106a4610a37565b6005805461ffff60a01b1916600160a81b179055565b6106c2610a37565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6106f5610a37565b6106ff6000610e01565b565b610709610a37565b6127108111156107345760405162461bcd60e51b815260040161072b9061128c565b60405180910390fd5b600755565b6060600480546104ba90611359565b600033816107568286610800565b9050838110156107b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161072b565b6105e28286868403610913565b60003361054b818585610b0b565b6107d9610a37565b6127108111156107fb5760405162461bcd60e51b815260040161072b9061128c565b600655565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610833610a37565b6001600160a01b0381166108985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072b565b6108a181610e01565b50565b6108ac610a37565b60005b82518110156105c45781600c60008584815181106108cf576108cf6113c5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061090b81611394565b9150506108af565b6001600160a01b0383166109755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072b565b6001600160a01b0382166109d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146106ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072b565b6000610a9d8484610800565b90506000198114610b055781811015610af85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161072b565b610b058484848403610913565b50505050565b6001600160a01b038316610b315760405162461bcd60e51b815260040161072b90611247565b6001600160a01b038216610b575760405162461bcd60e51b815260040161072b90611204565b6001600160a01b0383166000908152600b602052604090205460ff1615610bc05760405162461bcd60e51b815260206004820152601c60248201527f45524332303a2073656e64657220697320626c61636b6c697374656400000000604482015260640161072b565b600554600160a81b900460ff1615610c68576001600160a01b0383166000908152600d602052604090205460ff1615156001148015610c1757506001600160a01b0382166000908152600c602052604090205460ff165b15610c6857600061271060065483610c2f9190611323565b610c399190611301565b90506000610c478284611342565b9050610c54858583610e53565b610c618561dead84610e53565b5050505050565b6001600160a01b0383166000908152600a602052604081205460ff16158015610caa57506001600160a01b0383166000908152600a602052604090205460ff16155b8015610cfa57506001600160a01b0384166000908152600d602052604090205460ff16151560011480610cfa57506001600160a01b0383166000908152600d602052604090205460ff1615156001145b15610dd557600554600160a01b900460ff16610d495760405162461bcd60e51b815260206004820152600e60248201526d6e6f74206f70656e20747261646560901b604482015260640161072b565b6001600160a01b0384166000908152600d602052604090205460ff16151560011415610d915761271060065483610d809190611323565b610d8a9190611301565b9050610dd5565b6001600160a01b0383166000908152600d602052604090205460ff16151560011415610dd55761271060075483610dc89190611323565b610dd29190611301565b90505b6000610de18284611342565b9050610dee858583610e53565b8115610c6157610c618561dead84610e53565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610e795760405162461bcd60e51b815260040161072b90611247565b6001600160a01b038216610e9f5760405162461bcd60e51b815260040161072b90611204565b6001600160a01b03831660009081526020819052604090205481811015610f175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161072b565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610f4e9084906112e9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f9a91815260200190565b60405180910390a3610b05565b80356001600160a01b0381168114610fbe57600080fd5b919050565b80358015158114610fbe57600080fd5b600060208284031215610fe557600080fd5b610fee82610fa7565b9392505050565b6000806040838503121561100857600080fd5b61101183610fa7565b915061101f60208401610fa7565b90509250929050565b60008060006060848603121561103d57600080fd5b61104684610fa7565b925061105460208501610fa7565b9150604084013590509250925092565b6000806040838503121561107757600080fd5b61108083610fa7565b915061101f60208401610fc3565b600080604083850312156110a157600080fd5b6110aa83610fa7565b946020939093013593505050565b600080604083850312156110cb57600080fd5b823567ffffffffffffffff808211156110e357600080fd5b818501915085601f8301126110f757600080fd5b813560208282111561110b5761110b6113db565b8160051b604051601f19603f83011681018181108682111715611130576111306113db565b604052838152828101945085830182870184018b101561114f57600080fd5b600096505b848710156111795761116581610fa7565b865260019690960195948301948301611154565b5096506111899050878201610fc3565b9450505050509250929050565b6000602082840312156111a857600080fd5b5035919050565b600060208083528351808285015260005b818110156111dc578581018301518582016040015282016111c0565b818111156111ee576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526038908201527f45524332303a2073656c6c20746178206d757374206265206265747765656e2060408201527f3020616e6420313030303020626173697320706f696e74730000000000000000606082015260800190565b600082198211156112fc576112fc6113af565b500190565b60008261131e57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561133d5761133d6113af565b500290565b600082821015611354576113546113af565b500390565b600181811c9082168061136d57607f821691505b6020821081141561138e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156113a8576113a86113af565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122070eec4e28b9479b873c7540c133d1ea11478396baac7bd7705c2851bf6c6897b64736f6c63430008070033
Deployed Bytecode Sourcemap
16967:3758:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17013:24;;;;;-1:-1:-1;;;17013:24:0;;;;;;;;;3429:14:1;;3422:22;3404:41;;3392:2;3377:18;17013:24:0;;;;;;;;6324:100;;;:::i;:::-;;;;;;;:::i;8638:201::-;;;;;;:::i;:::-;;:::i;18511:220::-;;;;;;:::i;:::-;;:::i;:::-;;7427:108;7515:12;;7427:108;;;8886:25:1;;;8874:2;8859:18;7427:108:0;8740:177:1;17423:47:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9404:295;;;;;;:::i;:::-;;:::i;7271:93::-;;;7354:2;9064:36:1;;9052:2;9037:18;7271:93:0;8922:184:1;10097:238:0;;;;;;:::i;:::-;;:::i;18285:220::-;;;;;;:::i;:::-;;:::i;17085:28::-;;;;;;19099:116;;;:::i;19221:117::-;;;:::i;18977:116::-;;;;;;:::i;:::-;;:::i;17231:70::-;;;;;-1:-1:-1;;;;;17231:70:0;;;;;;-1:-1:-1;;;;;3220:32:1;;;3202:51;;3190:2;3175:18;17231:70:0;3056:203:1;7596:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;7697:18:0;7670:7;7697:18;;;;;;;;;;;;7596:127;1725:103;;;:::i;17477:52::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17925:175;;;;;;:::i;:::-;;:::i;1085:87::-;1158:6;;-1:-1:-1;;;;;1158:6:0;1085:87;;6540:104;;;:::i;17369:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10825:422;;;;;;:::i;:::-;;:::i;7922:193::-;;;;;;:::i;:::-;;:::i;17156:68::-;;;;;-1:-1:-1;;;;;17156:68:0;;;17120:29;;;;;;17044:34;;;;;-1:-1:-1;;;17044:34:0;;;;;;18106:173;;;;;;:::i;:::-;;:::i;8176:151::-;;;;;;:::i;:::-;;:::i;1980:201::-;;;;;;:::i;:::-;;:::i;18737:234::-;;;;;;:::i;:::-;;:::i;17536:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17308:54;;17355:6;17308:54;;6324:100;6378:13;6411:5;6404:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6324:100;:::o;8638:201::-;8721:4;173:10;8777:32;173:10;8793:7;8802:6;8777:8;:32::i;:::-;-1:-1:-1;8827:4:0;;8638:201;-1:-1:-1;;;8638:201:0:o;18511:220::-;973:13;:11;:13::i;:::-;18613:9:::1;18608:116;18632:8;:15;18628:1;:19;18608:116;;;18699:13;18669:14;:27;18684:8;18693:1;18684:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;18669:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;18669:27:0;:43;;-1:-1:-1;;18669:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18649:3;::::1;::::0;::::1;:::i;:::-;;;;18608:116;;;;18511:220:::0;;:::o;9404:295::-;9535:4;173:10;9593:38;9609:4;173:10;9624:6;9593:15;:38::i;:::-;9642:27;9652:4;9658:2;9662:6;9642:9;:27::i;:::-;-1:-1:-1;9687:4:0;;9404:295;-1:-1:-1;;;;9404:295:0:o;10097:238::-;10185:4;173:10;10241:64;173:10;10257:7;10294:10;10266:25;173:10;10257:7;10266:9;:25::i;:::-;:38;;;;:::i;:::-;10241:8;:64::i;18285:220::-;973:13;:11;:13::i;:::-;18387:9:::1;18382:116;18406:8;:15;18402:1;:19;18382:116;;;18473:13;18443:14;:27;18458:8;18467:1;18458:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;18443:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;18443:27:0;:43;;-1:-1:-1;;18443:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18423:3;::::1;::::0;::::1;:::i;:::-;;;;18382:116;;19099::::0;973:13;:11;:13::i;:::-;19153:12:::1;:19:::0;;-1:-1:-1;;;;19183:24:0;-1:-1:-1;;;19183:24:0;;;19099:116::o;19221:117::-;973:13;:11;:13::i;:::-;19276:12:::1;:20:::0;;-1:-1:-1;;;;19307:23:0;-1:-1:-1;;;19307:23:0::1;::::0;;19221:117::o;18977:116::-;973:13;:11;:13::i;:::-;-1:-1:-1;;;;;19056:21:0;;;::::1;;::::0;;;:12:::1;:21;::::0;;;;:29;;-1:-1:-1;;19056:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18977:116::o;1725:103::-;973:13;:11;:13::i;:::-;1790:30:::1;1817:1;1790:18;:30::i;:::-;1725:103::o:0;17925:175::-;973:13;:11;:13::i;:::-;18001:5:::1;17994:3;:12;;17986:81;;;;-1:-1:-1::0;;;17986:81:0::1;;;;;;;:::i;:::-;;;;;;;;;18078:8;:14:::0;17925:175::o;6540:104::-;6596:13;6629:7;6622:14;;;;;:::i;10825:422::-;10918:4;173:10;10918:4;11001:25;173:10;11018:7;11001:9;:25::i;:::-;10974:52;;11065:15;11045:16;:35;;11037:85;;;;-1:-1:-1;;;11037:85:0;;8536:2:1;11037:85:0;;;8518:21:1;8575:2;8555:18;;;8548:30;8614:34;8594:18;;;8587:62;-1:-1:-1;;;8665:18:1;;;8658:35;8710:19;;11037:85:0;8334:401:1;11037:85:0;11150:60;11159:5;11166:7;11194:15;11175:16;:34;11150:8;:60::i;7922:193::-;8001:4;173:10;8057:28;173:10;8074:2;8078:6;8057:9;:28::i;18106:173::-;973:13;:11;:13::i;:::-;18181:5:::1;18174:3;:12;;18166:81;;;;-1:-1:-1::0;;;18166:81:0::1;;;;;;;:::i;:::-;18258:7;:13:::0;18106:173::o;8176:151::-;-1:-1:-1;;;;;8292:18:0;;;8265:7;8292:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8176:151::o;1980:201::-;973:13;:11;:13::i;:::-;-1:-1:-1;;;;;2069:22:0;::::1;2061:73;;;::::0;-1:-1:-1;;;2061:73:0;;4664:2:1;2061:73:0::1;::::0;::::1;4646:21:1::0;4703:2;4683:18;;;4676:30;4742:34;4722:18;;;4715:62;-1:-1:-1;;;4793:18:1;;;4786:36;4839:19;;2061:73:0::1;4462:402:1::0;2061:73:0::1;2145:28;2164:8;2145:18;:28::i;:::-;1980:201:::0;:::o;18737:234::-;973:13;:11;:13::i;:::-;18848:9:::1;18843:121;18867:8;:15;18863:1;:19;18843:121;;;18939:13;18904:19;:32;18924:8;18933:1;18924:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;18904:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;18904:32:0;:48;;-1:-1:-1;;18904:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18884:3;::::1;::::0;::::1;:::i;:::-;;;;18843:121;;14428:380:::0;-1:-1:-1;;;;;14564:19:0;;14556:68;;;;-1:-1:-1;;;14556:68:0;;7706:2:1;14556:68:0;;;7688:21:1;7745:2;7725:18;;;7718:30;7784:34;7764:18;;;7757:62;-1:-1:-1;;;7835:18:1;;;7828:34;7879:19;;14556:68:0;7504:400:1;14556:68:0;-1:-1:-1;;;;;14643:21:0;;14635:68;;;;-1:-1:-1;;;14635:68:0;;5071:2:1;14635:68:0;;;5053:21:1;5110:2;5090:18;;;5083:30;5149:34;5129:18;;;5122:62;-1:-1:-1;;;5200:18:1;;;5193:32;5242:19;;14635:68:0;4869:398:1;14635:68:0;-1:-1:-1;;;;;14716:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14768:32;;8886:25:1;;;14768:32:0;;8859:18:1;14768:32:0;;;;;;;14428:380;;;:::o;1248:132::-;1158:6;;-1:-1:-1;;;;;1158:6:0;173:10;1312:23;1304:68;;;;-1:-1:-1;;;1304:68:0;;6582:2:1;1304:68:0;;;6564:21:1;;;6601:18;;;6594:30;6660:34;6640:18;;;6633:62;6712:18;;1304:68:0;6380:356:1;15092:441:0;15227:24;15254:25;15264:5;15271:7;15254:9;:25::i;:::-;15227:52;;-1:-1:-1;;15294:16:0;:37;15290:236;;15376:6;15356:16;:26;;15348:68;;;;-1:-1:-1;;;15348:68:0;;5474:2:1;15348:68:0;;;5456:21:1;5513:2;5493:18;;;5486:30;5552:31;5532:18;;;5525:59;5601:18;;15348:68:0;5272:353:1;15348:68:0;15452:51;15461:5;15468:7;15496:6;15477:16;:25;15452:8;:51::i;:::-;15216:317;15092:441;;;:::o;19344:1378::-;-1:-1:-1;;;;;19442:18:0;;19434:68;;;;-1:-1:-1;;;19434:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19521:16:0;;19513:64;;;;-1:-1:-1;;;19513:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19597:20:0;;;;;;:14;:20;;;;;;;;19596:21;19588:62;;;;-1:-1:-1;;;19588:62:0;;6943:2:1;19588:62:0;;;6925:21:1;6982:2;6962:18;;;6955:30;7021;7001:18;;;6994:58;7069:18;;19588:62:0;6741:352:1;19588:62:0;19665:16;;-1:-1:-1;;;19665:16:0;;;;19661:403;;;-1:-1:-1;;;;;19702:18:0;;;;;;:12;:18;;;;;;;;:26;;:18;:26;:53;;;;-1:-1:-1;;;;;;19732:23:0;;;;;;:19;:23;;;;;;;;19702:53;19698:355;;;19776:18;19816:5;19806:7;;19797:6;:16;;;;:::i;:::-;:24;;;;:::i;:::-;19776:45;-1:-1:-1;19840:23:0;19866:19;19776:45;19866:6;:19;:::i;:::-;19840:45;;19904:42;19920:4;19926:2;19930:15;19904;:42::i;:::-;19965:47;19981:4;17355:6;20001:10;19965:15;:47::i;:::-;20031:7;;19344:1378;;;:::o;19698:355::-;-1:-1:-1;;;;;20111:20:0;;20074:17;20111:20;;;:14;:20;;;;;;;;20110:21;:44;;;;-1:-1:-1;;;;;;20136:18:0;;;;;;:14;:18;;;;;;;;20135:19;20110:44;:104;;;;-1:-1:-1;;;;;;20159:18:0;;;;;;:12;:18;;;;;;;;:26;;:18;:26;;:54;;-1:-1:-1;;;;;;20189:16:0;;;;;;:12;:16;;;;;;;;:24;;:16;:24;20159:54;20106:401;;;20239:12;;-1:-1:-1;;;20239:12:0;;;;20231:39;;;;-1:-1:-1;;;20231:39:0;;6239:2:1;20231:39:0;;;6221:21:1;6278:2;6258:18;;;6251:30;-1:-1:-1;;;6297:18:1;;;6290:44;6351:18;;20231:39:0;6037:338:1;20231:39:0;-1:-1:-1;;;;;20289:18:0;;;;;;:12;:18;;;;;;;;:26;;:18;:26;20285:211;;;20367:5;20357:7;;20348:6;:16;;;;:::i;:::-;:24;;;;:::i;:::-;20336:36;;20285:211;;;-1:-1:-1;;;;;20398:16:0;;;;;;:12;:16;;;;;;;;:24;;:16;:24;20394:102;;;20475:5;20464:8;;20455:6;:17;;;;:::i;:::-;:25;;;;:::i;:::-;20443:37;;20394:102;20517:22;20542:18;20551:9;20542:6;:18;:::i;:::-;20517:43;;20571:41;20587:4;20593:2;20597:14;20571:15;:41::i;:::-;20627:13;;20623:92;;20657:46;20673:4;17355:6;20693:9;20657:15;:46::i;2338:191::-;2431:6;;;-1:-1:-1;;;;;2448:17:0;;;-1:-1:-1;;;;;;2448:17:0;;;;;;;2481:40;;2431:6;;;2448:17;2431:6;;2481:40;;2412:16;;2481:40;2401:128;2338:191;:::o;11704:659::-;-1:-1:-1;;;;;11835:18:0;;11827:68;;;;-1:-1:-1;;;11827:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11914:16:0;;11906:64;;;;-1:-1:-1;;;11906:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12056:15:0;;12034:19;12056:15;;;;;;;;;;;12090:21;;;;12082:72;;;;-1:-1:-1;;;12082:72:0;;5832:2:1;12082:72:0;;;5814:21:1;5871:2;5851:18;;;5844:30;5910:34;5890:18;;;5883:62;-1:-1:-1;;;5961:18:1;;;5954:36;6007:19;;12082:72:0;5630:402:1;12082:72:0;-1:-1:-1;;;;;12182:15:0;;;:9;:15;;;;;;;;;;;12200:20;;;12182:38;;12238:13;;;;;;;;:23;;12214:6;;12182:9;12238:23;;12214:6;;12238:23;:::i;:::-;;;;;;;;12294:2;-1:-1:-1;;;;;12279:26:0;12288:4;-1:-1:-1;;;;;12279:26:0;;12298:6;12279:26;;;;8886:25:1;;8874:2;8859:18;;8740:177;12279:26:0;;;;;;;;12318:37;18511:220;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;:::-;498:39;357:186;-1:-1:-1;;;357:186:1:o;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:254::-;1211:6;1219;1272:2;1260:9;1251:7;1247:23;1243:32;1240:52;;;1288:1;1285;1278:12;1240:52;1311:29;1330:9;1311:29;:::i;:::-;1301:39;;1359:35;1390:2;1379:9;1375:18;1359:35;:::i;1405:254::-;1473:6;1481;1534:2;1522:9;1513:7;1509:23;1505:32;1502:52;;;1550:1;1547;1540:12;1502:52;1573:29;1592:9;1573:29;:::i;:::-;1563:39;1649:2;1634:18;;;;1621:32;;-1:-1:-1;;;1405:254:1:o;1664:1202::-;1754:6;1762;1815:2;1803:9;1794:7;1790:23;1786:32;1783:52;;;1831:1;1828;1821:12;1783:52;1871:9;1858:23;1900:18;1941:2;1933:6;1930:14;1927:34;;;1957:1;1954;1947:12;1927:34;1995:6;1984:9;1980:22;1970:32;;2040:7;2033:4;2029:2;2025:13;2021:27;2011:55;;2062:1;2059;2052:12;2011:55;2098:2;2085:16;2120:4;2143:2;2139;2136:10;2133:36;;;2149:18;;:::i;:::-;2195:2;2192:1;2188:10;2227:2;2221:9;2290:2;2286:7;2281:2;2277;2273:11;2269:25;2261:6;2257:38;2345:6;2333:10;2330:22;2325:2;2313:10;2310:18;2307:46;2304:72;;;2356:18;;:::i;:::-;2392:2;2385:22;2442:18;;;2476:15;;;;-1:-1:-1;2511:11:1;;;2541;;;2537:20;;2534:33;-1:-1:-1;2531:53:1;;;2580:1;2577;2570:12;2531:53;2602:1;2593:10;;2612:169;2626:2;2623:1;2620:9;2612:169;;;2683:23;2702:3;2683:23;:::i;:::-;2671:36;;2644:1;2637:9;;;;;2727:12;;;;2759;;2612:169;;;-1:-1:-1;2800:6:1;-1:-1:-1;2825:35:1;;-1:-1:-1;2841:18:1;;;2825:35;:::i;:::-;2815:45;;;;;;1664:1202;;;;;:::o;2871:180::-;2930:6;2983:2;2971:9;2962:7;2958:23;2954:32;2951:52;;;2999:1;2996;2989:12;2951:52;-1:-1:-1;3022:23:1;;2871:180;-1:-1:-1;2871:180:1:o;3456:597::-;3568:4;3597:2;3626;3615:9;3608:21;3658:6;3652:13;3701:6;3696:2;3685:9;3681:18;3674:34;3726:1;3736:140;3750:6;3747:1;3744:13;3736:140;;;3845:14;;;3841:23;;3835:30;3811:17;;;3830:2;3807:26;3800:66;3765:10;;3736:140;;;3894:6;3891:1;3888:13;3885:91;;;3964:1;3959:2;3950:6;3939:9;3935:22;3931:31;3924:42;3885:91;-1:-1:-1;4037:2:1;4016:15;-1:-1:-1;;4012:29:1;3997:45;;;;4044:2;3993:54;;3456:597;-1:-1:-1;;;3456:597:1:o;4058:399::-;4260:2;4242:21;;;4299:2;4279:18;;;4272:30;4338:34;4333:2;4318:18;;4311:62;-1:-1:-1;;;4404:2:1;4389:18;;4382:33;4447:3;4432:19;;4058:399::o;7098:401::-;7300:2;7282:21;;;7339:2;7319:18;;;7312:30;7378:34;7373:2;7358:18;;7351:62;-1:-1:-1;;;7444:2:1;7429:18;;7422:35;7489:3;7474:19;;7098:401::o;7909:420::-;8111:2;8093:21;;;8150:2;8130:18;;;8123:30;8189:34;8184:2;8169:18;;8162:62;8260:26;8255:2;8240:18;;8233:54;8319:3;8304:19;;7909:420::o;9111:128::-;9151:3;9182:1;9178:6;9175:1;9172:13;9169:39;;;9188:18;;:::i;:::-;-1:-1:-1;9224:9:1;;9111:128::o;9244:217::-;9284:1;9310;9300:132;;9354:10;9349:3;9345:20;9342:1;9335:31;9389:4;9386:1;9379:15;9417:4;9414:1;9407:15;9300:132;-1:-1:-1;9446:9:1;;9244:217::o;9466:168::-;9506:7;9572:1;9568;9564:6;9560:14;9557:1;9554:21;9549:1;9542:9;9535:17;9531:45;9528:71;;;9579:18;;:::i;:::-;-1:-1:-1;9619:9:1;;9466:168::o;9639:125::-;9679:4;9707:1;9704;9701:8;9698:34;;;9712:18;;:::i;:::-;-1:-1:-1;9749:9:1;;9639:125::o;9769:380::-;9848:1;9844:12;;;;9891;;;9912:61;;9966:4;9958:6;9954:17;9944:27;;9912:61;10019:2;10011:6;10008:14;9988:18;9985:38;9982:161;;;10065:10;10060:3;10056:20;10053:1;10046:31;10100:4;10097:1;10090:15;10128:4;10125:1;10118:15;9982:161;;9769:380;;;:::o;10154:135::-;10193:3;-1:-1:-1;;10214:17:1;;10211:43;;;10234:18;;:::i;:::-;-1:-1:-1;10281:1:1;10270:13;;10154:135::o;10294:127::-;10355:10;10350:3;10346:20;10343:1;10336:31;10386:4;10383:1;10376:15;10410:4;10407:1;10400:15;10426:127;10487:10;10482:3;10478:20;10475:1;10468:31;10518:4;10515:1;10508:15;10542:4;10539:1;10532:15;10558:127;10619:10;10614:3;10610:20;10607:1;10600:31;10650:4;10647:1;10640:15;10674:4;10671:1;10664:15
Swarm Source
ipfs://70eec4e28b9479b873c7540c133d1ea11478396baac7bd7705c2851bf6c6897b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.