Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
JarvisRewardToken
Compiler Version
v0.5.7+commit.6da8b019
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-05-14 */ /** *Submitted for verification at Etherscan.io on 2020-05-13 */ // File: zos-lib/contracts/Initializable.sol pragma solidity >=0.4.24 <0.6.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 wasInitializing = initializing; initializing = true; initialized = true; _; initializing = wasInitializing; } /// @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. uint256 cs; assembly { cs := extcodesize(address) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } // File: openzeppelin-eth/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-eth/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on 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-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } // File: openzeppelin-eth/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is Initializable, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * 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 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowed[from][msg.sender]); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value); _burn(account, value); emit Approval(account, msg.sender, _allowed[account][msg.sender]); } uint256[50] private ______gap; } // File: openzeppelin-eth/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.0; /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract ERC20Burnable is Initializable, ERC20 { /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The address which you want to send tokens from * @param value uint256 The amount of token to be burned */ function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } uint256[50] private ______gap; } // File: openzeppelin-eth/contracts/access/Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev give an account access to this role */ function add(Role storage role, address account) internal { require(account != address(0)); require(!has(role, account)); role.bearer[account] = true; } /** * @dev remove an account's access to this role */ function remove(Role storage role, address account) internal { require(account != address(0)); require(has(role, account)); role.bearer[account] = false; } /** * @dev check if an account has this role * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0)); return role.bearer[account]; } } // File: openzeppelin-eth/contracts/access/roles/PauserRole.sol pragma solidity ^0.5.0; contract PauserRole is Initializable { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; function initialize(address sender) public initializer { if (!isPauser(sender)) { _addPauser(sender); } } modifier onlyPauser() { require(isPauser(msg.sender)); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } uint256[50] private ______gap; } // File: openzeppelin-eth/contracts/lifecycle/Pausable.sol pragma solidity ^0.5.0; /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Initializable, PauserRole { event Paused(address account); event Unpaused(address account); bool private _paused; function initialize(address sender) public initializer { PauserRole.initialize(sender); _paused = false; } /** * @return true if the contract is paused, false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } uint256[50] private ______gap; } // File: openzeppelin-eth/contracts/token/ERC20/ERC20Pausable.sol pragma solidity ^0.5.0; /** * @title Pausable token * @dev ERC20 modified with pausable transfers. **/ contract ERC20Pausable is Initializable, ERC20, Pausable { function initialize(address sender) public initializer { Pausable.initialize(sender); } function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseAllowance(spender, subtractedValue); } uint256[50] private ______gap; } // File: contracts/JarvisRewardToken.sol pragma solidity ^0.5.7; contract JarvisRewardToken is Initializable, ERC20, ERC20Burnable, ERC20Pausable { string public constant name = "Jarvis Reward Token"; string public constant symbol = "JRT"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 420000000 * 1E18; function initialize() initializer public { ERC20Pausable.initialize(msg.sender); _mint(msg.sender, INITIAL_SUPPLY); } function transferToMany(address[] calldata _recipients, uint[] calldata _values) external returns (bool) { require(_recipients.length == _values.length); for (uint i = 0; i < _values.length; i++) { require(transfer(_recipients[i], _values[i])); } return true; } }
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":"","type":"bool"}],"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":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"transferToMany","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"success","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":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"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
608060405234801561001057600080fd5b506111d2806100206000396000f3fe608060405234801561001057600080fd5b506004361061016a576000357c0100000000000000000000000000000000000000000000000000000000900480636ef8d66d116100e05780638456cb59116100995780638456cb591461046d57806395d89b4114610475578063a457c2d71461047d578063a9059cbb146104a9578063c4d66de8146104d5578063dd62ed3e146104fb5761016a565b80636ef8d66d1461032357806370a082311461032b57806379cc6790146103515780637c33ebfd1461037d5780638129fc1c1461043f57806382dc1ec4146104475761016a565b8063313ce56711610132578063313ce5671461028457806339509351146102a25780633f4ba83a146102ce57806342966c68146102d857806346fbf68e146102f55780635c975abb1461031b5761016a565b806306fdde031461016f578063095ea7b3146101ec57806318160ddd1461022c57806323b872dd146102465780632ff2e9dc1461027c575b600080fd5b610177610529565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102186004803603604081101561020257600080fd5b50600160a060020a038135169060200135610562565b604080519115158252519081900360200190f35b610234610586565b60408051918252519081900360200190f35b6102186004803603606081101561025c57600080fd5b50600160a060020a0381358116916020810135909116906040013561058c565b6102346105b2565b61028c6105c2565b6040805160ff9092168252519081900360200190f35b610218600480360360408110156102b857600080fd5b50600160a060020a0381351690602001356105c7565b6102d66105e4565b005b6102d6600480360360208110156102ee57600080fd5b5035610644565b6102186004803603602081101561030b57600080fd5b5035600160a060020a0316610651565b61021861066a565b6102d6610673565b6102346004803603602081101561034157600080fd5b5035600160a060020a031661067e565b6102d66004803603604081101561036757600080fd5b50600160a060020a038135169060200135610699565b6102186004803603604081101561039357600080fd5b8101906020810181356401000000008111156103ae57600080fd5b8201836020820111156103c057600080fd5b803590602001918460208302840111640100000000831117156103e257600080fd5b91939092909160208101903564010000000081111561040057600080fd5b82018360208201111561041257600080fd5b8035906020019184602083028401116401000000008311171561043457600080fd5b5090925090506106a7565b6102d6610714565b6102d66004803603602081101561045d57600080fd5b5035600160a060020a03166107d2565b6102d66107ed565b610177610851565b6102186004803603604081101561049357600080fd5b50600160a060020a03813516906020013561088a565b610218600480360360408110156104bf57600080fd5b50600160a060020a0381351690602001356108a7565b6102d6600480360360208110156104eb57600080fd5b5035600160a060020a03166108c4565b6102346004803603604081101561051157600080fd5b50600160a060020a038135811691602001351661096d565b6040518060400160405280601381526020017f4a61727669732052657761726420546f6b656e0000000000000000000000000081525081565b60cd5460009060ff161561057557600080fd5b61057f8383610998565b9392505050565b60355490565b60cd5460009060ff161561059f57600080fd5b6105aa848484610a02565b949350505050565b6b015b6a759f4835dc2400000081565b601281565b60cd5460009060ff16156105da57600080fd5b61057f8383610ab9565b6105ed33610651565b6105f657600080fd5b60cd5460ff1661060557600080fd5b60cd805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b61064e3382610b55565b50565b6000610664609a8363ffffffff610bfe16565b92915050565b60cd5460ff1690565b61067c33610c33565b565b600160a060020a031660009081526033602052604090205490565b6106a38282610c7b565b5050565b60008382146106b557600080fd5b60005b82811015610708576106f78686838181106106cf57fe5b90506020020135600160a060020a03168585848181106106eb57fe5b905060200201356108a7565b61070057600080fd5b6001016106b8565b50600195945050505050565b600054610100900460ff168061072d575061072d610d2b565b8061073b575060005460ff16155b6107795760405160e560020a62461bcd02815260040180806020018281038252602e815260200180611159602e913960400191505060405180910390fd5b60008054600161010061ff00198316811760ff1916919091179092550460ff166107a2336108c4565b6107b8336b015b6a759f4835dc24000000610d31565b600080549115156101000261ff0019909216919091179055565b6107db33610651565b6107e457600080fd5b61064e81610ddb565b6107f633610651565b6107ff57600080fd5b60cd5460ff161561080f57600080fd5b60cd805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6040518060400160405280600381526020017f4a5254000000000000000000000000000000000000000000000000000000000081525081565b60cd5460009060ff161561089d57600080fd5b61057f8383610e23565b60cd5460009060ff16156108ba57600080fd5b61057f8383610e6c565b600054610100900460ff16806108dd57506108dd610d2b565b806108eb575060005460ff16155b6109295760405160e560020a62461bcd02815260040180806020018281038252602e815260200180611159602e913960400191505060405180910390fd5b60008054600161010061ff00198316811760ff1916919091179092550460ff1661095282610e82565b600080549115156101000261ff001990921691909117905550565b600160a060020a03918216600090815260346020908152604080832093909416825291909152205490565b6000600160a060020a0383166109ad57600080fd5b336000818152603460209081526040808320600160a060020a0388168085529083529281902086905580518681529051929392600080516020611187833981519152929181900390910190a350600192915050565b600160a060020a0383166000908152603460209081526040808320338452909152812054610a36908363ffffffff610f3516565b600160a060020a0385166000908152603460209081526040808320338452909152902055610a65848484610f4a565b600160a060020a038416600081815260346020908152604080832033808552908352928190205481519081529051929392600080516020611187833981519152929181900390910190a35060019392505050565b6000600160a060020a038316610ace57600080fd5b336000908152603460209081526040808320600160a060020a0387168452909152902054610b02908363ffffffff61101716565b336000818152603460209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020611187833981519152929081900390910190a350600192915050565b600160a060020a038216610b6857600080fd5b603554610b7b908263ffffffff610f3516565b603555600160a060020a038216600090815260336020526040902054610ba7908263ffffffff610f3516565b600160a060020a0383166000818152603360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a038216610c1357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610c44609a8263ffffffff61102916565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a0382166000908152603460209081526040808320338452909152902054610caf908263ffffffff610f3516565b600160a060020a0383166000908152603460209081526040808320338452909152902055610cdd8282610b55565b600160a060020a038216600081815260346020908152604080832033808552908352928190205481519081529051929392600080516020611187833981519152929181900390910190a35050565b303b1590565b600160a060020a038216610d4457600080fd5b603554610d57908263ffffffff61101716565b603555600160a060020a038216600090815260336020526040902054610d83908263ffffffff61101716565b600160a060020a03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610dec609a8263ffffffff61107116565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000600160a060020a038316610e3857600080fd5b336000908152603460209081526040808320600160a060020a0387168452909152902054610b02908363ffffffff610f3516565b6000610e79338484610f4a565b50600192915050565b600054610100900460ff1680610e9b5750610e9b610d2b565b80610ea9575060005460ff16155b610ee75760405160e560020a62461bcd02815260040180806020018281038252602e815260200180611159602e913960400191505060405180910390fd5b60008054600161010061ff00198316811760ff1916919091179092550460ff16610f10826110bd565b60cd805460ff19169055600080549115156101000261ff001990921691909117905550565b600082821115610f4457600080fd5b50900390565b600160a060020a038216610f5d57600080fd5b600160a060020a038316600090815260336020526040902054610f86908263ffffffff610f3516565b600160a060020a038085166000908152603360205260408082209390935590841681522054610fbb908263ffffffff61101716565b600160a060020a0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561057f57600080fd5b600160a060020a03811661103c57600080fd5b6110468282610bfe565b61104f57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a03811661108457600080fd5b61108e8282610bfe565b1561109857600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600054610100900460ff16806110d657506110d6610d2b565b806110e4575060005460ff16155b6111225760405160e560020a62461bcd02815260040180806020018281038252602e815260200180611159602e913960400191505060405180910390fd5b60008054600161010061ff00198316811760ff1916919091179092550460ff1661114b82610651565b6109525761095282610ddb56fe436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820f5a93096853b7d867f2685f220ea38f626f15b42af804dbb3b80a22c0129d2b90029
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016a576000357c0100000000000000000000000000000000000000000000000000000000900480636ef8d66d116100e05780638456cb59116100995780638456cb591461046d57806395d89b4114610475578063a457c2d71461047d578063a9059cbb146104a9578063c4d66de8146104d5578063dd62ed3e146104fb5761016a565b80636ef8d66d1461032357806370a082311461032b57806379cc6790146103515780637c33ebfd1461037d5780638129fc1c1461043f57806382dc1ec4146104475761016a565b8063313ce56711610132578063313ce5671461028457806339509351146102a25780633f4ba83a146102ce57806342966c68146102d857806346fbf68e146102f55780635c975abb1461031b5761016a565b806306fdde031461016f578063095ea7b3146101ec57806318160ddd1461022c57806323b872dd146102465780632ff2e9dc1461027c575b600080fd5b610177610529565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102186004803603604081101561020257600080fd5b50600160a060020a038135169060200135610562565b604080519115158252519081900360200190f35b610234610586565b60408051918252519081900360200190f35b6102186004803603606081101561025c57600080fd5b50600160a060020a0381358116916020810135909116906040013561058c565b6102346105b2565b61028c6105c2565b6040805160ff9092168252519081900360200190f35b610218600480360360408110156102b857600080fd5b50600160a060020a0381351690602001356105c7565b6102d66105e4565b005b6102d6600480360360208110156102ee57600080fd5b5035610644565b6102186004803603602081101561030b57600080fd5b5035600160a060020a0316610651565b61021861066a565b6102d6610673565b6102346004803603602081101561034157600080fd5b5035600160a060020a031661067e565b6102d66004803603604081101561036757600080fd5b50600160a060020a038135169060200135610699565b6102186004803603604081101561039357600080fd5b8101906020810181356401000000008111156103ae57600080fd5b8201836020820111156103c057600080fd5b803590602001918460208302840111640100000000831117156103e257600080fd5b91939092909160208101903564010000000081111561040057600080fd5b82018360208201111561041257600080fd5b8035906020019184602083028401116401000000008311171561043457600080fd5b5090925090506106a7565b6102d6610714565b6102d66004803603602081101561045d57600080fd5b5035600160a060020a03166107d2565b6102d66107ed565b610177610851565b6102186004803603604081101561049357600080fd5b50600160a060020a03813516906020013561088a565b610218600480360360408110156104bf57600080fd5b50600160a060020a0381351690602001356108a7565b6102d6600480360360208110156104eb57600080fd5b5035600160a060020a03166108c4565b6102346004803603604081101561051157600080fd5b50600160a060020a038135811691602001351661096d565b6040518060400160405280601381526020017f4a61727669732052657761726420546f6b656e0000000000000000000000000081525081565b60cd5460009060ff161561057557600080fd5b61057f8383610998565b9392505050565b60355490565b60cd5460009060ff161561059f57600080fd5b6105aa848484610a02565b949350505050565b6b015b6a759f4835dc2400000081565b601281565b60cd5460009060ff16156105da57600080fd5b61057f8383610ab9565b6105ed33610651565b6105f657600080fd5b60cd5460ff1661060557600080fd5b60cd805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b61064e3382610b55565b50565b6000610664609a8363ffffffff610bfe16565b92915050565b60cd5460ff1690565b61067c33610c33565b565b600160a060020a031660009081526033602052604090205490565b6106a38282610c7b565b5050565b60008382146106b557600080fd5b60005b82811015610708576106f78686838181106106cf57fe5b90506020020135600160a060020a03168585848181106106eb57fe5b905060200201356108a7565b61070057600080fd5b6001016106b8565b50600195945050505050565b600054610100900460ff168061072d575061072d610d2b565b8061073b575060005460ff16155b6107795760405160e560020a62461bcd02815260040180806020018281038252602e815260200180611159602e913960400191505060405180910390fd5b60008054600161010061ff00198316811760ff1916919091179092550460ff166107a2336108c4565b6107b8336b015b6a759f4835dc24000000610d31565b600080549115156101000261ff0019909216919091179055565b6107db33610651565b6107e457600080fd5b61064e81610ddb565b6107f633610651565b6107ff57600080fd5b60cd5460ff161561080f57600080fd5b60cd805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6040518060400160405280600381526020017f4a5254000000000000000000000000000000000000000000000000000000000081525081565b60cd5460009060ff161561089d57600080fd5b61057f8383610e23565b60cd5460009060ff16156108ba57600080fd5b61057f8383610e6c565b600054610100900460ff16806108dd57506108dd610d2b565b806108eb575060005460ff16155b6109295760405160e560020a62461bcd02815260040180806020018281038252602e815260200180611159602e913960400191505060405180910390fd5b60008054600161010061ff00198316811760ff1916919091179092550460ff1661095282610e82565b600080549115156101000261ff001990921691909117905550565b600160a060020a03918216600090815260346020908152604080832093909416825291909152205490565b6000600160a060020a0383166109ad57600080fd5b336000818152603460209081526040808320600160a060020a0388168085529083529281902086905580518681529051929392600080516020611187833981519152929181900390910190a350600192915050565b600160a060020a0383166000908152603460209081526040808320338452909152812054610a36908363ffffffff610f3516565b600160a060020a0385166000908152603460209081526040808320338452909152902055610a65848484610f4a565b600160a060020a038416600081815260346020908152604080832033808552908352928190205481519081529051929392600080516020611187833981519152929181900390910190a35060019392505050565b6000600160a060020a038316610ace57600080fd5b336000908152603460209081526040808320600160a060020a0387168452909152902054610b02908363ffffffff61101716565b336000818152603460209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020611187833981519152929081900390910190a350600192915050565b600160a060020a038216610b6857600080fd5b603554610b7b908263ffffffff610f3516565b603555600160a060020a038216600090815260336020526040902054610ba7908263ffffffff610f3516565b600160a060020a0383166000818152603360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a038216610c1357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610c44609a8263ffffffff61102916565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a0382166000908152603460209081526040808320338452909152902054610caf908263ffffffff610f3516565b600160a060020a0383166000908152603460209081526040808320338452909152902055610cdd8282610b55565b600160a060020a038216600081815260346020908152604080832033808552908352928190205481519081529051929392600080516020611187833981519152929181900390910190a35050565b303b1590565b600160a060020a038216610d4457600080fd5b603554610d57908263ffffffff61101716565b603555600160a060020a038216600090815260336020526040902054610d83908263ffffffff61101716565b600160a060020a03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610dec609a8263ffffffff61107116565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000600160a060020a038316610e3857600080fd5b336000908152603460209081526040808320600160a060020a0387168452909152902054610b02908363ffffffff610f3516565b6000610e79338484610f4a565b50600192915050565b600054610100900460ff1680610e9b5750610e9b610d2b565b80610ea9575060005460ff16155b610ee75760405160e560020a62461bcd02815260040180806020018281038252602e815260200180611159602e913960400191505060405180910390fd5b60008054600161010061ff00198316811760ff1916919091179092550460ff16610f10826110bd565b60cd805460ff19169055600080549115156101000261ff001990921691909117905550565b600082821115610f4457600080fd5b50900390565b600160a060020a038216610f5d57600080fd5b600160a060020a038316600090815260336020526040902054610f86908263ffffffff610f3516565b600160a060020a038085166000908152603360205260408082209390935590841681522054610fbb908263ffffffff61101716565b600160a060020a0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561057f57600080fd5b600160a060020a03811661103c57600080fd5b6110468282610bfe565b61104f57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a03811661108457600080fd5b61108e8282610bfe565b1561109857600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600054610100900460ff16806110d657506110d6610d2b565b806110e4575060005460ff16155b6111225760405160e560020a62461bcd02815260040180806020018281038252602e815260200180611159602e913960400191505060405180910390fd5b60008054600161010061ff00198316811760ff1916919091179092550460ff1661114b82610651565b6109525761095282610ddb56fe436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820f5a93096853b7d867f2685f220ea38f626f15b42af804dbb3b80a22c0129d2b90029
Deployed Bytecode Sourcemap
18644:718:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18644:718:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18730:51;;;:::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;18730:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18004:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18004:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5914:91;;;:::i;:::-;;;;;;;;;;;;;;;;17836:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17836:160:0;;;;;;;;;;;;;;;;;:::i;18868:57::-;;;:::i;18828:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18152:175;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18152:175:0;;;;;;;;:::i;17172:118::-;;;:::i;:::-;;13144:79;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13144:79:0;;:::i;15227:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15227:109:0;-1:-1:-1;;;;;15227:109:0;;:::i;16425:78::-;;;:::i;15444:77::-;;;:::i;6221:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6221:106:0;-1:-1:-1;;;;;6221:106:0;;:::i;13482:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13482:95:0;;;;;;;;:::i;19068:291::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19068:291:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19068:291:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19068:291:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;19068:291:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19068:291:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19068:291:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;19068:291:0;;-1:-1:-1;19068:291:0;-1:-1:-1;19068:291:0;:::i;18932:130::-;;;:::i;15344:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15344:92:0;-1:-1:-1;;;;;15344:92:0;;:::i;16961:116::-;;;:::i;18786:37::-;;;:::i;18335:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18335:185:0;;;;;;;;:::i;17696:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17696:132:0;;;;;;;;:::i;17587:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17587:101:0;-1:-1:-1;;;;;17587:101:0;;:::i;6666:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6666:131:0;;;;;;;;;;:::i;18730:51::-;;;;;;;;;;;;;;;;;;;:::o;18004:140::-;16662:7;;18083:4;;16662:7;;16661:8;16653:17;;;;;;18107:29;18121:7;18130:5;18107:13;:29::i;:::-;18100:36;18004:140;-1:-1:-1;;;18004:140:0:o;5914:91::-;5985:12;;5914:91;:::o;17836:160::-;16662:7;;17929:4;;16662:7;;16661:8;16653:17;;;;;;17953:35;17972:4;17978:2;17982:5;17953:18;:35::i;:::-;17946:42;17836:160;-1:-1:-1;;;;17836:160:0:o;18868:57::-;18909:16;18868:57;:::o;18828:35::-;18861:2;18828:35;:::o;18152:175::-;16662:7;;18243:12;;16662:7;;16661:8;16653:17;;;;;;18275:44;18299:7;18308:10;18275:23;:44::i;17172:118::-;15178:20;15187:10;15178:8;:20::i;:::-;15170:29;;;;;;16841:7;;;;16833:16;;;;;;17231:7;:15;;-1:-1:-1;;17231:15:0;;;17262:20;;;17271:10;17262:20;;;;;;;;;;;;;17172:118::o;13144:79::-;13191:24;13197:10;13209:5;13191;:24::i;:::-;13144:79;:::o;15227:109::-;15283:4;15307:21;:8;15320:7;15307:21;:12;:21;:::i;:::-;15300:28;15227:109;-1:-1:-1;;15227:109:0:o;16425:78::-;16488:7;;;;16425:78;:::o;15444:77::-;15488:25;15502:10;15488:13;:25::i;:::-;15444:77::o;6221:106::-;-1:-1:-1;;;;;6303:16:0;6276:7;6303:16;;;:9;:16;;;;;;;6221:106::o;13482:95::-;13547:22;13557:4;13563:5;13547:9;:22::i;:::-;13482:95;;:::o;19068:291::-;19167:4;19188:36;;;19180:45;;;;;;19237:6;19232:104;19249:18;;;19232:104;;;19291:36;19300:11;;19312:1;19300:14;;;;;;;;;;;;;-1:-1:-1;;;;;19300:14:0;19316:7;;19324:1;19316:10;;;;;;;;;;;;;19291:8;:36::i;:::-;19283:45;;;;;;19269:3;;19232:104;;;-1:-1:-1;19349:4:0;;19068:291;-1:-1:-1;;;;;19068:291:0:o;18932:130::-;1174:12;;;;;;;;:31;;;1190:15;:13;:15::i;:::-;1174:47;;;-1:-1:-1;1210:11:0;;;;1209:12;1174:47;1166:106;;;;-1:-1:-1;;;;;1166:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1281:20;1304:12;;;;-1:-1:-1;;1323:19:0;;;;-1:-1:-1;;1349:18:0;;;;;;;;1304:12;;;18980:36;19005:10;18980:24;:36::i;:::-;19023:33;19029:10;18909:16;19023:5;:33::i;:::-;1386:12;:30;;;;;;;-1:-1:-1;;1386:30:0;;;;;;;;;18932:130::o;15344:92::-;15178:20;15187:10;15178:8;:20::i;:::-;15170:29;;;;;;15409:19;15420:7;15409:10;:19::i;16961:116::-;15178:20;15187:10;15178:8;:20::i;:::-;15170:29;;;;;;16662:7;;;;16661:8;16653:17;;;;;;17021:7;:14;;-1:-1:-1;;17021:14:0;17031:4;17021:14;;;17051:18;;;17058:10;17051:18;;;;;;;;;;;;;16961:116::o;18786:37::-;;;;;;;;;;;;;;;;;;;:::o;18335:185::-;16662:7;;18431:12;;16662:7;;16661:8;16653:17;;;;;;18463:49;18487:7;18496:15;18463:23;:49::i;17696:132::-;16662:7;;17771:4;;16662:7;;16661:8;16653:17;;;;;;17795:25;17810:2;17814:5;17795:14;:25::i;17587:101::-;1174:12;;;;;;;;:31;;;1190:15;:13;:15::i;:::-;1174:47;;;-1:-1:-1;1210:11:0;;;;1209:12;1174:47;1166:106;;;;-1:-1:-1;;;;;1166:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1281:20;1304:12;;;;-1:-1:-1;;1323:19:0;;;;-1:-1:-1;;1349:18:0;;;;;;;;1304:12;;;17653:27;17673:6;17653:19;:27::i;:::-;1386:12;:30;;;;;;;-1:-1:-1;;1386:30:0;;;;;;;;;-1:-1:-1;17587:101:0:o;6666:131::-;-1:-1:-1;;;;;6765:15:0;;;6738:7;6765:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6666:131::o;7755:244::-;7820:4;-1:-1:-1;;;;;7845:21:0;;7837:30;;;;;;7889:10;7880:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7880:29:0;;;;;;;;;;;;:37;;;7933:36;;;;;;;7880:29;;7889:10;-1:-1:-1;;;;;;;;;;;7933:36:0;;;;;;;;;;-1:-1:-1;7987:4:0;7755:244;;;;:::o;8472:299::-;-1:-1:-1;;;;;8597:14:0;;8551:4;8597:14;;;:8;:14;;;;;;;;8612:10;8597:26;;;;;;;;:37;;8628:5;8597:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;8568:14:0;;;;;;:8;:14;;;;;;;;8583:10;8568:26;;;;;;;:66;8645:26;8577:4;8661:2;8665:5;8645:9;:26::i;:::-;-1:-1:-1;;;;;8687:54:0;;8714:14;;;;:8;:14;;;;;;;;8702:10;8714:26;;;;;;;;;;;8687:54;;;;;;;8702:10;;8687:54;-1:-1:-1;;;;;;;;;;;8687:54:0;;;;;;;;;;-1:-1:-1;8759:4:0;8472:299;;;;;:::o;9286:323::-;9366:4;-1:-1:-1;;;;;9391:21:0;;9383:30;;;;;;9467:10;9458:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9458:29:0;;;;;;;;;;:45;;9492:10;9458:45;:33;:45;:::i;:::-;9435:10;9426:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9426:29:0;;;;;;;;;;;;:77;;;9519:60;;;;;;9426:29;;-1:-1:-1;;;;;;;;;;;9519:60:0;;;;;;;;;;-1:-1:-1;9597:4:0;9286:323;;;;:::o;11801:269::-;-1:-1:-1;;;;;11876:21:0;;11868:30;;;;;;11926:12;;:23;;11943:5;11926:23;:16;:23;:::i;:::-;11911:12;:38;-1:-1:-1;;;;;11981:18:0;;;;;;:9;:18;;;;;;:29;;12004:5;11981:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;11960:18:0;;;;;;:9;:18;;;;;;;;:50;;;;12026:36;;;;;;;11960:18;;12026:36;;;;;;;;;;;11801:269;;:::o;14499:165::-;14571:4;-1:-1:-1;;;;;14596:21:0;;14588:30;;;;;;-1:-1:-1;;;;;;14636:20:0;:11;:20;;;;;;;;;;;;;;;14499:165::o;15659:130::-;15719:24;:8;15735:7;15719:24;:15;:24;:::i;:::-;15759:22;;-1:-1:-1;;;;;15759:22:0;;;;;;;;15659:130;:::o;12469:259::-;-1:-1:-1;;;;;12572:17:0;;;;;;:8;:17;;;;;;;;12590:10;12572:29;;;;;;;;:40;;12606:5;12572:40;:33;:40;:::i;:::-;-1:-1:-1;;;;;12540:17:0;;;;;;:8;:17;;;;;;;;12558:10;12540:29;;;;;;;:72;12623:21;12549:7;12638:5;12623;:21::i;:::-;-1:-1:-1;;;;;12660:60:0;;12690:17;;;;:8;:17;;;;;;;;12678:10;12690:29;;;;;;;;;;;12660:60;;;;;;;12678:10;;12660:60;-1:-1:-1;;;;;;;;;;;12660:60:0;;;;;;;;;;12469:259;;:::o;1511:476::-;1951:7;1939:20;1974:7;1511:476;:::o;11298:269::-;-1:-1:-1;;;;;11373:21:0;;11365:30;;;;;;11423:12;;:23;;11440:5;11423:23;:16;:23;:::i;:::-;11408:12;:38;-1:-1:-1;;;;;11478:18:0;;;;;;:9;:18;;;;;;:29;;11501:5;11478:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;11457:18:0;;;;;;:9;:18;;;;;;;;:50;;;;11523:36;;;;;;;11457:18;;;;11523:36;;;;;;;;;;11298:269;;:::o;15529:122::-;15586:21;:8;15599:7;15586:21;:12;:21;:::i;:::-;15623:20;;-1:-1:-1;;;;;15623:20:0;;;;;;;;15529:122;:::o;10129:333::-;10214:4;-1:-1:-1;;;;;10239:21:0;;10231:30;;;;;;10315:10;10306:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10306:29:0;;;;;;;;;;:50;;10340:15;10306:50;:33;:50;:::i;6968:140::-;7029:4;7046:32;7056:10;7068:2;7072:5;7046:9;:32::i;:::-;-1:-1:-1;7096:4:0;6968:140;;;;:::o;16203:131::-;1174:12;;;;;;;;:31;;;1190:15;:13;:15::i;:::-;1174:47;;;-1:-1:-1;1210:11:0;;;;1209:12;1174:47;1166:106;;;;-1:-1:-1;;;;;1166:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1281:20;1304:12;;;;-1:-1:-1;;1323:19:0;;;;-1:-1:-1;;1349:18:0;;;;;;;;1304:12;;;16269:29;16291:6;16269:21;:29::i;:::-;16311:7;:15;;-1:-1:-1;;16311:15:0;;;16321:5;1386:30;;;;;16311:15;1386:30;-1:-1:-1;;1386:30:0;;;;;;;;;-1:-1:-1;16203:131:0:o;4253:150::-;4311:7;4344:1;4339;:6;;4331:15;;;;;;-1:-1:-1;4369:5:0;;;4253:150::o;10684:262::-;-1:-1:-1;;;;;10772:16:0;;10764:25;;;;;;-1:-1:-1;;;;;10820:15:0;;;;;;:9;:15;;;;;;:26;;10840:5;10820:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;10802:15:0;;;;;;;:9;:15;;;;;;:44;;;;10873:13;;;;;;;:24;;10891:5;10873:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;10857:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;10913:25;;;;;;;10857:13;;10913:25;;;;;;;;;;;;;10684:262;;;:::o;4489:150::-;4547:7;4579:5;;;4603:6;;;;4595:15;;;;;14216:189;-1:-1:-1;;;;;14296:21:0;;14288:30;;;;;;14337:18;14341:4;14347:7;14337:3;:18::i;:::-;14329:27;;;;;;-1:-1:-1;;;;;14369:20:0;14392:5;14369:20;;;;;;;;;;;:28;;-1:-1:-1;;14369:28:0;;;14216:189::o;13951:186::-;-1:-1:-1;;;;;14028:21:0;;14020:30;;;;;;14070:18;14074:4;14080:7;14070:3;:18::i;:::-;14069:19;14061:28;;;;;;-1:-1:-1;;;;;14102:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;14102:27:0;14125:4;14102:27;;;13951:186::o;14988:141::-;1174:12;;;;;;;;:31;;;1190:15;:13;:15::i;:::-;1174:47;;;-1:-1:-1;1210:11:0;;;;1209:12;1174:47;1166:106;;;;-1:-1:-1;;;;;1166:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1281:20;1304:12;;;;-1:-1:-1;;1323:19:0;;;;-1:-1:-1;;1349:18:0;;;;;;;;1304:12;;;15059:16;15068:6;15059:8;:16::i;:::-;15054:68;;15092:18;15103:6;15092:10;:18::i
Swarm Source
bzzr://f5a93096853b7d867f2685f220ea38f626f15b42af804dbb3b80a22c0129d2b9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.