ERC-20
Overview
Max Total Supply
105,140,078,999.999999858 JAN6
Holders
74
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,578,146.813132017650042492 JAN6Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JAN6
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-03-25 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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); } // 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; } } /** * @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 {} } // File: @openzeppelin/contracts/access/Ownable.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 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); } } contract JAN6 is ERC20, Ownable { // stop scammers/bot wallet from buy/sell/transfer tokens mapping(address => bool) public _isBot; address public burnWallet = 0x838b44826d742b27eC4Fb5C7956B1F616AaE247B; uint256 public lastBurnTimestamp; uint256 public nextBurnTimestamp; uint256 public burnPeriod = 7 days; uint256 public dailyBurnAmount = 106202100000000014200000000; event WeeklyBurn(uint256 _timestamp, uint256 _burnAmount); constructor() ERC20("JAN6", "JAN6") { nextBurnTimestamp = block.timestamp + burnPeriod; _mint(0x1cBe3A1D4556b9516Adb4b12B083b4F1917D1b2a, 76465511999999996000000000000); _mint(burnWallet, 29736588000000004000000000000); } function currentTimeSTamp() public view returns (uint256){ return block.timestamp; } function timeRemainForNextBurn() public view returns (uint256){ return nextBurnTimestamp - block.timestamp; } /** * @dev Destroys `_value` tokens from the caller. * @param _value, amount to burn * * See {ERC20-_burn}. */ function burn(uint256 _value) external { _burn(msg.sender, _value); } /** * perform burn from contract balance. @param _value, manualy burn tokens from contract balance */ function manualBurn(uint256 _value) external onlyOwner { _burn(burnWallet, _value); } /** * change daily token burn amount. @param _value, token amount with decimals (where 100 * 10**18 = 100 tokens) */ function changeDailyBurnAmount(uint256 _value) external onlyOwner { dailyBurnAmount = _value; } /** * change next burn Timestamp. @param _value, unixtimestamp */ function changeNextBurnTimestamp(uint256 _value) external onlyOwner { nextBurnTimestamp = _value; } /** * change burn period in days. @param _days, amount in days (where 86_400 = 1 day) */ function changeBurnPeriod(uint256 _days) external onlyOwner { burnPeriod = _days * 86_400; } /** * set wallet to stop scammers/bot wallet from buy/sell/transfer tokens @param wallet, wallet address @param itsBot, true or false */ function setBot(address wallet, bool itsBot) external onlyOwner { require(_isBot[wallet] != itsBot, "JAN6: That Wallet already set"); _isBot[wallet] = itsBot; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(!_isBot[to] && !_isBot[from], "JAN6: To/from address is bot"); if (amount == 0) { super._transfer(from, to, 0); return; } super._transfer(from, to, amount); if(balanceOf(burnWallet) > 0){ if(block.timestamp >= nextBurnTimestamp) _burn(burnWallet, dailyBurnAmount); lastBurnTimestamp = block.timestamp; nextBurnTimestamp = block.timestamp + burnPeriod; } } }
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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_burnAmount","type":"uint256"}],"name":"WeeklyBurn","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_days","type":"uint256"}],"name":"changeBurnPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"changeDailyBurnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"changeNextBurnTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTimeSTamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dailyBurnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"lastBurnTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"manualBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextBurnTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"wallet","type":"address"},{"internalType":"bool","name":"itsBot","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeRemainForNextBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
6080604052600780546001600160a01b03191673838b44826d742b27ec4fb5c7956b1f616aae247b17905562093a80600a556a57d92b608b56b705b2ce00600b553480156200004d57600080fd5b506040805180820182526004808252632520a71b60e11b60208084018290528451808601909552918452908301529060036200008a8382620002e3565b506004620000998282620002e3565b505050620000b6620000b06200011e60201b60201c565b62000122565b600a54620000c59042620003af565b600955620000f4731cbe3a1d4556b9516adb4b12b083b4f1917d1b2a6bf712c9ff87e3d5d03e6bc00062000174565b60075462000118906001600160a01b03166b601587719866d833d214400062000174565b620003d7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001cf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001e39190620003af565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026a57607f821691505b6020821081036200028b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023a57600081815260208120601f850160051c81016020861015620002ba5750805b601f850160051c820191505b81811015620002db57828155600101620002c6565b505050505050565b81516001600160401b03811115620002ff57620002ff6200023f565b620003178162000310845462000255565b8462000291565b602080601f8311600181146200034f5760008415620003365750858301515b600019600386901b1c1916600185901b178555620002db565b600085815260208120601f198616915b8281101562000380578886015182559484019460019091019084016200035f565b50858210156200039f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003d157634e487b7160e01b600052601160045260246000fd5b92915050565b610fc880620003e76000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a9059cbb11610097578063e2caa3a311610071578063e2caa3a31461039c578063e7c2db1c146103a2578063f2fde38b146103b5578063f9c046a3146103c857600080fd5b8063a9059cbb14610353578063abb8105214610366578063dd62ed3e1461038957600080fd5b806392e6af73116100d357806392e6af731461032657806395d89b411461032f578063993afdd114610337578063a457c2d71461034057600080fd5b806370a08231146102e4578063715018a61461030d5780638da5cb5b1461031557600080fd5b8063313ce567116101665780633b0a8ed7116101405780633b0a8ed7146102ac5780633d3d937d146102b557806342966c68146102be5780636dca6040146102d157600080fd5b8063313ce56714610277578063342aa8b514610286578063395093511461029957600080fd5b8063165db6ca116101a2578063165db6ca1461023157806318160ddd1461024757806323b635851461024f57806323b872dd1461026457600080fd5b806306228749146101c957806306fdde03146101f9578063095ea7b31461020e575b600080fd5b6007546101dc906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6102016103db565b6040516101f09190610d46565b61022161021c366004610db0565b61046d565b60405190151581526020016101f0565b610239610487565b6040519081526020016101f0565b600254610239565b61026261025d366004610dda565b61049c565b005b610221610272366004610df3565b6104bd565b604051601281526020016101f0565b610262610294366004610e2f565b6104e1565b6102216102a7366004610db0565b610589565b610239600a5481565b61023960085481565b6102626102cc366004610dda565b6105ab565b6102626102df366004610dda565b6105b5565b6102396102f2366004610e6b565b6001600160a01b031660009081526020819052604090205490565b6102626105c2565b6005546001600160a01b03166101dc565b610239600b5481565b6102016105d6565b61023960095481565b61022161034e366004610db0565b6105e5565b610221610361366004610db0565b610660565b610221610374366004610e6b565b60066020526000908152604090205460ff1681565b610239610397366004610e8d565b61066e565b42610239565b6102626103b0366004610dda565b610699565b6102626103c3366004610e6b565b6106a6565b6102626103d6366004610dda565b61071c565b6060600380546103ea90610ec0565b80601f016020809104026020016040519081016040528092919081815260200182805461041690610ec0565b80156104635780601f1061043857610100808354040283529160200191610463565b820191906000526020600020905b81548152906001019060200180831161044657829003601f168201915b5050505050905090565b60003361047b818585610737565b60019150505b92915050565b6000426009546104979190610f10565b905090565b6104a461085c565b6007546104ba906001600160a01b0316826108b6565b50565b6000336104cb8582856109e5565b6104d6858585610a5f565b506001949350505050565b6104e961085c565b6001600160a01b03821660009081526006602052604090205481151560ff90911615150361055e5760405162461bcd60e51b815260206004820152601d60248201527f4a414e363a20546861742057616c6c657420616c72656164792073657400000060448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60003361047b81858561059c838361066e565b6105a69190610f23565b610737565b6104ba33826108b6565b6105bd61085c565b600b55565b6105ca61085c565b6105d46000610b8e565b565b6060600480546103ea90610ec0565b600033816105f3828661066e565b9050838110156106535760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610555565b6104d68286868403610737565b60003361047b818585610a5f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106a161085c565b600955565b6106ae61085c565b6001600160a01b0381166107135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610555565b6104ba81610b8e565b61072461085c565b6107318162015180610f36565b600a5550565b6001600160a01b0383166107995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610555565b6001600160a01b0382166107fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610555565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146105d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610555565b6001600160a01b0382166109165760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610555565b6001600160a01b0382166000908152602081905260409020548181101561098a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610555565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161084f565b505050565b60006109f1848461066e565b90506000198114610a595781811015610a4c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610555565b610a598484848403610737565b50505050565b6001600160a01b038316610a855760405162461bcd60e51b815260040161055590610f4d565b6001600160a01b03821660009081526006602052604090205460ff16158015610ac757506001600160a01b03831660009081526006602052604090205460ff16155b610b135760405162461bcd60e51b815260206004820152601c60248201527f4a414e363a20546f2f66726f6d206164647265737320697320626f74000000006044820152606401610555565b80600003610b27576109e083836000610be0565b610b32838383610be0565b6007546001600160a01b0316600090815260208190526040902054156109e0576009544210610b7457600754600b54610b74916001600160a01b0316906108b6565b426008819055600a54610b8691610f23565b600955505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610c065760405162461bcd60e51b815260040161055590610f4d565b6001600160a01b038216610c685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610555565b6001600160a01b03831660009081526020819052604090205481811015610ce05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610555565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a59565b600060208083528351808285015260005b81811015610d7357858101830151858201604001528201610d57565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dab57600080fd5b919050565b60008060408385031215610dc357600080fd5b610dcc83610d94565b946020939093013593505050565b600060208284031215610dec57600080fd5b5035919050565b600080600060608486031215610e0857600080fd5b610e1184610d94565b9250610e1f60208501610d94565b9150604084013590509250925092565b60008060408385031215610e4257600080fd5b610e4b83610d94565b915060208301358015158114610e6057600080fd5b809150509250929050565b600060208284031215610e7d57600080fd5b610e8682610d94565b9392505050565b60008060408385031215610ea057600080fd5b610ea983610d94565b9150610eb760208401610d94565b90509250929050565b600181811c90821680610ed457607f821691505b602082108103610ef457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561048157610481610efa565b8082018082111561048157610481610efa565b808202811582820484141761048157610481610efa565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b60608201526080019056fea2646970667358221220d93295b855bf3eee881ad19580315d7b23085f15d3421b7a0b83c05851cabee864736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a9059cbb11610097578063e2caa3a311610071578063e2caa3a31461039c578063e7c2db1c146103a2578063f2fde38b146103b5578063f9c046a3146103c857600080fd5b8063a9059cbb14610353578063abb8105214610366578063dd62ed3e1461038957600080fd5b806392e6af73116100d357806392e6af731461032657806395d89b411461032f578063993afdd114610337578063a457c2d71461034057600080fd5b806370a08231146102e4578063715018a61461030d5780638da5cb5b1461031557600080fd5b8063313ce567116101665780633b0a8ed7116101405780633b0a8ed7146102ac5780633d3d937d146102b557806342966c68146102be5780636dca6040146102d157600080fd5b8063313ce56714610277578063342aa8b514610286578063395093511461029957600080fd5b8063165db6ca116101a2578063165db6ca1461023157806318160ddd1461024757806323b635851461024f57806323b872dd1461026457600080fd5b806306228749146101c957806306fdde03146101f9578063095ea7b31461020e575b600080fd5b6007546101dc906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6102016103db565b6040516101f09190610d46565b61022161021c366004610db0565b61046d565b60405190151581526020016101f0565b610239610487565b6040519081526020016101f0565b600254610239565b61026261025d366004610dda565b61049c565b005b610221610272366004610df3565b6104bd565b604051601281526020016101f0565b610262610294366004610e2f565b6104e1565b6102216102a7366004610db0565b610589565b610239600a5481565b61023960085481565b6102626102cc366004610dda565b6105ab565b6102626102df366004610dda565b6105b5565b6102396102f2366004610e6b565b6001600160a01b031660009081526020819052604090205490565b6102626105c2565b6005546001600160a01b03166101dc565b610239600b5481565b6102016105d6565b61023960095481565b61022161034e366004610db0565b6105e5565b610221610361366004610db0565b610660565b610221610374366004610e6b565b60066020526000908152604090205460ff1681565b610239610397366004610e8d565b61066e565b42610239565b6102626103b0366004610dda565b610699565b6102626103c3366004610e6b565b6106a6565b6102626103d6366004610dda565b61071c565b6060600380546103ea90610ec0565b80601f016020809104026020016040519081016040528092919081815260200182805461041690610ec0565b80156104635780601f1061043857610100808354040283529160200191610463565b820191906000526020600020905b81548152906001019060200180831161044657829003601f168201915b5050505050905090565b60003361047b818585610737565b60019150505b92915050565b6000426009546104979190610f10565b905090565b6104a461085c565b6007546104ba906001600160a01b0316826108b6565b50565b6000336104cb8582856109e5565b6104d6858585610a5f565b506001949350505050565b6104e961085c565b6001600160a01b03821660009081526006602052604090205481151560ff90911615150361055e5760405162461bcd60e51b815260206004820152601d60248201527f4a414e363a20546861742057616c6c657420616c72656164792073657400000060448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60003361047b81858561059c838361066e565b6105a69190610f23565b610737565b6104ba33826108b6565b6105bd61085c565b600b55565b6105ca61085c565b6105d46000610b8e565b565b6060600480546103ea90610ec0565b600033816105f3828661066e565b9050838110156106535760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610555565b6104d68286868403610737565b60003361047b818585610a5f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106a161085c565b600955565b6106ae61085c565b6001600160a01b0381166107135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610555565b6104ba81610b8e565b61072461085c565b6107318162015180610f36565b600a5550565b6001600160a01b0383166107995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610555565b6001600160a01b0382166107fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610555565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146105d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610555565b6001600160a01b0382166109165760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610555565b6001600160a01b0382166000908152602081905260409020548181101561098a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610555565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161084f565b505050565b60006109f1848461066e565b90506000198114610a595781811015610a4c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610555565b610a598484848403610737565b50505050565b6001600160a01b038316610a855760405162461bcd60e51b815260040161055590610f4d565b6001600160a01b03821660009081526006602052604090205460ff16158015610ac757506001600160a01b03831660009081526006602052604090205460ff16155b610b135760405162461bcd60e51b815260206004820152601c60248201527f4a414e363a20546f2f66726f6d206164647265737320697320626f74000000006044820152606401610555565b80600003610b27576109e083836000610be0565b610b32838383610be0565b6007546001600160a01b0316600090815260208190526040902054156109e0576009544210610b7457600754600b54610b74916001600160a01b0316906108b6565b426008819055600a54610b8691610f23565b600955505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610c065760405162461bcd60e51b815260040161055590610f4d565b6001600160a01b038216610c685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610555565b6001600160a01b03831660009081526020819052604090205481811015610ce05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610555565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a59565b600060208083528351808285015260005b81811015610d7357858101830151858201604001528201610d57565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dab57600080fd5b919050565b60008060408385031215610dc357600080fd5b610dcc83610d94565b946020939093013593505050565b600060208284031215610dec57600080fd5b5035919050565b600080600060608486031215610e0857600080fd5b610e1184610d94565b9250610e1f60208501610d94565b9150604084013590509250925092565b60008060408385031215610e4257600080fd5b610e4b83610d94565b915060208301358015158114610e6057600080fd5b809150509250929050565b600060208284031215610e7d57600080fd5b610e8682610d94565b9392505050565b60008060408385031215610ea057600080fd5b610ea983610d94565b9150610eb760208401610d94565b90509250929050565b600181811c90821680610ed457607f821691505b602082108103610ef457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561048157610481610efa565b8082018082111561048157610481610efa565b808202811582820484141761048157610481610efa565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b60608201526080019056fea2646970667358221220d93295b855bf3eee881ad19580315d7b23085f15d3421b7a0b83c05851cabee864736f6c63430008130033
Deployed Bytecode Sourcemap
19931:3214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20082:70;;;;;-1:-1:-1;;;;;20082:70:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;20082:70:0;;;;;;;;6337:100;;;:::i;:::-;;;;;;;:::i;8697:201::-;;;;;;:::i;:::-;;:::i;:::-;;;1377:14:1;;1370:22;1352:41;;1340:2;1325:18;8697:201:0;1212:187:1;20782:123:0;;;:::i;:::-;;;1550:25:1;;;1538:2;1523:18;20782:123:0;1404:177:1;7466:108:0;7554:12;;7466:108;;21274:99;;;;;;:::i;:::-;;:::i;:::-;;9478:261;;;;;;:::i;:::-;;:::i;7308:93::-;;;7391:2;2246:36:1;;2234:2;2219:18;7308:93:0;2104:184:1;22237:179:0;;;;;;:::i;:::-;;:::i;10148:238::-;;;;;;:::i;:::-;;:::i;20239:34::-;;;;;;20159:32;;;;;;21059:83;;;;;;:::i;:::-;;:::i;21520:109::-;;;;;;:::i;:::-;;:::i;7637:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7738:18:0;7711:7;7738:18;;;;;;;;;;;;7637:127;19112:103;;;:::i;18464:87::-;18537:6;;-1:-1:-1;;;;;18537:6:0;18464:87;;20280:60;;;;;;6556:104;;;:::i;20198:32::-;;;;;;10889:436;;;;;;:::i;:::-;;:::i;7970:193::-;;;;;;:::i;:::-;;:::i;20035:38::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;8226:151;;;;;;:::i;:::-;;:::i;20676:98::-;20751:15;20676:98;;21725:113;;;;;;:::i;:::-;;:::i;19370:201::-;;;;;;:::i;:::-;;:::i;21957:106::-;;;;;;:::i;:::-;;:::i;6337:100::-;6391:13;6424:5;6417:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6337:100;:::o;8697:201::-;8780:4;4221:10;8836:32;4221:10;8852:7;8861:6;8836:8;:32::i;:::-;8886:4;8879:11;;;8697:201;;;;;:::o;20782:123::-;20836:7;20882:15;20862:17;;:35;;;;:::i;:::-;20855:42;;20782:123;:::o;21274:99::-;18350:13;:11;:13::i;:::-;21346:10:::1;::::0;21340:25:::1;::::0;-1:-1:-1;;;;;21346:10:0::1;21358:6:::0;21340:5:::1;:25::i;:::-;21274:99:::0;:::o;9478:261::-;9575:4;4221:10;9633:38;9649:4;4221:10;9664:6;9633:15;:38::i;:::-;9682:27;9692:4;9698:2;9702:6;9682:9;:27::i;:::-;-1:-1:-1;9727:4:0;;9478:261;-1:-1:-1;;;;9478:261:0:o;22237:179::-;18350:13;:11;:13::i;:::-;-1:-1:-1;;;;;22318:14:0;::::1;;::::0;;;:6:::1;:14;::::0;;;;;:24;::::1;;:14;::::0;;::::1;:24;;::::0;22310:66:::1;;;::::0;-1:-1:-1;;;22310:66:0;;3953:2:1;22310:66:0::1;::::0;::::1;3935:21:1::0;3992:2;3972:18;;;3965:30;4031:31;4011:18;;;4004:59;4080:18;;22310:66:0::1;;;;;;;;;-1:-1:-1::0;;;;;22385:14:0;;;::::1;;::::0;;;:6:::1;:14;::::0;;;;:23;;-1:-1:-1;;22385:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22237:179::o;10148:238::-;10236:4;4221:10;10292:64;4221:10;10308:7;10345:10;10317:25;4221:10;10308:7;10317:9;:25::i;:::-;:38;;;;:::i;:::-;10292:8;:64::i;21059:83::-;21109:25;21115:10;21127:6;21109:5;:25::i;21520:109::-;18350:13;:11;:13::i;:::-;21597:15:::1;:24:::0;21520:109::o;19112:103::-;18350:13;:11;:13::i;:::-;19177:30:::1;19204:1;19177:18;:30::i;:::-;19112:103::o:0;6556:104::-;6612:13;6645:7;6638:14;;;;;:::i;10889:436::-;10982:4;4221:10;10982:4;11065:25;4221:10;11082:7;11065:9;:25::i;:::-;11038:52;;11129:15;11109:16;:35;;11101:85;;;;-1:-1:-1;;;11101:85:0;;4441:2:1;11101:85:0;;;4423:21:1;4480:2;4460:18;;;4453:30;4519:34;4499:18;;;4492:62;-1:-1:-1;;;4570:18:1;;;4563:35;4615:19;;11101:85:0;4239:401:1;11101:85:0;11222:60;11231:5;11238:7;11266:15;11247:16;:34;11222:8;:60::i;7970:193::-;8049:4;4221:10;8105:28;4221:10;8122:2;8126:6;8105:9;:28::i;8226:151::-;-1:-1:-1;;;;;8342:18:0;;;8315:7;8342:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8226:151::o;21725:113::-;18350:13;:11;:13::i;:::-;21804:17:::1;:26:::0;21725:113::o;19370:201::-;18350:13;:11;:13::i;:::-;-1:-1:-1;;;;;19459:22:0;::::1;19451:73;;;::::0;-1:-1:-1;;;19451:73:0;;4847:2:1;19451:73:0::1;::::0;::::1;4829:21:1::0;4886:2;4866:18;;;4859:30;4925:34;4905:18;;;4898:62;-1:-1:-1;;;4976:18:1;;;4969:36;5022:19;;19451:73:0::1;4645:402:1::0;19451:73:0::1;19535:28;19554:8;19535:18;:28::i;21957:106::-:0;18350:13;:11;:13::i;:::-;22041:14:::1;:5:::0;22049:6:::1;22041:14;:::i;:::-;22028:10;:27:::0;-1:-1:-1;21957:106:0:o;14882:346::-;-1:-1:-1;;;;;14984:19:0;;14976:68;;;;-1:-1:-1;;;14976:68:0;;5427:2:1;14976:68:0;;;5409:21:1;5466:2;5446:18;;;5439:30;5505:34;5485:18;;;5478:62;-1:-1:-1;;;5556:18:1;;;5549:34;5600:19;;14976:68:0;5225:400:1;14976:68:0;-1:-1:-1;;;;;15063:21:0;;15055:68;;;;-1:-1:-1;;;15055:68:0;;5832:2:1;15055:68:0;;;5814:21:1;5871:2;5851:18;;;5844:30;5910:34;5890:18;;;5883:62;-1:-1:-1;;;5961:18:1;;;5954:32;6003:19;;15055:68:0;5630:398:1;15055:68:0;-1:-1:-1;;;;;15136:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15188:32;;1550:25:1;;;15188:32:0;;1523:18:1;15188:32:0;;;;;;;;14882:346;;;:::o;18629:132::-;18537:6;;-1:-1:-1;;;;;18537:6:0;4221:10;18693:23;18685:68;;;;-1:-1:-1;;;18685:68:0;;6235:2:1;18685:68:0;;;6217:21:1;;;6254:18;;;6247:30;6313:34;6293:18;;;6286:62;6365:18;;18685:68:0;6033:356:1;13769:675:0;-1:-1:-1;;;;;13853:21:0;;13845:67;;;;-1:-1:-1;;;13845:67:0;;6596:2:1;13845:67:0;;;6578:21:1;6635:2;6615:18;;;6608:30;6674:34;6654:18;;;6647:62;-1:-1:-1;;;6725:18:1;;;6718:31;6766:19;;13845:67:0;6394:397:1;13845:67:0;-1:-1:-1;;;;;14012:18:0;;13987:22;14012:18;;;;;;;;;;;14049:24;;;;14041:71;;;;-1:-1:-1;;;14041:71:0;;6998:2:1;14041:71:0;;;6980:21:1;7037:2;7017:18;;;7010:30;7076:34;7056:18;;;7049:62;-1:-1:-1;;;7127:18:1;;;7120:32;7169:19;;14041:71:0;6796:398:1;14041:71:0;-1:-1:-1;;;;;14148:18:0;;:9;:18;;;;;;;;;;;14169:23;;;14148:44;;14287:12;:22;;;;;;;14338:37;1550:25:1;;;14148:9:0;;:18;14338:37;;1523:18:1;14338:37:0;1404:177:1;14388:48:0;13834:610;13769:675;;:::o;15519:419::-;15620:24;15647:25;15657:5;15664:7;15647:9;:25::i;:::-;15620:52;;-1:-1:-1;;15687:16:0;:37;15683:248;;15769:6;15749:16;:26;;15741:68;;;;-1:-1:-1;;;15741:68:0;;7401:2:1;15741:68:0;;;7383:21:1;7440:2;7420:18;;;7413:30;7479:31;7459:18;;;7452:59;7528:18;;15741:68:0;7199:353:1;15741:68:0;15853:51;15862:5;15869:7;15897:6;15878:16;:25;15853:8;:51::i;:::-;15609:329;15519:419;;;:::o;22426:716::-;-1:-1:-1;;;;;22558:18:0;;22550:68;;;;-1:-1:-1;;;22550:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22638:10:0;;;;;;:6;:10;;;;;;;;22637:11;:28;;;;-1:-1:-1;;;;;;22653:12:0;;;;;;:6;:12;;;;;;;;22652:13;22637:28;22629:69;;;;-1:-1:-1;;;22629:69:0;;8165:2:1;22629:69:0;;;8147:21:1;8204:2;8184:18;;;8177:30;8243;8223:18;;;8216:58;8291:18;;22629:69:0;7963:352:1;22629:69:0;22717:6;22727:1;22717:11;22713:93;;22745:28;22761:4;22767:2;22771:1;22745:15;:28::i;22713:93::-;22818:33;22834:4;22840:2;22844:6;22818:15;:33::i;:::-;22877:10;;-1:-1:-1;;;;;22877:10:0;22891:1;7738:18;;;;;;;;;;;22867:25;22864:259;;22930:17;;22911:15;:36;22908:88;;22968:10;;22980:15;;22962:34;;-1:-1:-1;;;;;22968:10:0;;22962:5;:34::i;:::-;23031:15;23011:17;:35;;;23099:10;;23081:28;;;:::i;:::-;23061:17;:48;22426:716;;;:::o;19731:191::-;19824:6;;;-1:-1:-1;;;;;19841:17:0;;;-1:-1:-1;;;;;;19841:17:0;;;;;;;19874:40;;19824:6;;;19841:17;19824:6;;19874:40;;19805:16;;19874:40;19794:128;19731:191;:::o;11795:806::-;-1:-1:-1;;;;;11892:18:0;;11884:68;;;;-1:-1:-1;;;11884:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11971:16:0;;11963:64;;;;-1:-1:-1;;;11963:64:0;;8522:2:1;11963:64:0;;;8504:21:1;8561:2;8541:18;;;8534:30;8600:34;8580:18;;;8573:62;-1:-1:-1;;;8651:18:1;;;8644:33;8694:19;;11963:64:0;8320:399:1;11963:64:0;-1:-1:-1;;;;;12113:15:0;;12091:19;12113:15;;;;;;;;;;;12147:21;;;;12139:72;;;;-1:-1:-1;;;12139:72:0;;8926:2:1;12139:72:0;;;8908:21:1;8965:2;8945:18;;;8938:30;9004:34;8984:18;;;8977:62;-1:-1:-1;;;9055:18:1;;;9048:36;9101:19;;12139:72:0;8724:402:1;12139:72:0;-1:-1:-1;;;;;12247:15:0;;;:9;:15;;;;;;;;;;;12265:20;;;12247:38;;12465:13;;;;;;;;;;:23;;;;;;12517:26;;1550:25:1;;;12465:13:0;;12517:26;;1523:18:1;12517:26:0;;;;;;;12556:37;13769:675;222:548:1;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;506:3;691:1;686:2;677:6;666:9;662:22;658:31;651:42;761:2;754;750:7;745:2;737:6;733:15;729:29;718:9;714:45;710:54;702:62;;;;222:548;;;;:::o;775:173::-;843:20;;-1:-1:-1;;;;;892:31:1;;882:42;;872:70;;938:1;935;928:12;872:70;775:173;;;:::o;953:254::-;1021:6;1029;1082:2;1070:9;1061:7;1057:23;1053:32;1050:52;;;1098:1;1095;1088:12;1050:52;1121:29;1140:9;1121:29;:::i;:::-;1111:39;1197:2;1182:18;;;;1169:32;;-1:-1:-1;;;953:254:1:o;1586:180::-;1645:6;1698:2;1686:9;1677:7;1673:23;1669:32;1666:52;;;1714:1;1711;1704:12;1666:52;-1:-1:-1;1737:23:1;;1586:180;-1:-1:-1;1586:180:1:o;1771:328::-;1848:6;1856;1864;1917:2;1905:9;1896:7;1892:23;1888:32;1885:52;;;1933:1;1930;1923:12;1885:52;1956:29;1975:9;1956:29;:::i;:::-;1946:39;;2004:38;2038:2;2027:9;2023:18;2004:38;:::i;:::-;1994:48;;2089:2;2078:9;2074:18;2061:32;2051:42;;1771:328;;;;;:::o;2293:347::-;2358:6;2366;2419:2;2407:9;2398:7;2394:23;2390:32;2387:52;;;2435:1;2432;2425:12;2387:52;2458:29;2477:9;2458:29;:::i;:::-;2448:39;;2537:2;2526:9;2522:18;2509:32;2584:5;2577:13;2570:21;2563:5;2560:32;2550:60;;2606:1;2603;2596:12;2550:60;2629:5;2619:15;;;2293:347;;;;;:::o;2645:186::-;2704:6;2757:2;2745:9;2736:7;2732:23;2728:32;2725:52;;;2773:1;2770;2763:12;2725:52;2796:29;2815:9;2796:29;:::i;:::-;2786:39;2645:186;-1:-1:-1;;;2645:186:1:o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;3486:127::-;3547:10;3542:3;3538:20;3535:1;3528:31;3578:4;3575:1;3568:15;3602:4;3599:1;3592:15;3618:128;3685:9;;;3706:11;;;3703:37;;;3720:18;;:::i;4109:125::-;4174:9;;;4195:10;;;4192:36;;;4208:18;;:::i;5052:168::-;5125:9;;;5156;;5173:15;;;5167:22;;5153:37;5143:71;;5194:18;;:::i;7557:401::-;7759:2;7741:21;;;7798:2;7778:18;;;7771:30;7837:34;7832:2;7817:18;;7810:62;-1:-1:-1;;;7903:2:1;7888:18;;7881:35;7948:3;7933:19;;7557:401::o
Swarm Source
ipfs://d93295b855bf3eee881ad19580315d7b23085f15d3421b7a0b83c05851cabee8
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.