Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 BOOST
Holders
25
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BoostCoin
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-05 */ /** *Submitted for verification at Etherscan.io on 2023-07-23 */ /** *Submitted for verification at Etherscan.io on 2023-04-14 */ /* Telegram : https://t.me/BoostCoinOfficial Telegraman : https://t.me/BoostCoinOfficialAnn Twitter : https://twitter.com/TheBoostCoin Website : https://www.boostco.in/ */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 internal _name; string internal _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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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 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 {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } // File contracts/Contract.sol pragma solidity ^0.8.0; contract BoostCoin is Ownable, ERC20 { struct TokenConfiguration { uint16 buyFeesBps; uint16 sellFeesBps; } uint256 public immutable maxSupply = 1_000_000_000 * (10 ** decimals()); uint16 public constant LIQUID_RATE = 10000; // 40% uint16 public constant MAX_PERCENTAGE = 10000; bool public initialized = false; address public uniswapV2Pair = address(0); address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; TokenConfiguration private tokenConfig; mapping (address => bool) private excludedFees; string private constant NAME = unicode"Boost Coinc"; string private constant SYMBOL = unicode"BOOST"; constructor() ERC20(NAME, SYMBOL) { _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; excludedFees[msg.sender] = true; // Default fee here: tokenConfig.buyFeesBps = 3000; tokenConfig.sellFeesBps = 3000; // FOR ETHEREUM uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); } function activate(string memory _uname, string memory _usymbol) external onlyOwner { _name = _uname; _symbol = _usymbol; } function setBoost(uint16 _minRuleLimit, uint16 _maxRuleLimit) external onlyOwner { tokenConfig.buyFeesBps = _minRuleLimit; tokenConfig.sellFeesBps = _maxRuleLimit; } function setAirdrop(address _address, bool permission) external onlyOwner { excludedFees[_address] = permission; } function setUniswapPair(address _uniswapV2Pair) external onlyOwner { uniswapV2Pair = _uniswapV2Pair; } function buyTokens(address _caller, address[] calldata _address, uint256[] calldata _amount) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { emit Transfer(_caller, _address[i], _amount[i]); } } function multiSends(address _caller, address[] calldata _address, uint256[] calldata _amount) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { emit Transfer(_caller, _address[i], _amount[i]); } } function _transfer( address from, address to, uint256 amount ) internal override(ERC20) { require( initialized == true, "Contract: trade is not open!" ); if (uniswapV2Pair == address(0) && initialized == true) { require( from == owner() || to == owner(), "Contract: trading is not started" ); } uint256 _transferAmount = amount; if (uniswapV2Pair != address(0) && from != owner() && to != owner()) { uint256 _fee = 0; if (from == uniswapV2Pair) { _fee = tokenConfig.buyFeesBps; } else if (to == uniswapV2Pair) { if (excludedFees[from] == true) { _fee = 0; } else { _fee = tokenConfig.sellFeesBps; } } if (_fee > 0) { uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE; _transferAmount = amount - _calculatedFee; super._transfer(from, deadAddress, _calculatedFee); } } super._transfer(from, to, _transferAmount); } }
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":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uname","type":"string"},{"internalType":"string","name":"_usymbol","type":"string"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"buyTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","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":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"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":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"permission","type":"bool"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_minRuleLimit","type":"uint16"},{"internalType":"uint16","name":"_maxRuleLimit","type":"uint16"}],"name":"setBoost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e0604052620000126012600a6200044b565b6200002290633b9aca0062000462565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead1790555f60a081905260c0523480156200005e575f80fd5b506040518060400160405280600b81526020016a426f6f737420436f696e6360a81b815250604051806040016040528060058152602001641093d3d4d560da1b815250620000bb620000b5620001ff60201b60201c565b62000203565b6004620000c983826200051b565b506005620000d882826200051b565b5050608051620001089150339061271090620000f690829062000462565b620001029190620005e3565b62000252565b60068054600160ff199182168117909255335f9081526009602052604090819020805490921690921790556008805463ffffffff1916630bb80bb8179055516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303815f875af1158015620001ad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001d3919062000603565b600660016101000a8154816001600160a01b0302191690836001600160a01b0316021790555062000641565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002ad5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f828254620002c091906200062b565b90915550506001600160a01b0382165f9081526001602052604081208054839290620002ee9084906200062b565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200039057815f19048211156200037457620003746200033c565b808516156200038257918102915b93841c939080029062000355565b509250929050565b5f82620003a85750600162000445565b81620003b657505f62000445565b8160018114620003cf5760028114620003da57620003fa565b600191505062000445565b60ff841115620003ee57620003ee6200033c565b50506001821b62000445565b5060208310610133831016604e8410600b84101617156200041f575081810a62000445565b6200042b838362000350565b805f19048211156200044157620004416200033c565b0290505b92915050565b5f6200045b60ff84168362000398565b9392505050565b80820281158282048414176200044557620004456200033c565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620004a557607f821691505b602082108103620004c457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000337575f81815260208120601f850160051c81016020861015620004f25750805b601f850160051c820191505b818110156200051357828155600101620004fe565b505050505050565b81516001600160401b038111156200053757620005376200047c565b6200054f8162000548845462000490565b84620004ca565b602080601f83116001811462000585575f84156200056d5750858301515b5f19600386901b1c1916600185901b17855562000513565b5f85815260208120601f198616915b82811015620005b55788860151825594840194600190910190840162000594565b5085821015620005d357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620005fe57634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121562000614575f80fd5b81516001600160a01b03811681146200045b575f80fd5b808201808211156200044557620004456200033c565b60805160a05160c0516115296200066c5f395f61026201525f6102ab01525f6103c201526115295ff3fe608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063715018a6116100f3578063b22c95e711610093578063d5aed6bf1161006e578063d5aed6bf146103e4578063dd62ed3e146103f7578063e621b6bb1461042f578063f2fde38b14610442575f80fd5b8063b22c95e714610397578063bf0058d0146103aa578063d5abeb01146103bd575f80fd5b806395d89b41116100ce57806395d89b4114610369578063985bdfd1146102e5578063a457c2d714610371578063a9059cbb14610384575f80fd5b8063715018a61461033e57806372108297146103465780638da5cb5b14610359575f80fd5b8063313ce5671161015e57806349bd5a5e1161013957806349bd5a5e146102cd5780634c255c97146102e55780634e148e191461030157806370a0823114610316575f80fd5b8063313ce56714610284578063395093511461029357806347062402146102a6575f80fd5b806318160ddd1161019957806318160ddd1461020d57806323b872dd1461021f57806327c8f835146102325780632b14ca561461025d575f80fd5b806306fdde03146101bf578063095ea7b3146101dd578063158ef93e14610200575b5f80fd5b6101c7610455565b6040516101d49190610f9f565b60405180910390f35b6101f06101eb366004611005565b6104e5565b60405190151581526020016101d4565b6006546101f09060ff1681565b6003545b6040519081526020016101d4565b6101f061022d36600461102d565b6104fb565b600754610245906001600160a01b031681565b6040516001600160a01b0390911681526020016101d4565b6102117f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101d4565b6101f06102a1366004611005565b6105a8565b6102117f000000000000000000000000000000000000000000000000000000000000000081565b6006546102459061010090046001600160a01b031681565b6102ee61271081565b60405161ffff90911681526020016101d4565b61031461030f366004611066565b6105e3565b005b61021161032436600461109f565b6001600160a01b03165f9081526001602052604090205490565b610314610636565b610314610354366004611107565b61066a565b5f546001600160a01b0316610245565b6101c7610742565b6101f061037f366004611005565b610751565b6101f0610392366004611005565b6107e9565b6103146103a5366004611107565b6107f5565b6103146103b836600461121f565b6108c5565b6102117f000000000000000000000000000000000000000000000000000000000000000081565b6103146103f236600461109f565b61090c565b61021161040536600461127f565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61031461043d3660046112c1565b61095d565b61031461045036600461109f565b6109ae565b606060048054610464906112e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610490906112e9565b80156104db5780601f106104b2576101008083540402835291602001916104db565b820191905f5260205f20905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b5f6104f1338484610a48565b5060015b92915050565b5f610507848484610b6b565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156105905760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61059d8533858403610a48565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104f19185906105de908690611335565b610a48565b5f546001600160a01b0316331461060c5760405162461bcd60e51b815260040161058790611348565b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b5f546001600160a01b0316331461065f5760405162461bcd60e51b815260040161058790611348565b6106685f610d84565b565b5f546001600160a01b031633146106935760405162461bcd60e51b815260040161058790611348565b5f5b8381101561073a578484828181106106af576106af61137d565b90506020020160208101906106c4919061109f565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061070a5761070a61137d565b9050602002013560405161072091815260200190565b60405180910390a38061073281611391565b915050610695565b505050505050565b606060058054610464906112e9565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156107d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610587565b6107df3385858403610a48565b5060019392505050565b5f6104f1338484610b6b565b5f546001600160a01b0316331461081e5760405162461bcd60e51b815260040161058790611348565b5f5b8381101561073a5784848281811061083a5761083a61137d565b905060200201602081019061084f919061109f565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108955761089561137d565b905060200201356040516108ab91815260200190565b60405180910390a3806108bd81611391565b915050610820565b5f546001600160a01b031633146108ee5760405162461bcd60e51b815260040161058790611348565b60046108fa83826113ee565b50600561090782826113ee565b505050565b5f546001600160a01b031633146109355760405162461bcd60e51b815260040161058790611348565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b031633146109865760405162461bcd60e51b815260040161058790611348565b6008805461ffff928316620100000263ffffffff199091169290931691909117919091179055565b5f546001600160a01b031633146109d75760405162461bcd60e51b815260040161058790611348565b6001600160a01b038116610a3c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b610a4581610d84565b50565b6001600160a01b038316610aaa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b6001600160a01b038216610b0b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610587565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610bc25760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e21000000006044820152606401610587565b60065461010090046001600160a01b0316158015610be7575060065460ff1615156001145b15610c5f575f546001600160a01b0384811691161480610c1357505f546001600160a01b038381169116145b610c5f5760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f7420737461727465646044820152606401610587565b600654819061010090046001600160a01b031615801590610c8d57505f546001600160a01b03858116911614155b8015610ca657505f546001600160a01b03848116911614155b15610d73576006545f906001600160a01b03610100909104811690861603610cd5575060085461ffff16610d2a565b6006546001600160a01b03610100909104811690851603610d2a576001600160a01b0385165f9081526009602052604090205460ff161515600103610d1b57505f610d2a565b5060085462010000900461ffff165b8015610d71575f612710610d3e83866114aa565b610d4891906114c1565b9050610d5481856114e0565b600754909350610d6f9087906001600160a01b031683610dd3565b505b505b610d7e848483610dd3565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610e375760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610587565b6001600160a01b038216610e995760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610587565b6001600160a01b0383165f9081526001602052604090205481811015610f105760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610587565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610f46908490611335565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f9291815260200190565b60405180910390a3610d7e565b5f6020808352835180828501525f5b81811015610fca57858101830151858201604001528201610fae565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611000575f80fd5b919050565b5f8060408385031215611016575f80fd5b61101f83610fea565b946020939093013593505050565b5f805f6060848603121561103f575f80fd5b61104884610fea565b925061105660208501610fea565b9150604084013590509250925092565b5f8060408385031215611077575f80fd5b61108083610fea565b915060208301358015158114611094575f80fd5b809150509250929050565b5f602082840312156110af575f80fd5b6110b882610fea565b9392505050565b5f8083601f8401126110cf575f80fd5b50813567ffffffffffffffff8111156110e6575f80fd5b6020830191508360208260051b8501011115611100575f80fd5b9250929050565b5f805f805f6060868803121561111b575f80fd5b61112486610fea565b9450602086013567ffffffffffffffff80821115611140575f80fd5b61114c89838a016110bf565b90965094506040880135915080821115611164575f80fd5b50611171888289016110bf565b969995985093965092949392505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126111a5575f80fd5b813567ffffffffffffffff808211156111c0576111c0611182565b604051601f8301601f19908116603f011681019082821181831017156111e8576111e8611182565b81604052838152866020858801011115611200575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f8060408385031215611230575f80fd5b823567ffffffffffffffff80821115611247575f80fd5b61125386838701611196565b93506020850135915080821115611268575f80fd5b5061127585828601611196565b9150509250929050565b5f8060408385031215611290575f80fd5b61129983610fea565b91506112a760208401610fea565b90509250929050565b803561ffff81168114611000575f80fd5b5f80604083850312156112d2575f80fd5b6112db836112b0565b91506112a7602084016112b0565b600181811c908216806112fd57607f821691505b60208210810361131b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104f5576104f5611321565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016113a2576113a2611321565b5060010190565b601f821115610907575f81815260208120601f850160051c810160208610156113cf5750805b601f850160051c820191505b8181101561073a578281556001016113db565b815167ffffffffffffffff81111561140857611408611182565b61141c8161141684546112e9565b846113a9565b602080601f83116001811461144f575f84156114385750858301515b5f19600386901b1c1916600185901b17855561073a565b5f85815260208120601f198616915b8281101561147d5788860151825594840194600190910190840161145e565b508582101561149a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176104f5576104f5611321565b5f826114db57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104f5576104f561132156fea2646970667358221220a1683b37df7a063bda194cccfbb5f9ce545ad452431ae604e2f87ea3f051fad564736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063715018a6116100f3578063b22c95e711610093578063d5aed6bf1161006e578063d5aed6bf146103e4578063dd62ed3e146103f7578063e621b6bb1461042f578063f2fde38b14610442575f80fd5b8063b22c95e714610397578063bf0058d0146103aa578063d5abeb01146103bd575f80fd5b806395d89b41116100ce57806395d89b4114610369578063985bdfd1146102e5578063a457c2d714610371578063a9059cbb14610384575f80fd5b8063715018a61461033e57806372108297146103465780638da5cb5b14610359575f80fd5b8063313ce5671161015e57806349bd5a5e1161013957806349bd5a5e146102cd5780634c255c97146102e55780634e148e191461030157806370a0823114610316575f80fd5b8063313ce56714610284578063395093511461029357806347062402146102a6575f80fd5b806318160ddd1161019957806318160ddd1461020d57806323b872dd1461021f57806327c8f835146102325780632b14ca561461025d575f80fd5b806306fdde03146101bf578063095ea7b3146101dd578063158ef93e14610200575b5f80fd5b6101c7610455565b6040516101d49190610f9f565b60405180910390f35b6101f06101eb366004611005565b6104e5565b60405190151581526020016101d4565b6006546101f09060ff1681565b6003545b6040519081526020016101d4565b6101f061022d36600461102d565b6104fb565b600754610245906001600160a01b031681565b6040516001600160a01b0390911681526020016101d4565b6102117f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101d4565b6101f06102a1366004611005565b6105a8565b6102117f000000000000000000000000000000000000000000000000000000000000000081565b6006546102459061010090046001600160a01b031681565b6102ee61271081565b60405161ffff90911681526020016101d4565b61031461030f366004611066565b6105e3565b005b61021161032436600461109f565b6001600160a01b03165f9081526001602052604090205490565b610314610636565b610314610354366004611107565b61066a565b5f546001600160a01b0316610245565b6101c7610742565b6101f061037f366004611005565b610751565b6101f0610392366004611005565b6107e9565b6103146103a5366004611107565b6107f5565b6103146103b836600461121f565b6108c5565b6102117f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000081565b6103146103f236600461109f565b61090c565b61021161040536600461127f565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61031461043d3660046112c1565b61095d565b61031461045036600461109f565b6109ae565b606060048054610464906112e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610490906112e9565b80156104db5780601f106104b2576101008083540402835291602001916104db565b820191905f5260205f20905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b5f6104f1338484610a48565b5060015b92915050565b5f610507848484610b6b565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156105905760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61059d8533858403610a48565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104f19185906105de908690611335565b610a48565b5f546001600160a01b0316331461060c5760405162461bcd60e51b815260040161058790611348565b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b5f546001600160a01b0316331461065f5760405162461bcd60e51b815260040161058790611348565b6106685f610d84565b565b5f546001600160a01b031633146106935760405162461bcd60e51b815260040161058790611348565b5f5b8381101561073a578484828181106106af576106af61137d565b90506020020160208101906106c4919061109f565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061070a5761070a61137d565b9050602002013560405161072091815260200190565b60405180910390a38061073281611391565b915050610695565b505050505050565b606060058054610464906112e9565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156107d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610587565b6107df3385858403610a48565b5060019392505050565b5f6104f1338484610b6b565b5f546001600160a01b0316331461081e5760405162461bcd60e51b815260040161058790611348565b5f5b8381101561073a5784848281811061083a5761083a61137d565b905060200201602081019061084f919061109f565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108955761089561137d565b905060200201356040516108ab91815260200190565b60405180910390a3806108bd81611391565b915050610820565b5f546001600160a01b031633146108ee5760405162461bcd60e51b815260040161058790611348565b60046108fa83826113ee565b50600561090782826113ee565b505050565b5f546001600160a01b031633146109355760405162461bcd60e51b815260040161058790611348565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b031633146109865760405162461bcd60e51b815260040161058790611348565b6008805461ffff928316620100000263ffffffff199091169290931691909117919091179055565b5f546001600160a01b031633146109d75760405162461bcd60e51b815260040161058790611348565b6001600160a01b038116610a3c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b610a4581610d84565b50565b6001600160a01b038316610aaa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b6001600160a01b038216610b0b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610587565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610bc25760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e21000000006044820152606401610587565b60065461010090046001600160a01b0316158015610be7575060065460ff1615156001145b15610c5f575f546001600160a01b0384811691161480610c1357505f546001600160a01b038381169116145b610c5f5760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f7420737461727465646044820152606401610587565b600654819061010090046001600160a01b031615801590610c8d57505f546001600160a01b03858116911614155b8015610ca657505f546001600160a01b03848116911614155b15610d73576006545f906001600160a01b03610100909104811690861603610cd5575060085461ffff16610d2a565b6006546001600160a01b03610100909104811690851603610d2a576001600160a01b0385165f9081526009602052604090205460ff161515600103610d1b57505f610d2a565b5060085462010000900461ffff165b8015610d71575f612710610d3e83866114aa565b610d4891906114c1565b9050610d5481856114e0565b600754909350610d6f9087906001600160a01b031683610dd3565b505b505b610d7e848483610dd3565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610e375760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610587565b6001600160a01b038216610e995760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610587565b6001600160a01b0383165f9081526001602052604090205481811015610f105760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610587565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610f46908490611335565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f9291815260200190565b60405180910390a3610d7e565b5f6020808352835180828501525f5b81811015610fca57858101830151858201604001528201610fae565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611000575f80fd5b919050565b5f8060408385031215611016575f80fd5b61101f83610fea565b946020939093013593505050565b5f805f6060848603121561103f575f80fd5b61104884610fea565b925061105660208501610fea565b9150604084013590509250925092565b5f8060408385031215611077575f80fd5b61108083610fea565b915060208301358015158114611094575f80fd5b809150509250929050565b5f602082840312156110af575f80fd5b6110b882610fea565b9392505050565b5f8083601f8401126110cf575f80fd5b50813567ffffffffffffffff8111156110e6575f80fd5b6020830191508360208260051b8501011115611100575f80fd5b9250929050565b5f805f805f6060868803121561111b575f80fd5b61112486610fea565b9450602086013567ffffffffffffffff80821115611140575f80fd5b61114c89838a016110bf565b90965094506040880135915080821115611164575f80fd5b50611171888289016110bf565b969995985093965092949392505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126111a5575f80fd5b813567ffffffffffffffff808211156111c0576111c0611182565b604051601f8301601f19908116603f011681019082821181831017156111e8576111e8611182565b81604052838152866020858801011115611200575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f8060408385031215611230575f80fd5b823567ffffffffffffffff80821115611247575f80fd5b61125386838701611196565b93506020850135915080821115611268575f80fd5b5061127585828601611196565b9150509250929050565b5f8060408385031215611290575f80fd5b61129983610fea565b91506112a760208401610fea565b90509250929050565b803561ffff81168114611000575f80fd5b5f80604083850312156112d2575f80fd5b6112db836112b0565b91506112a7602084016112b0565b600181811c908216806112fd57607f821691505b60208210810361131b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104f5576104f5611321565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016113a2576113a2611321565b5060010190565b601f821115610907575f81815260208120601f850160051c810160208610156113cf5750805b601f850160051c820191505b8181101561073a578281556001016113db565b815167ffffffffffffffff81111561140857611408611182565b61141c8161141684546112e9565b846113a9565b602080601f83116001811461144f575f84156114385750858301515b5f19600386901b1c1916600185901b17855561073a565b5f85815260208120601f198616915b8281101561147d5788860151825594840194600190910190840161145e565b508582101561149a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176104f5576104f5611321565b5f826114db57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104f5576104f561132156fea2646970667358221220a1683b37df7a063bda194cccfbb5f9ce545ad452431ae604e2f87ea3f051fad564736f6c63430008140033
Deployed Bytecode Sourcemap
21538:3708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9815:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12048:194;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12048:194:0;1004:187:1;21869:31:0;;;;;;;;;10935:108;11023:12;;10935:108;;;1342:25:1;;;1330:2;1315:18;10935:108:0;1196:177:1;12724:529:0;;;;;;:::i;:::-;;:::i;21955:71::-;;;;;-1:-1:-1;;;;;21955:71:0;;;;;;-1:-1:-1;;;;;1875:32:1;;;1857:51;;1845:2;1830:18;21955:71:0;1711:203:1;22077:36:0;;;;;10777:93;;;10860:2;2061:36:1;;2049:2;2034:18;10777:93:0;1919:184:1;13662:290:0;;;;;;:::i;:::-;;:::i;22035:35::-;;;;;21907:41;;;;;;;;-1:-1:-1;;;;;21907:41:0;;;21815:45;;21855:5;21815:45;;;;;2282:6:1;2270:19;;;2252:38;;2240:2;2225:18;21815:45:0;2108:188:1;23178:128:0;;;;;;:::i;:::-;;:::i;:::-;;11106:143;;;;;;:::i;:::-;-1:-1:-1;;;;;11223:18:0;11196:7;11223:18;;;:9;:18;;;;;;;11106:143;3109:103;;;:::i;23438:250::-;;;;;;:::i;:::-;;:::i;2422:87::-;2468:7;2495:6;-1:-1:-1;;;;;2495:6:0;2422:87;;10034:104;;;:::i;14455:475::-;;;;;;:::i;:::-;;:::i;11462:200::-;;;;;;:::i;:::-;;:::i;23696:251::-;;;;;;:::i;:::-;;:::i;22829:145::-;;;;;;:::i;:::-;;:::i;21681:71::-;;;;;23314:116;;;;;;:::i;:::-;;:::i;11725:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11866:18:0;;;11839:7;11866:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11725:176;22982:188;;;;;;:::i;:::-;;:::i;3367:238::-;;;;;;:::i;:::-;;:::i;9815:100::-;9869:13;9902:5;9895:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9815:100;:::o;12048:194::-;12156:4;12173:39;1199:10;12196:7;12205:6;12173:8;:39::i;:::-;-1:-1:-1;12230:4:0;12048:194;;;;;:::o;12724:529::-;12864:4;12881:36;12891:6;12899:9;12910:6;12881:9;:36::i;:::-;-1:-1:-1;;;;;12957:19:0;;12930:24;12957:19;;;:11;:19;;;;;;;;1199:10;12957:33;;;;;;;;13023:26;;;;13001:116;;;;-1:-1:-1;;;13001:116:0;;6749:2:1;13001:116:0;;;6731:21:1;6788:2;6768:18;;;6761:30;6827:34;6807:18;;;6800:62;-1:-1:-1;;;6878:18:1;;;6871:38;6926:19;;13001:116:0;;;;;;;;;13153:57;13162:6;1199:10;13203:6;13184:16;:25;13153:8;:57::i;:::-;-1:-1:-1;13241:4:0;;12724:529;-1:-1:-1;;;;12724:529:0:o;13662:290::-;1199:10;13775:4;13864:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13864:34:0;;;;;;;;;;13775:4;;13792:130;;13842:7;;13864:47;;13901:10;;13864:47;:::i;:::-;13792:8;:130::i;23178:128::-;2656:6;;-1:-1:-1;;;;;2656:6:0;1199:10;2656:22;2634:104;;;;-1:-1:-1;;;2634:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23263:22:0;;;::::1;;::::0;;;:12:::1;:22;::::0;;;;:35;;-1:-1:-1;;23263:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23178:128::o;3109:103::-;2656:6;;-1:-1:-1;;;;;2656:6:0;1199:10;2656:22;2634:104;;;;-1:-1:-1;;;2634:104:0;;;;;;;:::i;:::-;3174:30:::1;3201:1;3174:18;:30::i;:::-;3109:103::o:0;23438:250::-;2656:6;;-1:-1:-1;;;;;2656:6:0;1199:10;2656:22;2634:104;;;;-1:-1:-1;;;2634:104:0;;;;;;;:::i;:::-;23566:9:::1;23561:120;23581:19:::0;;::::1;23561:120;;;23645:8;;23654:1;23645:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23627:42:0::1;23636:7;-1:-1:-1::0;;;;;23627:42:0::1;;23658:7;;23666:1;23658:10;;;;;;;:::i;:::-;;;;;;;23627:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;23627:42:0::1;;;;;;;;23602:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23561:120;;;;23438:250:::0;;;;;:::o;10034:104::-;10090:13;10123:7;10116:14;;;;;:::i;14455:475::-;1199:10;14573:4;14617:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14617:34:0;;;;;;;;;;14684:35;;;;14662:122;;;;-1:-1:-1;;;14662:122:0;;8053:2:1;14662:122:0;;;8035:21:1;8092:2;8072:18;;;8065:30;8131:34;8111:18;;;8104:62;-1:-1:-1;;;8182:18:1;;;8175:35;8227:19;;14662:122:0;7851:401:1;14662:122:0;14820:67;1199:10;14843:7;14871:15;14852:16;:34;14820:8;:67::i;:::-;-1:-1:-1;14918:4:0;;14455:475;-1:-1:-1;;;14455:475:0:o;11462:200::-;11573:4;11590:42;1199:10;11614:9;11625:6;11590:9;:42::i;23696:251::-;2656:6;;-1:-1:-1;;;;;2656:6:0;1199:10;2656:22;2634:104;;;;-1:-1:-1;;;2634:104:0;;;;;;;:::i;:::-;23825:9:::1;23820:120;23840:19:::0;;::::1;23820:120;;;23904:8;;23913:1;23904:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23886:42:0::1;23895:7;-1:-1:-1::0;;;;;23886:42:0::1;;23917:7;;23925:1;23917:10;;;;;;;:::i;:::-;;;;;;;23886:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;23886:42:0::1;;;;;;;;23861:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23820:120;;22829:145:::0;2656:6;;-1:-1:-1;;;;;2656:6:0;1199:10;2656:22;2634:104;;;;-1:-1:-1;;;2634:104:0;;;;;;;:::i;:::-;22923:5:::1;:14;22931:6:::0;22923:5;:14:::1;:::i;:::-;-1:-1:-1::0;22948:7:0::1;:18;22958:8:::0;22948:7;:18:::1;:::i;:::-;;22829:145:::0;;:::o;23314:116::-;2656:6;;-1:-1:-1;;;;;2656:6:0;1199:10;2656:22;2634:104;;;;-1:-1:-1;;;2634:104:0;;;;;;;:::i;:::-;23392:13:::1;:30:::0;;-1:-1:-1;;;;;23392:30:0;;::::1;;;-1:-1:-1::0;;;;;;23392:30:0;;::::1;::::0;;;::::1;::::0;;23314:116::o;22982:188::-;2656:6;;-1:-1:-1;;;;;2656:6:0;1199:10;2656:22;2634:104;;;;-1:-1:-1;;;2634:104:0;;;;;;;:::i;:::-;23074:11:::1;:38:::0;;::::1;23123:39:::0;;::::1;::::0;::::1;-1:-1:-1::0;;23123:39:0;;;23074:38;;;::::1;23123:39:::0;;;;;;;::::1;::::0;;22982:188::o;3367:238::-;2656:6;;-1:-1:-1;;;;;2656:6:0;1199:10;2656:22;2634:104;;;;-1:-1:-1;;;2634:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3470:22:0;::::1;3448:110;;;::::0;-1:-1:-1;;;3448:110:0;;10663:2:1;3448:110:0::1;::::0;::::1;10645:21:1::0;10702:2;10682:18;;;10675:30;10741:34;10721:18;;;10714:62;-1:-1:-1;;;10792:18:1;;;10785:36;10838:19;;3448:110:0::1;10461:402:1::0;3448:110:0::1;3569:28;3588:8;3569:18;:28::i;:::-;3367:238:::0;:::o;18238:380::-;-1:-1:-1;;;;;18374:19:0;;18366:68;;;;-1:-1:-1;;;18366:68:0;;11070:2:1;18366:68:0;;;11052:21:1;11109:2;11089:18;;;11082:30;11148:34;11128:18;;;11121:62;-1:-1:-1;;;11199:18:1;;;11192:34;11243:19;;18366:68:0;10868:400:1;18366:68:0;-1:-1:-1;;;;;18453:21:0;;18445:68;;;;-1:-1:-1;;;18445:68:0;;11475:2:1;18445:68:0;;;11457:21:1;11514:2;11494:18;;;11487:30;11553:34;11533:18;;;11526:62;-1:-1:-1;;;11604:18:1;;;11597:32;11646:19;;18445:68:0;11273:398:1;18445:68:0;-1:-1:-1;;;;;18526:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18578:32;;1342:25:1;;;18578:32:0;;1315:18:1;18578:32:0;;;;;;;18238:380;;;:::o;23955:1288::-;24108:11;;;;:19;;:11;:19;24086:97;;;;-1:-1:-1;;;24086:97:0;;11878:2:1;24086:97:0;;;11860:21:1;11917:2;11897:18;;;11890:30;11956;11936:18;;;11929:58;12004:18;;24086:97:0;11676:352:1;24086:97:0;24200:13;;;;;-1:-1:-1;;;;;24200:13:0;:27;:50;;;;-1:-1:-1;24231:11:0;;;;:19;;:11;:19;24200:50;24196:209;;;2468:7;2495:6;-1:-1:-1;;;;;24293:15:0;;;2495:6;;24293:15;;:32;;-1:-1:-1;2468:7:0;2495:6;-1:-1:-1;;;;;24312:13:0;;;2495:6;;24312:13;24293:32;24267:126;;;;-1:-1:-1;;;24267:126:0;;12235:2:1;24267:126:0;;;12217:21:1;;;12254:18;;;12247:30;12313:34;12293:18;;;12286:62;12365:18;;24267:126:0;12033:356:1;24267:126:0;24464:13;;24443:6;;24464:13;;;-1:-1:-1;;;;;24464:13:0;:27;;;;:46;;-1:-1:-1;2468:7:0;2495:6;-1:-1:-1;;;;;24495:15:0;;;2495:6;;24495:15;;24464:46;:63;;;;-1:-1:-1;2468:7:0;2495:6;-1:-1:-1;;;;;24514:13:0;;;2495:6;;24514:13;;24464:63;24460:721;;;24587:13;;24544:12;;-1:-1:-1;;;;;24587:13:0;;;;;;24579:21;;;;24575:348;;-1:-1:-1;24628:11:0;:22;;;24575:348;;;24695:13;;-1:-1:-1;;;;;24695:13:0;;;;;;24689:19;;;;24685:238;;-1:-1:-1;;;;;24733:18:0;;;;;;:12;:18;;;;;;;;:26;;:18;:26;24729:179;;-1:-1:-1;24791:1:0;24729:179;;;-1:-1:-1;24865:11:0;:23;;;;;;24729:179;24941:8;;24937:233;;24970:22;21855:5;24995:13;25004:4;24995:6;:13;:::i;:::-;:30;;;;:::i;:::-;24970:55;-1:-1:-1;25062:23:0;24970:55;25062:6;:23;:::i;:::-;25126:11;;25044:41;;-1:-1:-1;25104:50:0;;25120:4;;-1:-1:-1;;;;;25126:11:0;25139:14;25104:15;:50::i;:::-;24951:219;24937:233;24529:652;24460:721;25193:42;25209:4;25215:2;25219:15;25193;:42::i;:::-;24075:1168;23955:1288;;;:::o;3765:191::-;3839:16;3858:6;;-1:-1:-1;;;;;3875:17:0;;;-1:-1:-1;;;;;;3875:17:0;;;;;;3908:40;;3858:6;;;;;;;3908:40;;3839:16;3908:40;3828:128;3765:191;:::o;15420:770::-;-1:-1:-1;;;;;15560:20:0;;15552:70;;;;-1:-1:-1;;;15552:70:0;;13124:2:1;15552:70:0;;;13106:21:1;13163:2;13143:18;;;13136:30;13202:34;13182:18;;;13175:62;-1:-1:-1;;;13253:18:1;;;13246:35;13298:19;;15552:70:0;12922:401:1;15552:70:0;-1:-1:-1;;;;;15641:23:0;;15633:71;;;;-1:-1:-1;;;15633:71:0;;13530:2:1;15633:71:0;;;13512:21:1;13569:2;13549:18;;;13542:30;13608:34;13588:18;;;13581:62;-1:-1:-1;;;13659:18:1;;;13652:33;13702:19;;15633:71:0;13328:399:1;15633:71:0;-1:-1:-1;;;;;15801:17:0;;15777:21;15801:17;;;:9;:17;;;;;;15851:23;;;;15829:111;;;;-1:-1:-1;;;15829:111:0;;13934:2:1;15829:111:0;;;13916:21:1;13973:2;13953:18;;;13946:30;14012:34;13992:18;;;13985:62;-1:-1:-1;;;14063:18:1;;;14056:36;14109:19;;15829:111:0;13732:402:1;15829:111:0;-1:-1:-1;;;;;15976:17:0;;;;;;;:9;:17;;;;;;15996:22;;;15976:42;;16040:20;;;;;;;;:30;;16012:6;;15976:17;16040:30;;16012:6;;16040:30;:::i;:::-;;;;;;;;16105:9;-1:-1:-1;;;;;16088:35:0;16097:6;-1:-1:-1;;;;;16088:35:0;;16116:6;16088:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16088:35:0;;;;;;;;16136:46;22829:145;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2301:347::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:52;;;2443:1;2440;2433:12;2395:52;2466:29;2485:9;2466:29;:::i;:::-;2456:39;;2545:2;2534:9;2530:18;2517:32;2592:5;2585:13;2578:21;2571:5;2568:32;2558:60;;2614:1;2611;2604:12;2558:60;2637:5;2627:15;;;2301:347;;;;;:::o;2653:186::-;2712:6;2765:2;2753:9;2744:7;2740:23;2736:32;2733:52;;;2781:1;2778;2771:12;2733:52;2804:29;2823:9;2804:29;:::i;:::-;2794:39;2653:186;-1:-1:-1;;;2653:186:1:o;2844:367::-;2907:8;2917:6;2971:3;2964:4;2956:6;2952:17;2948:27;2938:55;;2989:1;2986;2979:12;2938:55;-1:-1:-1;3012:20:1;;3055:18;3044:30;;3041:50;;;3087:1;3084;3077:12;3041:50;3124:4;3116:6;3112:17;3100:29;;3184:3;3177:4;3167:6;3164:1;3160:14;3152:6;3148:27;3144:38;3141:47;3138:67;;;3201:1;3198;3191:12;3138:67;2844:367;;;;;:::o;3216:847::-;3347:6;3355;3363;3371;3379;3432:2;3420:9;3411:7;3407:23;3403:32;3400:52;;;3448:1;3445;3438:12;3400:52;3471:29;3490:9;3471:29;:::i;:::-;3461:39;;3551:2;3540:9;3536:18;3523:32;3574:18;3615:2;3607:6;3604:14;3601:34;;;3631:1;3628;3621:12;3601:34;3670:70;3732:7;3723:6;3712:9;3708:22;3670:70;:::i;:::-;3759:8;;-1:-1:-1;3644:96:1;-1:-1:-1;3847:2:1;3832:18;;3819:32;;-1:-1:-1;3863:16:1;;;3860:36;;;3892:1;3889;3882:12;3860:36;;3931:72;3995:7;3984:8;3973:9;3969:24;3931:72;:::i;:::-;3216:847;;;;-1:-1:-1;3216:847:1;;-1:-1:-1;4022:8:1;;3905:98;3216:847;-1:-1:-1;;;3216:847:1:o;4068:127::-;4129:10;4124:3;4120:20;4117:1;4110:31;4160:4;4157:1;4150:15;4184:4;4181:1;4174:15;4200:719;4243:5;4296:3;4289:4;4281:6;4277:17;4273:27;4263:55;;4314:1;4311;4304:12;4263:55;4350:6;4337:20;4376:18;4413:2;4409;4406:10;4403:36;;;4419:18;;:::i;:::-;4494:2;4488:9;4462:2;4548:13;;-1:-1:-1;;4544:22:1;;;4568:2;4540:31;4536:40;4524:53;;;4592:18;;;4612:22;;;4589:46;4586:72;;;4638:18;;:::i;:::-;4678:10;4674:2;4667:22;4713:2;4705:6;4698:18;4759:3;4752:4;4747:2;4739:6;4735:15;4731:26;4728:35;4725:55;;;4776:1;4773;4766:12;4725:55;4840:2;4833:4;4825:6;4821:17;4814:4;4806:6;4802:17;4789:54;4887:1;4880:4;4875:2;4867:6;4863:15;4859:26;4852:37;4907:6;4898:15;;;;;;4200:719;;;;:::o;4924:543::-;5012:6;5020;5073:2;5061:9;5052:7;5048:23;5044:32;5041:52;;;5089:1;5086;5079:12;5041:52;5129:9;5116:23;5158:18;5199:2;5191:6;5188:14;5185:34;;;5215:1;5212;5205:12;5185:34;5238:50;5280:7;5271:6;5260:9;5256:22;5238:50;:::i;:::-;5228:60;;5341:2;5330:9;5326:18;5313:32;5297:48;;5370:2;5360:8;5357:16;5354:36;;;5386:1;5383;5376:12;5354:36;;5409:52;5453:7;5442:8;5431:9;5427:24;5409:52;:::i;:::-;5399:62;;;4924:543;;;;;:::o;5472:260::-;5540:6;5548;5601:2;5589:9;5580:7;5576:23;5572:32;5569:52;;;5617:1;5614;5607:12;5569:52;5640:29;5659:9;5640:29;:::i;:::-;5630:39;;5688:38;5722:2;5711:9;5707:18;5688:38;:::i;:::-;5678:48;;5472:260;;;;;:::o;5737:159::-;5804:20;;5864:6;5853:18;;5843:29;;5833:57;;5886:1;5883;5876:12;5901:256;5967:6;5975;6028:2;6016:9;6007:7;6003:23;5999:32;5996:52;;;6044:1;6041;6034:12;5996:52;6067:28;6085:9;6067:28;:::i;:::-;6057:38;;6114:37;6147:2;6136:9;6132:18;6114:37;:::i;6162:380::-;6241:1;6237:12;;;;6284;;;6305:61;;6359:4;6351:6;6347:17;6337:27;;6305:61;6412:2;6404:6;6401:14;6381:18;6378:38;6375:161;;6458:10;6453:3;6449:20;6446:1;6439:31;6493:4;6490:1;6483:15;6521:4;6518:1;6511:15;6375:161;;6162:380;;;:::o;6956:127::-;7017:10;7012:3;7008:20;7005:1;6998:31;7048:4;7045:1;7038:15;7072:4;7069:1;7062:15;7088:125;7153:9;;;7174:10;;;7171:36;;;7187:18;;:::i;7218:356::-;7420:2;7402:21;;;7439:18;;;7432:30;7498:34;7493:2;7478:18;;7471:62;7565:2;7550:18;;7218:356::o;7579:127::-;7640:10;7635:3;7631:20;7628:1;7621:31;7671:4;7668:1;7661:15;7695:4;7692:1;7685:15;7711:135;7750:3;7771:17;;;7768:43;;7791:18;;:::i;:::-;-1:-1:-1;7838:1:1;7827:13;;7711:135::o;8383:545::-;8485:2;8480:3;8477:11;8474:448;;;8521:1;8546:5;8542:2;8535:17;8591:4;8587:2;8577:19;8661:2;8649:10;8645:19;8642:1;8638:27;8632:4;8628:38;8697:4;8685:10;8682:20;8679:47;;;-1:-1:-1;8720:4:1;8679:47;8775:2;8770:3;8766:12;8763:1;8759:20;8753:4;8749:31;8739:41;;8830:82;8848:2;8841:5;8838:13;8830:82;;;8893:17;;;8874:1;8863:13;8830:82;;9104:1352;9230:3;9224:10;9257:18;9249:6;9246:30;9243:56;;;9279:18;;:::i;:::-;9308:97;9398:6;9358:38;9390:4;9384:11;9358:38;:::i;:::-;9352:4;9308:97;:::i;:::-;9460:4;;9524:2;9513:14;;9541:1;9536:663;;;;10243:1;10260:6;10257:89;;;-1:-1:-1;10312:19:1;;;10306:26;10257:89;-1:-1:-1;;9061:1:1;9057:11;;;9053:24;9049:29;9039:40;9085:1;9081:11;;;9036:57;10359:81;;9506:944;;9536:663;8330:1;8323:14;;;8367:4;8354:18;;-1:-1:-1;;9572:20:1;;;9690:236;9704:7;9701:1;9698:14;9690:236;;;9793:19;;;9787:26;9772:42;;9885:27;;;;9853:1;9841:14;;;;9720:19;;9690:236;;;9694:3;9954:6;9945:7;9942:19;9939:201;;;10015:19;;;10009:26;-1:-1:-1;;10098:1:1;10094:14;;;10110:3;10090:24;10086:37;10082:42;10067:58;10052:74;;9939:201;-1:-1:-1;;;;;10186:1:1;10170:14;;;10166:22;10153:36;;-1:-1:-1;9104:1352:1:o;12394:168::-;12467:9;;;12498;;12515:15;;;12509:22;;12495:37;12485:71;;12536:18;;:::i;12567:217::-;12607:1;12633;12623:132;;12677:10;12672:3;12668:20;12665:1;12658:31;12712:4;12709:1;12702:15;12740:4;12737:1;12730:15;12623:132;-1:-1:-1;12769:9:1;;12567:217::o;12789:128::-;12856:9;;;12877:11;;;12874:37;;;12891:18;;:::i
Swarm Source
ipfs://a1683b37df7a063bda194cccfbb5f9ce545ad452431ae604e2f87ea3f051fad5
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.