Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
262.916060243776325787 HODL
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
29.603542554974774992 HODLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HodlerToken
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-08 */ // File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.6.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/math/SafeMath.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.6.0; /** * @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) { 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; } } // File: @openzeppelin/contracts/utils/Address.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.6.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 guidelines: functions revert instead * of 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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 { } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.6.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: contracts/HodlerToken.sol // pragma solidity ^0.6.0; contract HodlerToken is ERC20Burnable { using SafeMath for uint256; address owner; uint256 burnRatio = 1; uint256 totalHodlers = 0; uint256 maxSupply = 1000 * (10 ** 18); struct Hodler { address _address; bool exists; } mapping(uint256 => address) private hodlers; mapping(address => Hodler) private addressToHodler; modifier _onlyOwner() { require(msg.sender == owner); _; } constructor() public payable ERC20("HodlerToken", "HODL") { owner = msg.sender; _mint(msg.sender, 100 * (10 ** 18)); hodlers[totalHodlers] = owner; totalHodlers++; } function setOwner(address _address) public _onlyOwner { owner = _address; } function transfer(address _to, uint256 _value) public override returns (bool) { uint256 toBurn = _value.mul(burnRatio).div(100); uint256 finalValue = _value.sub(toBurn); if (super.transfer(_to, finalValue)) { super.burn(toBurn); if (!addressToHodler[_to].exists) { hodlers[totalHodlers] = _to; addressToHodler[_to] = Hodler(_to, true); totalHodlers = totalHodlers.add(1); } _rewardHodlers(msg.sender, _to); return true; } return false; } function transferFrom(address _from, address _to, uint256 _value) public override returns (bool) { uint256 toBurn = _value.mul(burnRatio).div(100); uint256 finalValue = _value.sub(toBurn); if (super.transferFrom(_from, _to, finalValue)) { super.burnFrom(_from, toBurn); if (!addressToHodler[_to].exists) { hodlers[totalHodlers] = _to; addressToHodler[_to] = Hodler(_to, true); totalHodlers = totalHodlers.add(1); } _rewardHodlers(_from, _to); return true; } return false; } function _rewardHodlers(address _from, address _to) private { if (maxSupply - totalSupply() > 0) { uint256 toMint = _valueToMint(); uint256 totalBalance = 0; for(uint i = 0 ; i < totalHodlers; i++) { address hodler = hodlers[i]; if (hodler != owner && !isContract(hodler) && hodler != _from && hodler != _to) { totalBalance = totalBalance.add(balanceOf(hodler)); } } for(uint i = 0 ; i < totalHodlers; i++) { address hodler = hodlers[i]; if (hodler != owner && !isContract(hodler) && hodler != _from && hodler != _to) { uint256 balance = balanceOf(hodler); if (balance > 0) { uint256 reward = toMint.mul(balance).div(totalBalance); _mint(hodler, reward); } } } } } function _valueToMint () public view returns (uint256) { uint256 remaining = maxSupply - totalSupply(); if (remaining >= 10 ** 18) { return 10 ** 18; } else { return remaining; } } function isContract(address _address) public view returns (bool) { uint32 size; assembly { size := extcodesize(_address) } return (size > 0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":"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":"_valueToMint","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setOwner","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":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260016006556000600755683635c9adc5dea000006008556040518060400160405280600b81526020017f486f646c6572546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600481526020017f484f444c0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009f9291906200042d565b508060049080519060200190620000b89291906200042d565b506012600560006101000a81548160ff021916908360ff160217905550505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001333368056bc75e2d63100000620001c160201b60201c565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660096000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760008154809291906001019190505550620004dc565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000279600083836200039f60201b60201c565b6200029581600254620003a460201b620013d61790919060201c565b600281905550620002f3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003a460201b620013d61790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008082840190508381101562000423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200047057805160ff1916838001178555620004a1565b82800160010185558215620004a1579182015b82811115620004a057825182559160200191906001019062000483565b5b509050620004b09190620004b4565b5090565b620004d991905b80821115620004d5576000816000905550600101620004bb565b5090565b90565b61210980620004ec6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806342966c6811610097578063a457c2d711610066578063a457c2d714610513578063a9059cbb14610579578063cae3ba28146105df578063dd62ed3e146105fd57610100565b806342966c68146103bc57806370a08231146103ea57806379cc67901461044257806395d89b411461049057610100565b806318160ddd116100d357806318160ddd1461028e57806323b872dd146102ac578063313ce56714610332578063395093511461035657610100565b806306fdde0314610105578063095ea7b31461018857806313af4035146101ee5780631627905514610232575b600080fd5b61010d610675565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561014d578082015181840152602081019050610132565b50505050905090810190601f16801561017a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d46004803603604081101561019e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610717565b604051808215151515815260200191505060405180910390f35b6102306004803603602081101561020457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610735565b005b6102746004803603602081101561024857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107d3565b604051808215151515815260200191505060405180910390f35b6102966107ec565b6040518082815260200191505060405180910390f35b610318600480360360608110156102c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107f6565b604051808215151515815260200191505060405180910390f35b61033a610a13565b604051808260ff1660ff16815260200191505060405180910390f35b6103a26004803603604081101561036c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a2a565b604051808215151515815260200191505060405180910390f35b6103e8600480360360208110156103d257600080fd5b8101908080359060200190929190505050610add565b005b61042c6004803603602081101561040057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610af1565b6040518082815260200191505060405180910390f35b61048e6004803603604081101561045857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b39565b005b610498610b9b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104d85780820151818401526020810190506104bd565b50505050905090810190601f1680156105055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61055f6004803603604081101561052957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c3d565b604051808215151515815260200191505060405180910390f35b6105c56004803603604081101561058f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d0a565b604051808215151515815260200191505060405180910390f35b6105e7610f24565b6040518082815260200191505060405180910390f35b61065f6004803603604081101561061357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f5d565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561070d5780601f106106e25761010080835404028352916020019161070d565b820191906000526020600020905b8154815290600101906020018083116106f057829003601f168201915b5050505050905090565b600061072b610724610fe4565b8484610fec565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078f57600080fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008163ffffffff1611915050919050565b6000600254905090565b6000806108216064610813600654866111e390919063ffffffff16565b61126990919063ffffffff16565b9050600061083882856112b390919063ffffffff16565b90506108458686836112fd565b15610a05576108548683610b39565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff166109f0578460096000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff16815260200160011515815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548160ff0219169083151502179055509050506109e960016007546113d690919063ffffffff16565b6007819055505b6109fa868661145e565b600192505050610a0c565b6000925050505b9392505050565b6000600560009054906101000a900460ff16905090565b6000610ad3610a37610fe4565b84610ace8560016000610a48610fe4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d690919063ffffffff16565b610fec565b6001905092915050565b610aee610ae8610fe4565b82611755565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b788260405180606001604052806024815260200161202160249139610b6986610b64610fe4565b610f5d565b6119199092919063ffffffff16565b9050610b8c83610b86610fe4565b83610fec565b610b968383611755565b505050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610d00610c4a610fe4565b84610cfb856040518060600160405280602581526020016120af6025913960016000610c74610fe4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199092919063ffffffff16565b610fec565b6001905092915050565b600080610d356064610d27600654866111e390919063ffffffff16565b61126990919063ffffffff16565b90506000610d4c82856112b390919063ffffffff16565b9050610d5885826119d9565b15610f1757610d6682610add565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff16610f02578460096000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff16815260200160011515815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548160ff021916908315150217905550905050610efb60016007546113d690919063ffffffff16565b6007819055505b610f0c338661145e565b600192505050610f1e565b6000925050505b92915050565b600080610f2f6107ec565b600854039050670de0b6b3a76400008110610f5557670de0b6b3a7640000915050610f5a565b809150505b90565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061208b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611f906022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000808314156111f65760009050611263565b600082840290508284828161120757fe5b041461125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611fd86021913960400191505060405180910390fd5b809150505b92915050565b60006112ab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119f7565b905092915050565b60006112f583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611919565b905092915050565b600061130a848484611abd565b6113cb84611316610fe4565b6113c685604051806060016040528060288152602001611ff960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061137c610fe4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199092919063ffffffff16565b610fec565b600190509392505050565b600080828401905083811015611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006114686107ec565b60085403111561175157600061147c610f24565b9050600080905060008090505b6007548110156115d05760006009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561152f575061152d816107d3565b155b801561156757508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561159f57508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156115c2576115bf6115b082610af1565b846113d690919063ffffffff16565b92505b508080600101915050611489565b5060008090505b60075481101561174d5760006009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561167d575061167b816107d3565b155b80156116b557508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156116ed57508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b1561173f5760006116fd82610af1565b9050600081111561173d57600061172f8561172184896111e390919063ffffffff16565b61126990919063ffffffff16565b905061173b8382611d7e565b505b505b5080806001019150506115d7565b5050505b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120456021913960400191505060405180910390fd5b6117e782600083611f45565b61185281604051806060016040528060228152602001611f6e602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118a9816002546112b390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008383111582906119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561198b578082015181840152602081019050611970565b50505050905090810190601f1680156119b85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006119ed6119e6610fe4565b8484611abd565b6001905092915050565b60008083118290611aa3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a68578082015181840152602081019050611a4d565b50505050905090810190601f168015611a955780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611aaf57fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806120666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611f4b6023913960400191505060405180910390fd5b611bd4838383611f45565b611c3f81604051806060016040528060268152602001611fb2602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611cd2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611e2d60008383611f45565b611e42816002546113d690919063ffffffff16565b600281905550611e99816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201f26584dfaf17affc4eda8280f12061f9aeaee463ffe3a0a4b7469d33c8d803064736f6c63430006060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806342966c6811610097578063a457c2d711610066578063a457c2d714610513578063a9059cbb14610579578063cae3ba28146105df578063dd62ed3e146105fd57610100565b806342966c68146103bc57806370a08231146103ea57806379cc67901461044257806395d89b411461049057610100565b806318160ddd116100d357806318160ddd1461028e57806323b872dd146102ac578063313ce56714610332578063395093511461035657610100565b806306fdde0314610105578063095ea7b31461018857806313af4035146101ee5780631627905514610232575b600080fd5b61010d610675565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561014d578082015181840152602081019050610132565b50505050905090810190601f16801561017a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d46004803603604081101561019e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610717565b604051808215151515815260200191505060405180910390f35b6102306004803603602081101561020457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610735565b005b6102746004803603602081101561024857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107d3565b604051808215151515815260200191505060405180910390f35b6102966107ec565b6040518082815260200191505060405180910390f35b610318600480360360608110156102c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107f6565b604051808215151515815260200191505060405180910390f35b61033a610a13565b604051808260ff1660ff16815260200191505060405180910390f35b6103a26004803603604081101561036c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a2a565b604051808215151515815260200191505060405180910390f35b6103e8600480360360208110156103d257600080fd5b8101908080359060200190929190505050610add565b005b61042c6004803603602081101561040057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610af1565b6040518082815260200191505060405180910390f35b61048e6004803603604081101561045857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b39565b005b610498610b9b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104d85780820151818401526020810190506104bd565b50505050905090810190601f1680156105055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61055f6004803603604081101561052957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c3d565b604051808215151515815260200191505060405180910390f35b6105c56004803603604081101561058f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d0a565b604051808215151515815260200191505060405180910390f35b6105e7610f24565b6040518082815260200191505060405180910390f35b61065f6004803603604081101561061357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f5d565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561070d5780601f106106e25761010080835404028352916020019161070d565b820191906000526020600020905b8154815290600101906020018083116106f057829003601f168201915b5050505050905090565b600061072b610724610fe4565b8484610fec565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078f57600080fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008163ffffffff1611915050919050565b6000600254905090565b6000806108216064610813600654866111e390919063ffffffff16565b61126990919063ffffffff16565b9050600061083882856112b390919063ffffffff16565b90506108458686836112fd565b15610a05576108548683610b39565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff166109f0578460096000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff16815260200160011515815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548160ff0219169083151502179055509050506109e960016007546113d690919063ffffffff16565b6007819055505b6109fa868661145e565b600192505050610a0c565b6000925050505b9392505050565b6000600560009054906101000a900460ff16905090565b6000610ad3610a37610fe4565b84610ace8560016000610a48610fe4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d690919063ffffffff16565b610fec565b6001905092915050565b610aee610ae8610fe4565b82611755565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b788260405180606001604052806024815260200161202160249139610b6986610b64610fe4565b610f5d565b6119199092919063ffffffff16565b9050610b8c83610b86610fe4565b83610fec565b610b968383611755565b505050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610d00610c4a610fe4565b84610cfb856040518060600160405280602581526020016120af6025913960016000610c74610fe4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199092919063ffffffff16565b610fec565b6001905092915050565b600080610d356064610d27600654866111e390919063ffffffff16565b61126990919063ffffffff16565b90506000610d4c82856112b390919063ffffffff16565b9050610d5885826119d9565b15610f1757610d6682610add565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a900460ff16610f02578460096000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff16815260200160011515815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548160ff021916908315150217905550905050610efb60016007546113d690919063ffffffff16565b6007819055505b610f0c338661145e565b600192505050610f1e565b6000925050505b92915050565b600080610f2f6107ec565b600854039050670de0b6b3a76400008110610f5557670de0b6b3a7640000915050610f5a565b809150505b90565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061208b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611f906022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000808314156111f65760009050611263565b600082840290508284828161120757fe5b041461125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611fd86021913960400191505060405180910390fd5b809150505b92915050565b60006112ab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119f7565b905092915050565b60006112f583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611919565b905092915050565b600061130a848484611abd565b6113cb84611316610fe4565b6113c685604051806060016040528060288152602001611ff960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061137c610fe4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199092919063ffffffff16565b610fec565b600190509392505050565b600080828401905083811015611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006114686107ec565b60085403111561175157600061147c610f24565b9050600080905060008090505b6007548110156115d05760006009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561152f575061152d816107d3565b155b801561156757508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561159f57508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156115c2576115bf6115b082610af1565b846113d690919063ffffffff16565b92505b508080600101915050611489565b5060008090505b60075481101561174d5760006009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561167d575061167b816107d3565b155b80156116b557508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156116ed57508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b1561173f5760006116fd82610af1565b9050600081111561173d57600061172f8561172184896111e390919063ffffffff16565b61126990919063ffffffff16565b905061173b8382611d7e565b505b505b5080806001019150506115d7565b5050505b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120456021913960400191505060405180910390fd5b6117e782600083611f45565b61185281604051806060016040528060228152602001611f6e602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118a9816002546112b390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008383111582906119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561198b578082015181840152602081019050611970565b50505050905090810190601f1680156119b85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006119ed6119e6610fe4565b8484611abd565b6001905092915050565b60008083118290611aa3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a68578082015181840152602081019050611a4d565b50505050905090810190601f168015611a955780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611aaf57fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806120666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611f4b6023913960400191505060405180910390fd5b611bd4838383611f45565b611c3f81604051806060016040528060268152602001611fb2602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119199092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611cd2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611e2d60008383611f45565b611e42816002546113d690919063ffffffff16565b600281905550611e99816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201f26584dfaf17affc4eda8280f12061f9aeaee463ffe3a0a4b7469d33c8d803064736f6c63430006060033
Deployed Bytecode Sourcemap
27684:3517:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27684:3517:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17569:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17569:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19675:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19675:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28380:89;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28380:89:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;31001:197;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31001:197:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18644:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29088:639;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29088:639:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18496:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21048:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21048:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26898:91;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;26898:91:0;;;;;;;;;;;;;;;;;:::i;:::-;;18807:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18807:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27308:295;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;27308:295:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17771:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17771:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21769:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21769:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28477:603;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28477:603:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30746:247;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19377:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19377:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17569:83;17606:13;17639:5;17632:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17569:83;:::o;19675:169::-;19758:4;19775:39;19784:12;:10;:12::i;:::-;19798:7;19807:6;19775:8;:39::i;:::-;19832:4;19825:11;;19675:169;;;;:::o;28380:89::-;28132:5;;;;;;;;;;;28118:19;;:10;:19;;;28110:28;;12:1:-1;9;2:12;28110:28:0;28453:8:::1;28445:5;;:16;;;;;;;;;;;;;;;;;;28380:89:::0;:::o;31001:197::-;31060:4;31077:11;31143:8;31131:21;31123:29;;31188:1;31181:4;:8;;;31173:17;;;31001:197;;;:::o;18644:100::-;18697:7;18724:12;;18717:19;;18644:100;:::o;29088:639::-;29179:4;29196:14;29213:30;29239:3;29213:21;29224:9;;29213:6;:10;;:21;;;;:::i;:::-;:25;;:30;;;;:::i;:::-;29196:47;;29254:18;29275;29286:6;29275;:10;;:18;;;;:::i;:::-;29254:39;;29308:42;29327:5;29334:3;29339:10;29308:18;:42::i;:::-;29304:393;;;29367:29;29382:5;29389:6;29367:14;:29::i;:::-;29416:15;:20;29432:3;29416:20;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29411:208;;29488:3;29464:7;:21;29472:12;;29464:21;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;29533:17;;;;;;;;29540:3;29533:17;;;;;;29545:4;29533:17;;;;;29510:15;:20;29526:3;29510:20;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29584:19;29601:1;29584:12;;:16;;:19;;;;:::i;:::-;29569:12;:34;;;;29411:208;29633:26;29648:5;29655:3;29633:14;:26::i;:::-;29681:4;29674:11;;;;;;29304:393;29714:5;29707:12;;;;29088:639;;;;;;:::o;18496:83::-;18537:5;18562:9;;;;;;;;;;;18555:16;;18496:83;:::o;21048:218::-;21136:4;21153:83;21162:12;:10;:12::i;:::-;21176:7;21185:50;21224:10;21185:11;:25;21197:12;:10;:12::i;:::-;21185:25;;;;;;;;;;;;;;;:34;21211:7;21185:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21153:8;:83::i;:::-;21254:4;21247:11;;21048:218;;;;:::o;26898:91::-;26954:27;26960:12;:10;:12::i;:::-;26974:6;26954:5;:27::i;:::-;26898:91;:::o;18807:119::-;18873:7;18900:9;:18;18910:7;18900:18;;;;;;;;;;;;;;;;18893:25;;18807:119;;;:::o;27308:295::-;27385:26;27414:84;27451:6;27414:84;;;;;;;;;;;;;;;;;:32;27424:7;27433:12;:10;:12::i;:::-;27414:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;27385:113;;27511:51;27520:7;27529:12;:10;:12::i;:::-;27543:18;27511:8;:51::i;:::-;27573:22;27579:7;27588:6;27573:5;:22::i;:::-;27308:295;;;:::o;17771:87::-;17810:13;17843:7;17836:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17771:87;:::o;21769:269::-;21862:4;21879:129;21888:12;:10;:12::i;:::-;21902:7;21911:96;21950:15;21911:96;;;;;;;;;;;;;;;;;:11;:25;21923:12;:10;:12::i;:::-;21911:25;;;;;;;;;;;;;;;:34;21937:7;21911:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21879:8;:129::i;:::-;22026:4;22019:11;;21769:269;;;;:::o;28477:603::-;28549:4;28566:14;28583:30;28609:3;28583:21;28594:9;;28583:6;:10;;:21;;;;:::i;:::-;:25;;:30;;;;:::i;:::-;28566:47;;28624:18;28645;28656:6;28645;:10;;:18;;;;:::i;:::-;28624:39;;28678:31;28693:3;28698:10;28678:14;:31::i;:::-;28674:376;;;28726:18;28737:6;28726:10;:18::i;:::-;28764:15;:20;28780:3;28764:20;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28759:208;;28836:3;28812:7;:21;28820:12;;28812:21;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;28881:17;;;;;;;;28888:3;28881:17;;;;;;28893:4;28881:17;;;;;28858:15;:20;28874:3;28858:20;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28932:19;28949:1;28932:12;;:16;;:19;;;;:::i;:::-;28917:12;:34;;;;28759:208;28981:31;28996:10;29008:3;28981:14;:31::i;:::-;29034:4;29027:11;;;;;;28674:376;29067:5;29060:12;;;;28477:603;;;;;:::o;30746:247::-;30792:7;30812:17;30844:13;:11;:13::i;:::-;30832:9;;:25;30812:45;;30885:8;30872:9;:21;30868:118;;30917:8;30910:15;;;;;30868:118;30965:9;30958:16;;;30746:247;;:::o;19377:151::-;19466:7;19493:11;:18;19505:5;19493:18;;;;;;;;;;;;;;;:27;19512:7;19493:27;;;;;;;;;;;;;;;;19486:34;;19377:151;;;;:::o;657:106::-;710:15;745:10;738:17;;657:106;:::o;24914:346::-;25033:1;25016:19;;:5;:19;;;;25008:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25114:1;25095:21;;:7;:21;;;;25087:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25198:6;25168:11;:18;25180:5;25168:18;;;;;;;;;;;;;;;:27;25187:7;25168:27;;;;;;;;;;;;;;;:36;;;;25236:7;25220:32;;25229:5;25220:32;;;25245:6;25220:32;;;;;;;;;;;;;;;;;;24914:346;;;:::o;6161:471::-;6219:7;6469:1;6464;:6;6460:47;;;6494:1;6487:8;;;;6460:47;6519:9;6535:1;6531;:5;6519:17;;6564:1;6559;6555;:5;;;;;;:10;6547:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6623:1;6616:8;;;6161:471;;;;;:::o;7108:132::-;7166:7;7193:39;7197:1;7200;7193:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7186:46;;7108:132;;;;:::o;5271:136::-;5329:7;5356:43;5360:1;5363;5356:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5349:50;;5271:136;;;;:::o;20318:321::-;20424:4;20441:36;20451:6;20459:9;20470:6;20441:9;:36::i;:::-;20488:121;20497:6;20505:12;:10;:12::i;:::-;20519:89;20557:6;20519:89;;;;;;;;;;;;;;;;;:11;:19;20531:6;20519:19;;;;;;;;;;;;;;;:33;20539:12;:10;:12::i;:::-;20519:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20488:8;:121::i;:::-;20627:4;20620:11;;20318:321;;;;;:::o;4807:181::-;4865:7;4885:9;4901:1;4897;:5;4885:17;;4926:1;4921;:6;;4913:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4979:1;4972:8;;;4807:181;;;;:::o;29735:1003::-;29838:1;29822:13;:11;:13::i;:::-;29810:9;;:25;:29;29806:925;;;29856:14;29873;:12;:14::i;:::-;29856:31;;29902:20;29925:1;29902:24;;29945:6;29954:1;29945:10;;29941:293;29962:12;;29958:1;:16;29941:293;;;30000:14;30017:7;:10;30025:1;30017:10;;;;;;;;;;;;;;;;;;;;;30000:27;;30060:5;;;;;;;;;;;30050:15;;:6;:15;;;;:38;;;;;30070:18;30081:6;30070:10;:18::i;:::-;30069:19;30050:38;:57;;;;;30102:5;30092:15;;:6;:15;;;;30050:57;:74;;;;;30121:3;30111:13;;:6;:13;;;;30050:74;30046:173;;;30164:35;30181:17;30191:6;30181:9;:17::i;:::-;30164:12;:16;;:35;;;;:::i;:::-;30149:50;;30046:173;29941:293;29976:3;;;;;;;29941:293;;;;30254:6;30263:1;30254:10;;30250:470;30271:12;;30267:1;:16;30250:470;;;30309:14;30326:7;:10;30334:1;30326:10;;;;;;;;;;;;;;;;;;;;;30309:27;;30369:5;;;;;;;;;;;30359:15;;:6;:15;;;;:38;;;;;30379:18;30390:6;30379:10;:18::i;:::-;30378:19;30359:38;:57;;;;;30411:5;30401:15;;:6;:15;;;;30359:57;:74;;;;;30430:3;30420:13;;:6;:13;;;;30359:74;30355:350;;;30458:15;30476:17;30486:6;30476:9;:17::i;:::-;30458:35;;30530:1;30520:7;:11;30516:170;;;30560:14;30577:37;30601:12;30577:19;30588:7;30577:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;30560:54;;30641:21;30647:6;30655;30641:5;:21::i;:::-;30516:170;;30355:350;;30250:470;30285:3;;;;;;;30250:470;;;;29806:925;;;29735:1003;;:::o;24058:418::-;24161:1;24142:21;;:7;:21;;;;24134:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24214:49;24235:7;24252:1;24256:6;24214:20;:49::i;:::-;24297:68;24320:6;24297:68;;;;;;;;;;;;;;;;;:9;:18;24307:7;24297:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;24276:9;:18;24286:7;24276:18;;;;;;;;;;;;;;;:89;;;;24391:24;24408:6;24391:12;;:16;;:24;;;;:::i;:::-;24376:12;:39;;;;24457:1;24431:37;;24440:7;24431:37;;;24461:6;24431:37;;;;;;;;;;;;;;;;;;24058:418;;:::o;5710:192::-;5796:7;5829:1;5824;:6;;5832:12;5816:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5816:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5856:9;5872:1;5868;:5;5856:17;;5893:1;5886:8;;;5710:192;;;;;:::o;19139:175::-;19225:4;19242:42;19252:12;:10;:12::i;:::-;19266:9;19277:6;19242:9;:42::i;:::-;19302:4;19295:11;;19139:175;;;;:::o;7736:278::-;7822:7;7854:1;7850;:5;7857:12;7842:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7842:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7881:9;7897:1;7893;:5;;;;;;7881:17;;8005:1;7998:8;;;7736:278;;;;;:::o;22528:539::-;22652:1;22634:20;;:6;:20;;;;22626:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22736:1;22715:23;;:9;:23;;;;22707:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22791:47;22812:6;22820:9;22831:6;22791:20;:47::i;:::-;22871:71;22893:6;22871:71;;;;;;;;;;;;;;;;;:9;:17;22881:6;22871:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;22851:9;:17;22861:6;22851:17;;;;;;;;;;;;;;;:91;;;;22976:32;23001:6;22976:9;:20;22986:9;22976:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;22953:9;:20;22963:9;22953:20;;;;;;;;;;;;;;;:55;;;;23041:9;23024:35;;23033:6;23024:35;;;23052:6;23024:35;;;;;;;;;;;;;;;;;;22528:539;;;:::o;23348:378::-;23451:1;23432:21;;:7;:21;;;;23424:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23502:49;23531:1;23535:7;23544:6;23502:20;:49::i;:::-;23579:24;23596:6;23579:12;;:16;;:24;;;;:::i;:::-;23564:12;:39;;;;23635:30;23658:6;23635:9;:18;23645:7;23635:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;23614:9;:18;23624:7;23614:18;;;;;;;;;;;;;;;:51;;;;23702:7;23681:37;;23698:1;23681:37;;;23711:6;23681:37;;;;;;;;;;;;;;;;;;23348:378;;:::o;26285:92::-;;;;:::o
Swarm Source
ipfs://1f26584dfaf17affc4eda8280f12061f9aeaee463ffe3a0a4b7469d33c8d8030
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.