ERC-20
Overview
Max Total Supply
300 TAU
Holders
67
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xAF6eBC7a...c660539E0 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
TautrinoToken
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-05 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.6; // /** * @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; } } // /** * @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); } } } } // /** * @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); } /** * @dev Optional functions from the ERC20 standard. */ abstract contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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. * * 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; } } enum RebaseResult { Double, Park, Draw } contract TautrinoToken is ERC20Detailed { using SafeMath for uint; using Address for address; event LogTokenRebase(uint64 epoch, RebaseResult result, uint totalSupply); address public governance; uint private _baseTotalSupply; uint256 private _factor2; uint64 private _lastRebaseEpoch; RebaseResult private _lastRebaseResult; mapping(address => uint) private _baseBalances; // This is denominated in Fragments, because the gons-fragments conversion might change before // it's fully paid. mapping (address => mapping (address => uint)) private _allowedFragments; /** * @dev Throws if called by any account other than the governance. */ modifier onlyGovernance() { require(governance == msg.sender, "governance!"); _; } /** * @dev Constructor. * @param symbol symbol of token - TAU or TRINO. */ constructor(string memory symbol) public ERC20Detailed("Tautrino", symbol, 18) { governance = msg.sender; _baseTotalSupply = 300 * (10**uint(decimals())); _baseBalances[msg.sender] = totalSupply(); _factor2 = 0; emit Transfer(address(0x0), msg.sender, totalSupply()); } /** * @dev Update governance. * @param _governance The address of governance. */ function setGovernance(address _governance) external onlyGovernance { governance = _governance; } /** * @dev Rebase Tautrino token. * @return The total number of fragments after the supply adjustment. */ function rebase(RebaseResult _result) external onlyGovernance returns (uint) { if (_result == RebaseResult.Double) { // 2x total supply _factor2 = _factor2.add(1); } else if (_result == RebaseResult.Park) { // debased _factor2 = 0; } _lastRebaseResult = _result; _lastRebaseEpoch = uint64(block.timestamp); uint _totalSupply = totalSupply(); LogTokenRebase(_lastRebaseEpoch, _lastRebaseResult, _totalSupply); return _totalSupply; } /** * @return The total number of fragments. */ function totalSupply() public override view returns (uint) { return _baseTotalSupply.mul(2 ** _factor2); } /** * @param who The address to query. * @return The balance of the specified address. */ function balanceOf(address who) public override view returns (uint) { return _baseBalances[who].mul(2 ** _factor2); } /** * @dev Transfer tokens to a specified address. * @param to The address to transfer to. * @param value The amount to be transferred. * @return True on success, false otherwise. */ function transfer(address to, uint value) public override returns (bool) { uint merValue = value.div(2 ** _factor2); _baseBalances[msg.sender] = _baseBalances[msg.sender].sub(merValue); _baseBalances[to] = _baseBalances[to].add(merValue); emit Transfer(msg.sender, to, value); return true; } /** * @dev Function to check the amount of tokens that an owner has allowed to a spender. * @param owner_ The address which owns the funds. * @param spender The address which will spend the funds. * @return The number of tokens still available for the spender. */ function allowance(address owner_, address spender) public override view returns (uint) { return _allowedFragments[owner_][spender]; } /** * @dev Transfer tokens from one address to another. * @param from The address you want to send tokens from. * @param to The address you want to transfer to. * @param value The amount of tokens to be transferred. */ function transferFrom(address from, address to, uint value) public override returns (bool) { _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value); uint merValue = value.div(2 ** _factor2); _baseBalances[from] = _baseBalances[from].sub(merValue); _baseBalances[to] = _baseBalances[to].add(merValue); emit Transfer(from, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of * msg.sender. This method is included for ERC20 compatibility. * increaseAllowance and decreaseAllowance should be used instead. * Changing an allowance with this method brings the risk that someone may transfer both * the old and the new allowance - if they are both greater than zero - if a transfer * transaction is mined before the later approve() call is mined. * * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint value) public override returns (bool) { _allowedFragments[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Increase the amount of tokens that an owner has allowed to a spender. * This method should be used instead of approve() to avoid the double approval vulnerability * described above. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint addedValue) public returns (bool) { _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner has allowed to a spender. * * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint subtractedValue) public returns (bool) { uint oldValue = _allowedFragments[msg.sender][spender]; if (subtractedValue >= oldValue) { _allowedFragments[msg.sender][spender] = 0; } else { _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue); } emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]); return true; } /** * @return Last rebase epoch. */ function lastRebaseEpoch() public view returns (uint64) { return _lastRebaseEpoch; } /** * @return Last rebase result. */ function lastRebaseResult() public view returns (RebaseResult) { return _lastRebaseResult; } /** * @return Return factor2 */ function factor2() public view returns (uint) { return _factor2; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"symbol","type":"string"}],"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":false,"internalType":"uint64","name":"epoch","type":"uint64"},{"indexed":false,"internalType":"enum RebaseResult","name":"result","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogTokenRebase","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":[{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","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":"factor2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","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":"lastRebaseEpoch","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRebaseResult","outputs":[{"internalType":"enum RebaseResult","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum RebaseResult","name":"_result","type":"uint8"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","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
60806040523480156200001157600080fd5b506040516200142238038062001422833981810160405260208110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604081810190526008808252675461757472696e6f60c01b60208301908152919450859350601292506200011e916000916200027c565b508151620001349060019060208501906200027c565b506002805460ff191660ff9290921691909117610100600160a81b031916610100330217905550620001679050620001e3565b60ff16600a0a61012c026003556200017e620001ed565b336000818152600660205260408120929092556004829055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001cb6001600160e01b03620001ed16565b60408051918252519081900360200190a3506200031e565b60025460ff165b90565b60006200021060045460020a6003546200021560201b62000dda1790919060201c565b905090565b600082620002265750600062000276565b828202828482816200023457fe5b0414620002735760405162461bcd60e51b8152600401808060200182810382526021815260200180620014016021913960400191505060405180910390fd5b90505b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002bf57805160ff1916838001178555620002ef565b82800160010185558215620002ef579182015b82811115620002ef578251825591602001919060010190620002d2565b50620002fd92915062000301565b5090565b620001ea91905b80821115620002fd576000815560010162000308565b6110d3806200032e6000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c80635aa6e675116100b257806395d89b4111610081578063a9059cbb11610066578063a9059cbb146103bc578063ab033ea9146103f5578063dd62ed3e1461042a5761011b565b806395d89b411461037b578063a457c2d7146103835761011b565b80635aa6e675146102cb578063685a7fbf146102fc57806370a082311461031c57806373e07d0d1461034f5761011b565b8063313ce567116100ee578063313ce567146102475780633781b6af14610265578063395093511461028a5780634c880e22146102c35761011b565b806306fdde0314610120578063095ea7b31461019d57806318160ddd146101ea57806323b872dd14610204575b600080fd5b610128610465565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016257818101518382015260200161014a565b50505050905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d6600480360360408110156101b357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610519565b604080519115158252519081900360200190f35b6101f261058d565b60408051918252519081900360200190f35b6101d66004803603606081101561021a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604001356105ae565b61024f610724565b6040805160ff9092168252519081900360200190f35b61026d61072d565b6040805167ffffffffffffffff9092168252519081900360200190f35b6101d6600480360360408110156102a057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561073d565b6101f26107f0565b6102d36107f6565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101f26004803603602081101561031257600080fd5b503560ff16610817565b6101f26004803603602081101561033257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109ee565b610357610a2c565b6040518082600281111561036757fe5b60ff16815260200191505060405180910390f35b610128610a41565b6101d66004803603604081101561039957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610abf565b6101d6600480360360408110156103d257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610be2565b6104286004803603602081101561040b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610ccb565b005b6101f26004803603604081101561044057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610da2565b60008054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561050f5780601f106104e45761010080835404028352916020019161050f565b820191906000526020600020905b8154815290600101906020018083116104f257829003601f168201915b5050505050905090565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60006105a960045460020a600354610dda90919063ffffffff16565b905090565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602090815260408083203384529091528120546105ef908363ffffffff610e5416565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832033845290915281209190915560045461063a90849060020a63ffffffff610e9616565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260066020526040902054909150610673908263ffffffff610e5416565b73ffffffffffffffffffffffffffffffffffffffff80871660009081526006602052604080822093909355908616815220546106b5908263ffffffff610ed816565b73ffffffffffffffffffffffffffffffffffffffff80861660008181526006602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b60025460ff1690565b60055467ffffffffffffffff1690565b33600090815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205461077e908363ffffffff610ed816565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff89168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60045490565b600254610100900473ffffffffffffffffffffffffffffffffffffffff1681565b600254600090610100900473ffffffffffffffffffffffffffffffffffffffff1633146108a557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f676f7665726e616e636521000000000000000000000000000000000000000000604482015290519081900360640190fd5b60008260028111156108b357fe5b14156108d5576004546108cd90600163ffffffff610ed816565b6004556108ef565b60018260028111156108e357fe5b14156108ef5760006004555b600580548391907fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff166801000000000000000083600281111561092e57fe5b0217905550600580547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000164267ffffffffffffffff16179055600061097161058d565b60055460405167ffffffffffffffff82168082529293507f1a0563c607268e0c306ff7a2d7637986dfc8cbce5e454d969c3d530321a26bc8929168010000000000000000900460ff16908490602081018360028111156109cd57fe5b60ff168152602001828152602001935050505060405180910390a192915050565b60045473ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260408120549091610587919060020a63ffffffff610dda16565b60055468010000000000000000900460ff1690565b60018054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561050f5780601f106104e45761010080835404028352916020019161050f565b33600090815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054808310610b2d5733600090815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff88168452909152812055610b6f565b610b3d818463ffffffff610e5416565b33600090815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff891684529091529020555b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff89168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600080610bfd60045460020a84610e9690919063ffffffff16565b33600090815260066020526040902054909150610c20908263ffffffff610e5416565b336000908152600660205260408082209290925573ffffffffffffffffffffffffffffffffffffffff861681522054610c5f908263ffffffff610ed816565b73ffffffffffffffffffffffffffffffffffffffff85166000818152600660209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600254610100900473ffffffffffffffffffffffffffffffffffffffff163314610d5657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f676f7665726e616e636521000000000000000000000000000000000000000000604482015290519081900360640190fd5b6002805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205490565b600082610de957506000610587565b82820282848281610df657fe5b0414610e4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061107d6021913960400191505060405180910390fd5b9392505050565b6000610e4d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f4c565b6000610e4d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610ffd565b600082820183811015610e4d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610ff5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fba578181015183820152602001610fa2565b50505050905090810190601f168015610fe75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611066576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315610fba578181015183820152602001610fa2565b50600083858161107257fe5b049594505050505056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220b18f71c51b525c5ad4720372ab0bfaaf1ed63675a685c616889e5e8082e085b164736f6c63430006060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000055452494e4f000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c80635aa6e675116100b257806395d89b4111610081578063a9059cbb11610066578063a9059cbb146103bc578063ab033ea9146103f5578063dd62ed3e1461042a5761011b565b806395d89b411461037b578063a457c2d7146103835761011b565b80635aa6e675146102cb578063685a7fbf146102fc57806370a082311461031c57806373e07d0d1461034f5761011b565b8063313ce567116100ee578063313ce567146102475780633781b6af14610265578063395093511461028a5780634c880e22146102c35761011b565b806306fdde0314610120578063095ea7b31461019d57806318160ddd146101ea57806323b872dd14610204575b600080fd5b610128610465565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016257818101518382015260200161014a565b50505050905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d6600480360360408110156101b357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610519565b604080519115158252519081900360200190f35b6101f261058d565b60408051918252519081900360200190f35b6101d66004803603606081101561021a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604001356105ae565b61024f610724565b6040805160ff9092168252519081900360200190f35b61026d61072d565b6040805167ffffffffffffffff9092168252519081900360200190f35b6101d6600480360360408110156102a057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561073d565b6101f26107f0565b6102d36107f6565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101f26004803603602081101561031257600080fd5b503560ff16610817565b6101f26004803603602081101561033257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109ee565b610357610a2c565b6040518082600281111561036757fe5b60ff16815260200191505060405180910390f35b610128610a41565b6101d66004803603604081101561039957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610abf565b6101d6600480360360408110156103d257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610be2565b6104286004803603602081101561040b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610ccb565b005b6101f26004803603604081101561044057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610da2565b60008054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561050f5780601f106104e45761010080835404028352916020019161050f565b820191906000526020600020905b8154815290600101906020018083116104f257829003601f168201915b5050505050905090565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60006105a960045460020a600354610dda90919063ffffffff16565b905090565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602090815260408083203384529091528120546105ef908363ffffffff610e5416565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832033845290915281209190915560045461063a90849060020a63ffffffff610e9616565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260066020526040902054909150610673908263ffffffff610e5416565b73ffffffffffffffffffffffffffffffffffffffff80871660009081526006602052604080822093909355908616815220546106b5908263ffffffff610ed816565b73ffffffffffffffffffffffffffffffffffffffff80861660008181526006602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b60025460ff1690565b60055467ffffffffffffffff1690565b33600090815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205461077e908363ffffffff610ed816565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff89168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60045490565b600254610100900473ffffffffffffffffffffffffffffffffffffffff1681565b600254600090610100900473ffffffffffffffffffffffffffffffffffffffff1633146108a557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f676f7665726e616e636521000000000000000000000000000000000000000000604482015290519081900360640190fd5b60008260028111156108b357fe5b14156108d5576004546108cd90600163ffffffff610ed816565b6004556108ef565b60018260028111156108e357fe5b14156108ef5760006004555b600580548391907fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff166801000000000000000083600281111561092e57fe5b0217905550600580547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000164267ffffffffffffffff16179055600061097161058d565b60055460405167ffffffffffffffff82168082529293507f1a0563c607268e0c306ff7a2d7637986dfc8cbce5e454d969c3d530321a26bc8929168010000000000000000900460ff16908490602081018360028111156109cd57fe5b60ff168152602001828152602001935050505060405180910390a192915050565b60045473ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260408120549091610587919060020a63ffffffff610dda16565b60055468010000000000000000900460ff1690565b60018054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561050f5780601f106104e45761010080835404028352916020019161050f565b33600090815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054808310610b2d5733600090815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff88168452909152812055610b6f565b610b3d818463ffffffff610e5416565b33600090815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff891684529091529020555b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff89168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600080610bfd60045460020a84610e9690919063ffffffff16565b33600090815260066020526040902054909150610c20908263ffffffff610e5416565b336000908152600660205260408082209290925573ffffffffffffffffffffffffffffffffffffffff861681522054610c5f908263ffffffff610ed816565b73ffffffffffffffffffffffffffffffffffffffff85166000818152600660209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600254610100900473ffffffffffffffffffffffffffffffffffffffff163314610d5657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f676f7665726e616e636521000000000000000000000000000000000000000000604482015290519081900360640190fd5b6002805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205490565b600082610de957506000610587565b82820282848281610df657fe5b0414610e4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061107d6021913960400191505060405180910390fd5b9392505050565b6000610e4d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f4c565b6000610e4d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610ffd565b600082820183811015610e4d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610ff5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fba578181015183820152602001610fa2565b50505050905090810190601f168015610fe75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611066576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315610fba578181015183820152602001610fa2565b50600083858161107257fe5b049594505050505056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220b18f71c51b525c5ad4720372ab0bfaaf1ed63675a685c616889e5e8082e085b164736f6c63430006060033
Deployed Bytecode Sourcemap
15665:7101:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15665:7101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;14679:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14679:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20659:216;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20659:216:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;17908:120;;;:::i;:::-;;;;;;;;;;;;;;;;19575:440;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19575:440:0;;;;;;;;;;;;;;;;;;:::i;15531:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22356:98;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21250:304;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21250:304:0;;;;;;;;;:::i;22683:80::-;;;:::i;15860:25::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17293:540;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17293:540:0;;;;:::i;18151:131::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18151:131:0;;;;:::i;22518:106::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14881:87;;;:::i;21818:475::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21818:475:0;;;;;;;;;:::i;18509:341::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18509:341:0;;;;;;;;;:::i;17043:111::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17043:111:0;;;;:::i;:::-;;19163:148;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19163:148:0;;;;;;;;;;;:::i;14679:83::-;14749:5;14742:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14716:13;;14742:12;;14749:5;;14742:12;;14749:5;14742:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14679:83;:::o;20659:216::-;20765:10;20730:4;20747:29;;;:17;:29;;;;;;;;;:38;;;;;;;;;;;:46;;;20809:36;;;;;;;20730:4;;20747:38;;20765:10;;20809:36;;;;;;;;-1:-1:-1;20863:4:0;20659:216;;;;;:::o;17908:120::-;17961:4;17985:35;18011:8;;18006:1;:13;17985:16;;:20;;:35;;;;:::i;:::-;17978:42;;17908:120;:::o;19575:440::-;19715:23;;;19660:4;19715:23;;;:17;:23;;;;;;;;19739:10;19715:35;;;;;;;;:46;;19755:5;19715:46;:39;:46;:::i;:::-;19677:23;;;;;;;:17;:23;;;;;;;;19701:10;19677:35;;;;;;;:84;;;;19805:8;;19790:24;;:5;;19800:1;:13;19790:24;:9;:24;:::i;:::-;19847:19;;;;;;;:13;:19;;;;;;19774:40;;-1:-1:-1;19847:33:0;;19774:40;19847:33;:23;:33;:::i;:::-;19825:19;;;;;;;;:13;:19;;;;;;:55;;;;19911:17;;;;;;;:31;;19933:8;19911:31;:21;:31;:::i;:::-;19891:17;;;;;;;;:13;:17;;;;;;;;;:51;;;;19958:25;;;;;;;19891:17;;19958:25;;;;;;;;;;;;;-1:-1:-1;20003:4:0;;19575:440;-1:-1:-1;;;;19575:440:0:o;15531:83::-;15597:9;;;;15531:83;:::o;22356:98::-;22430:16;;;;22356:98;:::o;21250:304::-;21403:10;21327:4;21385:29;;;:17;:29;;;;;;;;;:38;;;;;;;;;;:54;;21428:10;21385:54;:42;:54;:::i;:::-;21362:10;21344:29;;;;:17;:29;;;;;;;;;:38;;;;;;;;;;;;:95;;;21455:69;;;;;;21344:38;;21455:69;;;;;;;;;;;-1:-1:-1;21542:4:0;21250:304;;;;:::o;22683:80::-;22747:8;;22683:80;:::o;15860:25::-;;;;;;;;;:::o;17293:540::-;16442:10;;17364:4;;16442:10;;;:24;:10;16456;16442:24;16434:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17396:19:::1;17385:7;:30;;;;;;;;;17381:198;;;17462:8;::::0;:15:::1;::::0;17475:1:::1;17462:15;:12;:15;:::i;:::-;17451:8;:26:::0;17381:198:::1;;;17510:17;17499:7;:28;;;;;;;;;17495:84;;;17566:1;17555:8;:12:::0;17495:84:::1;17591:17;:27:::0;;17611:7;;17591:17;:27;::::1;::::0;17611:7;17591:27:::1;::::0;::::1;;;;;;;;::::0;;-1:-1:-1;17629:16:0::1;:42:::0;;;::::1;17655:15;17629:42;;;::::0;;-1:-1:-1;17704:13:0::1;:11;:13::i;:::-;17743:16;::::0;17728:65:::1;::::0;17743:16:::1;::::0;::::1;17728:65:::0;;;17684:33;;-1:-1:-1;17728:65:0::1;::::0;17743:16;17761:17;;::::1;;;::::0;17684:33;;17728:65:::1;::::0;::::1;17761:17:::0;17728:65:::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17813:12:::0;17293:540;-1:-1:-1;;17293:540:0:o;18151:131::-;18265:8;;18237:18;;;18213:4;18237:18;;;:13;:18;;;;;;18213:4;;18237:37;;:18;18260:1;:13;18237:37;:22;:37;:::i;22518:106::-;22599:17;;;;;;;;22518:106::o;14881:87::-;14953:7;14946:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14920:13;;14946:14;;14953:7;;14946:14;;14953:7;14946:14;;;;;;;;;;;;;;;;;;;;;;;;21818:475;21951:10;21900:4;21933:29;;;:17;:29;;;;;;;;;:38;;;;;;;;;;21986:27;;;21982:197;;22044:10;22067:1;22026:29;;;:17;:29;;;;;;;;;:38;;;;;;;;;:42;21982:197;;;22138:29;:8;22151:15;22138:29;:12;:29;:::i;:::-;22115:10;22097:29;;;;:17;:29;;;;;;;;;:38;;;;;;;;;:70;21982:197;22203:10;22224:29;;;;:17;:29;;;;;;;;22194:69;;;22224:38;;;;;;;;;;;22194:69;;;;;;;;;22203:10;22194:69;;;;;;;;;;;-1:-1:-1;22281:4:0;;21818:475;-1:-1:-1;;;21818:475:0:o;18509:341::-;18576:4;18593:13;18609:24;18624:8;;18619:1;:13;18609:5;:9;;:24;;;;:::i;:::-;18686:10;18672:25;;;;:13;:25;;;;;;18593:40;;-1:-1:-1;18672:39:0;;18593:40;18672:39;:29;:39;:::i;:::-;18658:10;18644:25;;;;:13;:25;;;;;;:67;;;;:25;18742:17;;;;;;:31;;18764:8;18742:31;:21;:31;:::i;:::-;18722:17;;;;;;;:13;:17;;;;;;;;;:51;;;;18789:31;;;;;;;18722:17;;18798:10;;18789:31;;;;;;;;;;-1:-1:-1;18838:4:0;;18509:341;-1:-1:-1;;;18509:341:0:o;17043:111::-;16442:10;;;;;:24;:10;16456;16442:24;16434:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17122:10:::1;:24:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;17043:111::o;19163:148::-;19269:25;;;;19245:4;19269:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;19163:148::o;2262:471::-;2320:7;2565:6;2561:47;;-1:-1:-1;2595:1:0;2588:8;;2561:47;2632:5;;;2636:1;2632;:5;:1;2656:5;;;;;:10;2648:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2724:1;2262:471;-1:-1:-1;;;2262:471:0:o;1372:136::-;1430:7;1457:43;1461:1;1464;1457:43;;;;;;;;;;;;;;;;;:3;:43::i;3209:132::-;3267:7;3294:39;3298:1;3301;3294:39;;;;;;;;;;;;;;;;;:3;:39::i;908:181::-;966:7;998:5;;;1022:6;;;;1014:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1811:192;1897:7;1933:12;1925:6;;;;1917:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1917:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1969:5:0;;;1811:192::o;3837:278::-;3923:7;3958:12;3951:5;3943:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;3943:28:0;;3982:9;3998:1;3994;:5;;;;;;;3837:278;-1:-1:-1;;;;;3837:278:0:o
Swarm Source
ipfs://b18f71c51b525c5ad4720372ab0bfaaf1ed63675a685c616889e5e8082e085b1
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.