Token migration announcement. Freeway token contract has migrated to a new address.
ERC-20
Overview
Max Total Supply
10,000,000,000 FWT
Holders
4,575 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
632,196.941742658889644768 FWTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FreewayToken
Compiler Version
v0.5.5+commit.47a71e8f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-29 */ // File: @openzeppelin\upgrades\contracts\Initializable.sol pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } // File: @openzeppelin\contracts-ethereum-package\contracts\GSN\Context.sol pragma solidity ^0.5.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. */ contract Context is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view 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-ethereum-package\contracts\token\ERC20\IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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-ethereum-package\contracts\math\SafeMath.sol pragma solidity ^0.5.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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin\contracts-ethereum-package\contracts\token\ERC20\ERC20.sol pragma solidity ^0.5.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 {ERC20Mintable}. * * 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 Initializable, Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public 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 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 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 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 is 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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } uint256[50] private ______gap; } // File: @openzeppelin\contracts-ethereum-package\contracts\token\ERC20\ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is Initializable, 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. */ function initialize(string memory name, string memory symbol, uint8 decimals) public initializer { _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; } uint256[50] private ______gap; } // File: contracts\FreewayToken.sol pragma solidity ^0.5.0; contract FreewayToken is Initializable, Context, ERC20, ERC20Detailed { /** * @dev Constructor that gives _msgSender() all of existing tokens. */ function initialize(address sender) public initializer { ERC20Detailed.initialize("FreewayToken", "FWT", 18); _mint(sender, 10000000000 * (10**uint256(decimals()))); } modifier onlyPayloadSize(uint256 numwords) { assert(msg.data.length == numwords * 32 + 4); _; } function transfer(address _to, uint256 _value) public onlyPayloadSize(2) returns (bool) { super.transfer(_to, _value); return true; } function approve(address _spender, uint256 _value) public returns (bool success) { if ((_value != 0) && (allowance(msg.sender, _spender) != 0)) { return false; } super.approve(_spender, _value); return true; } uint256[50] private ______gap; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
6080604052610fbb806100136000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c578063a457c2d711610066578063a457c2d71461038d578063a9059cbb146103b9578063c4d66de8146103e5578063dd62ed3e1461040b576100cf565b8063395093511461033357806370a082311461035f57806395d89b4114610385576100cf565b806306fdde03146100d4578063095ea7b3146101515780631624f6c61461019157806318160ddd146102c557806323b872dd146102df578063313ce56714610315575b600080fd5b6100dc610439565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356104d0565b604080519115158252519081900360200190f35b6102c3600480360360608110156101a757600080fd5b8101906020810181356401000000008111156101c257600080fd5b8201836020820111156101d457600080fd5b803590602001918460018302840111640100000000831117156101f657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561024957600080fd5b82018360208201111561025b57600080fd5b8035906020019184600183028401116401000000008311171561027d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061050c9050565b005b6102cd6105ed565b60408051918252519081900360200190f35b61017d600480360360608110156102f557600080fd5b506001600160a01b038135811691602081013590911690604001356105f3565b61031d610680565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561034957600080fd5b506001600160a01b038135169060200135610689565b6102cd6004803603602081101561037557600080fd5b50356001600160a01b03166106e6565b6100dc610701565b61017d600480360360408110156103a357600080fd5b506001600160a01b038135169060200135610762565b61017d600480360360408110156103cf57600080fd5b506001600160a01b0381351690602001356107d0565b6102c3600480360360208110156103fb57600080fd5b50356001600160a01b03166107f3565b6102cd6004803603604081101561042157600080fd5b506001600160a01b0381358116916020013516610918565b60688054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104c55780601f1061049a576101008083540402835291602001916104c5565b820191906000526020600020905b8154815290600101906020018083116104a857829003601f168201915b505050505090505b90565b600081158015906104e957506104e63384610918565b15155b156104f657506000610506565b6105008383610943565b50600190505b92915050565b600054610100900460ff16806105255750610525610957565b80610533575060005460ff16155b151561057357604051600160e51b62461bcd02815260040180806020018281038252602e815260200180610ef4602e913960400191505060405180910390fd5b600054610100900460ff1615801561059e576000805460ff1961ff0019909116610100171660011790555b83516105b1906068906020870190610dc8565b5082516105c5906069906020860190610dc8565b50606a805460ff191660ff841617905580156105e7576000805461ff00191690555b50505050565b60355490565b600061060084848461095d565b6106768461060c610ac5565b61067185604051806060016040528060288152602001610ecc602891396001600160a01b038a1660009081526034602052604081209061064a610ac5565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610ac916565b610b63565b5060019392505050565b606a5460ff1690565b60006106dd610696610ac5565b8461067185603460006106a7610ac5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c5916565b50600192915050565b6001600160a01b031660009081526033602052604090205490565b60698054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104c55780601f1061049a576101008083540402835291602001916104c5565b60006106dd61076f610ac5565b8461067185604051806060016040528060258152602001610f6b6025913960346000610799610ac5565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610ac916565b60006002366044146107de57fe5b6107e88484610cbd565b506001949350505050565b600054610100900460ff168061080c575061080c610957565b8061081a575060005460ff16155b151561085a57604051600160e51b62461bcd02815260040180806020018281038252602e815260200180610ef4602e913960400191505060405180910390fd5b600054610100900460ff16158015610885576000805460ff1961ff0019909116610100171660011790555b6108e46040518060400160405280600c81526020017f46726565776179546f6b656e0000000000000000000000000000000000000000815250604051806040016040528060038152602001600160ea1b621195d502815250601261050c565b610902826108f0610680565b60ff16600a0a6402540be40002610cd1565b8015610914576000805461ff00191690555b5050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b60006106dd610950610ac5565b8484610b63565b303b1590565b6001600160a01b03831615156109a757604051600160e51b62461bcd028152600401808060200182810382526025815260200180610f226025913960400191505060405180910390fd5b6001600160a01b03821615156109f157604051600160e51b62461bcd028152600401808060200182810382526023815260200180610e616023913960400191505060405180910390fd5b610a3481604051806060016040528060268152602001610ea6602691396001600160a01b038616600090815260336020526040902054919063ffffffff610ac916565b6001600160a01b038085166000908152603360205260408082209390935590841681522054610a69908263ffffffff610c5916565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b3390565b60008184841115610b5b57604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b20578181015183820152602001610b08565b50505050905090810190601f168015610b4d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383161515610bad57604051600160e51b62461bcd028152600401808060200182810382526024815260200180610f476024913960400191505060405180910390fd5b6001600160a01b0382161515610bf757604051600160e51b62461bcd028152600401808060200182810382526022815260200180610e846022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082820183811015610cb65760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006106dd610cca610ac5565b848461095d565b6001600160a01b0382161515610d315760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b603554610d44908263ffffffff610c5916565b6035556001600160a01b038216600090815260336020526040902054610d70908263ffffffff610c5916565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610e0957805160ff1916838001178555610e36565b82800160010185558215610e36579182015b82811115610e36578251825591602001919060010190610e1b565b50610e42929150610e46565b5090565b6104cd91905b80821115610e425760008155600101610e4c56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa165627a7a72305820dbbaa04c1f50d232c8e288b0210360df33f15e3886a38db2f480c6b655fa5a300029
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c578063a457c2d711610066578063a457c2d71461038d578063a9059cbb146103b9578063c4d66de8146103e5578063dd62ed3e1461040b576100cf565b8063395093511461033357806370a082311461035f57806395d89b4114610385576100cf565b806306fdde03146100d4578063095ea7b3146101515780631624f6c61461019157806318160ddd146102c557806323b872dd146102df578063313ce56714610315575b600080fd5b6100dc610439565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356104d0565b604080519115158252519081900360200190f35b6102c3600480360360608110156101a757600080fd5b8101906020810181356401000000008111156101c257600080fd5b8201836020820111156101d457600080fd5b803590602001918460018302840111640100000000831117156101f657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561024957600080fd5b82018360208201111561025b57600080fd5b8035906020019184600183028401116401000000008311171561027d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061050c9050565b005b6102cd6105ed565b60408051918252519081900360200190f35b61017d600480360360608110156102f557600080fd5b506001600160a01b038135811691602081013590911690604001356105f3565b61031d610680565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561034957600080fd5b506001600160a01b038135169060200135610689565b6102cd6004803603602081101561037557600080fd5b50356001600160a01b03166106e6565b6100dc610701565b61017d600480360360408110156103a357600080fd5b506001600160a01b038135169060200135610762565b61017d600480360360408110156103cf57600080fd5b506001600160a01b0381351690602001356107d0565b6102c3600480360360208110156103fb57600080fd5b50356001600160a01b03166107f3565b6102cd6004803603604081101561042157600080fd5b506001600160a01b0381358116916020013516610918565b60688054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104c55780601f1061049a576101008083540402835291602001916104c5565b820191906000526020600020905b8154815290600101906020018083116104a857829003601f168201915b505050505090505b90565b600081158015906104e957506104e63384610918565b15155b156104f657506000610506565b6105008383610943565b50600190505b92915050565b600054610100900460ff16806105255750610525610957565b80610533575060005460ff16155b151561057357604051600160e51b62461bcd02815260040180806020018281038252602e815260200180610ef4602e913960400191505060405180910390fd5b600054610100900460ff1615801561059e576000805460ff1961ff0019909116610100171660011790555b83516105b1906068906020870190610dc8565b5082516105c5906069906020860190610dc8565b50606a805460ff191660ff841617905580156105e7576000805461ff00191690555b50505050565b60355490565b600061060084848461095d565b6106768461060c610ac5565b61067185604051806060016040528060288152602001610ecc602891396001600160a01b038a1660009081526034602052604081209061064a610ac5565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610ac916565b610b63565b5060019392505050565b606a5460ff1690565b60006106dd610696610ac5565b8461067185603460006106a7610ac5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c5916565b50600192915050565b6001600160a01b031660009081526033602052604090205490565b60698054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104c55780601f1061049a576101008083540402835291602001916104c5565b60006106dd61076f610ac5565b8461067185604051806060016040528060258152602001610f6b6025913960346000610799610ac5565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610ac916565b60006002366044146107de57fe5b6107e88484610cbd565b506001949350505050565b600054610100900460ff168061080c575061080c610957565b8061081a575060005460ff16155b151561085a57604051600160e51b62461bcd02815260040180806020018281038252602e815260200180610ef4602e913960400191505060405180910390fd5b600054610100900460ff16158015610885576000805460ff1961ff0019909116610100171660011790555b6108e46040518060400160405280600c81526020017f46726565776179546f6b656e0000000000000000000000000000000000000000815250604051806040016040528060038152602001600160ea1b621195d502815250601261050c565b610902826108f0610680565b60ff16600a0a6402540be40002610cd1565b8015610914576000805461ff00191690555b5050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b60006106dd610950610ac5565b8484610b63565b303b1590565b6001600160a01b03831615156109a757604051600160e51b62461bcd028152600401808060200182810382526025815260200180610f226025913960400191505060405180910390fd5b6001600160a01b03821615156109f157604051600160e51b62461bcd028152600401808060200182810382526023815260200180610e616023913960400191505060405180910390fd5b610a3481604051806060016040528060268152602001610ea6602691396001600160a01b038616600090815260336020526040902054919063ffffffff610ac916565b6001600160a01b038085166000908152603360205260408082209390935590841681522054610a69908263ffffffff610c5916565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b3390565b60008184841115610b5b57604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b20578181015183820152602001610b08565b50505050905090810190601f168015610b4d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383161515610bad57604051600160e51b62461bcd028152600401808060200182810382526024815260200180610f476024913960400191505060405180910390fd5b6001600160a01b0382161515610bf757604051600160e51b62461bcd028152600401808060200182810382526022815260200180610e846022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082820183811015610cb65760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006106dd610cca610ac5565b848461095d565b6001600160a01b0382161515610d315760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b603554610d44908263ffffffff610c5916565b6035556001600160a01b038216600090815260336020526040902054610d70908263ffffffff610c5916565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610e0957805160ff1916838001178555610e36565b82800160010185558215610e36579182015b82811115610e36578251825591602001919060010190610e1b565b50610e42929150610e46565b5090565b6104cd91905b80821115610e425760008155600101610e4c56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa165627a7a72305820dbbaa04c1f50d232c8e288b0210360df33f15e3886a38db2f480c6b655fa5a300029
Deployed Bytecode Sourcemap
22033:992:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22033:992:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20979:83;;;:::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;20979:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22721:263;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22721:263:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20723:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20723:186:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;20723:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20723:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;20723:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;20723:186:0;;;;;;;;-1:-1:-1;20723:186:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;20723:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20723:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;20723:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;20723:186:0;;-1:-1:-1;;;20723:186:0;;;;;-1:-1:-1;20723:186:0;;-1:-1:-1;20723:186:0:i;:::-;;13443:91;;;:::i;:::-;;;;;;;;;;;;;;;;15046:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15046:304:0;;;;;;;;;;;;;;;;;:::i;21831:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15759:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15759:210:0;;;;;;;;:::i;13597:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13597:110:0;-1:-1:-1;;;;;13597:110:0;;:::i;21181:87::-;;;:::i;16472:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16472:261:0;;;;;;;;:::i;22525:188::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22525:188:0;;;;;;;;:::i;22201:190::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22201:190:0;-1:-1:-1;;;;;22201:190:0;;:::i;14141:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14141:134:0;;;;;;;;;;:::i;20979:83::-;21049:5;21042:12;;;;;;;;-1:-1:-1;;21042:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21016:13;;21042:12;;21049:5;;21042:12;;21049:5;21042:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20979:83;;:::o;22721:263::-;22788:12;22818:11;;;;;22817:55;;;22835:31;22845:10;22857:8;22835:9;:31::i;:::-;:36;;22817:55;22813:100;;;-1:-1:-1;22896:5:0;22889:12;;22813:100;22923:31;22937:8;22947:6;22923:13;:31::i;:::-;;22972:4;22965:11;;22721:263;;;;;:::o;20723:186::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;20831:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;20854:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;20881:9:0;:20;;-1:-1:-1;;20881:20:0;;;;;;;1368:57;;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;1368:57;20723:186;;;;:::o;13443:91::-;13514:12;;13443:91;:::o;15046:304::-;15135:4;15152:36;15162:6;15170:9;15181:6;15152:9;:36::i;:::-;15199:121;15208:6;15216:12;:10;:12::i;:::-;15230:89;15268:6;15230:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15230:19:0;;;;;;:11;:19;;;;;;15250:12;:10;:12::i;:::-;-1:-1:-1;;;;;15230:33:0;;;;;;;;;;;;-1:-1:-1;15230:33:0;;;:89;;:37;:89;:::i;:::-;15199:8;:121::i;:::-;-1:-1:-1;15338:4:0;15046:304;;;;;:::o;21831:83::-;21897:9;;;;21831:83;:::o;15759:210::-;15839:4;15856:83;15865:12;:10;:12::i;:::-;15879:7;15888:50;15927:10;15888:11;:25;15900:12;:10;:12::i;:::-;-1:-1:-1;;;;;15888:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15888:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;15856:83::-;-1:-1:-1;15957:4:0;15759:210;;;;:::o;13597:110::-;-1:-1:-1;;;;;13681:18:0;13654:7;13681:18;;;:9;:18;;;;;;;13597:110::o;21181:87::-;21253:7;21246:14;;;;;;;;-1:-1:-1;;21246:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21220:13;;21246:14;;21253:7;;21246:14;;21253:7;21246:14;;;;;;;;;;;;;;;;;;;;;;;;16472:261;16557:4;16574:129;16583:12;:10;:12::i;:::-;16597:7;16606:96;16645:15;16606:96;;;;;;;;;;;;;;;;;:11;:25;16618:12;:10;:12::i;:::-;-1:-1:-1;;;;;16606:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16606:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;22525:188::-;22634:4;22613:1;22460:8;22479:17;22460:36;22453:44;;;;22656:27;22671:3;22676:6;22656:14;:27::i;:::-;-1:-1:-1;22701:4:0;;22525:188;-1:-1:-1;;;;22525:188:0:o;22201:190::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;22267:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22267:51:0;;;22315:2;22267:24;:51::i;:::-;22329:54;22335:6;22370:10;:8;:10::i;:::-;22362:19;;22358:2;:23;22343:11;:39;22329:5;:54::i;:::-;1372:14;1368:57;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;1368:57;22201:190;;:::o;14141:134::-;-1:-1:-1;;;;;14240:18:0;;;14213:7;14240:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14141:134::o;14422:152::-;14488:4;14505:39;14514:12;:10;:12::i;:::-;14528:7;14537:6;14505:8;:39::i;1519:508::-;1936:4;1982:17;2014:7;1519:508;:::o;17223:471::-;-1:-1:-1;;;;;17321:20:0;;;;17313:70;;;;-1:-1:-1;;;;;17313:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17402:23:0;;;;17394:71;;;;-1:-1:-1;;;;;17394:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17498;17520:6;17498:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17498:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17478:17:0;;;;;;;:9;:17;;;;;;:91;;;;17603:20;;;;;;;:32;;17628:6;17603:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17580:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17651:35;;;;;;;17580:20;;17651:35;;;;;;;;;;;;;17223:471;;;:::o;3046:98::-;3126:10;3046:98;:::o;8160:192::-;8246:7;8282:12;8274:6;;;;8266:29;;;;-1:-1:-1;;;;;8266:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;8266:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8318:5:0;;;8160:192::o;19403:338::-;-1:-1:-1;;;;;19497:19:0;;;;19489:68;;;;-1:-1:-1;;;;;19489:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19576:21:0;;;;19568:68;;;;-1:-1:-1;;;;;19568:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19649:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19701:32;;;;;;;;;;;;;;;;;19403:338;;;:::o;7231:181::-;7289:7;7321:5;;;7345:6;;;;7337:46;;;;;-1:-1:-1;;;;;7337:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7403:1;7231:181;-1:-1:-1;;;7231:181:0:o;13920:158::-;13989:4;14006:42;14016:12;:10;:12::i;:::-;14030:9;14041:6;14006:9;:42::i;17975:308::-;-1:-1:-1;;;;;18051:21:0;;;;18043:65;;;;;-1:-1:-1;;;;;18043:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18136:12;;:24;;18153:6;18136:24;:16;:24;:::i;:::-;18121:12;:39;-1:-1:-1;;;;;18192:18:0;;;;;;:9;:18;;;;;;:30;;18215:6;18192:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;18171:18:0;;;;;;:9;:18;;;;;;;;:51;;;;18238:37;;;;;;;18171:18;;;;18238:37;;;;;;;;;;17975:308;;:::o;22033:992::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22033:992:0;;;-1:-1:-1;22033:992:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://dbbaa04c1f50d232c8e288b0210360df33f15e3886a38db2f480c6b655fa5a30
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.