Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 199 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 15796143 | 1236 days ago | IN | 0 ETH | 0.00112518 | ||||
| Transfer From | 9961422 | 2142 days ago | IN | 0 ETH | 0.00217232 | ||||
| Transfer | 9961415 | 2142 days ago | IN | 0 ETH | 0.00044512 | ||||
| Transfer From | 9961383 | 2142 days ago | IN | 0 ETH | 0.0011849 | ||||
| Approve | 9961379 | 2142 days ago | IN | 0 ETH | 0.00158724 | ||||
| Transfer | 9961369 | 2142 days ago | IN | 0 ETH | 0.00061012 | ||||
| Transfer | 9785076 | 2169 days ago | IN | 0 ETH | 0.00025454 | ||||
| Transfer From | 9718295 | 2179 days ago | IN | 0 ETH | 0.00021715 | ||||
| Approve | 9718294 | 2179 days ago | IN | 0 ETH | 0.00029099 | ||||
| Transfer | 9718284 | 2179 days ago | IN | 0 ETH | 0.0001699 | ||||
| Transfer | 9239740 | 2253 days ago | IN | 0 ETH | 0.00003961 | ||||
| Approve | 9116069 | 2276 days ago | IN | 0 ETH | 0.00072708 | ||||
| Transfer | 8967645 | 2302 days ago | IN | 0 ETH | 0.00174888 | ||||
| Transfer | 8942272 | 2306 days ago | IN | 0 ETH | 0.0001428 | ||||
| Transfer | 8870743 | 2318 days ago | IN | 0 ETH | 0.00220842 | ||||
| Transfer | 8842488 | 2322 days ago | IN | 0 ETH | 0.00069955 | ||||
| Approve | 8706382 | 2344 days ago | IN | 0 ETH | 0.0007554 | ||||
| Transfer | 8650999 | 2353 days ago | IN | 0 ETH | 0.00064125 | ||||
| Transfer | 8650993 | 2353 days ago | IN | 0 ETH | 0.0008877 | ||||
| Transfer | 8644944 | 2354 days ago | IN | 0 ETH | 0.00174888 | ||||
| Transfer | 8644939 | 2354 days ago | IN | 0 ETH | 0.00041973 | ||||
| Transfer From | 8572030 | 2365 days ago | IN | 0 ETH | 0.00124608 | ||||
| Approve | 8572005 | 2365 days ago | IN | 0 ETH | 0.0018364 | ||||
| Transfer | 8571897 | 2365 days ago | IN | 0 ETH | 0.00116592 | ||||
| Transfer | 8522134 | 2373 days ago | IN | 0 ETH | 0.00077728 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
FidelityHouseToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-11-26
*/
pragma solidity ^0.4.24;
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* See https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function transfer(address _to, uint256 _value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address _owner, address _spender)
public view returns (uint256);
function transferFrom(address _from, address _to, uint256 _value)
public returns (bool);
function approve(address _spender, uint256 _value) public returns (bool);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
// File: openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol
/**
* @title DetailedERC20 token
* @dev The decimals are only for visualization purposes.
* All the operations are done using the smallest and indivisible token unit,
* just as on Ethereum all the operations are done in wei.
*/
contract DetailedERC20 is ERC20 {
string public name;
string public symbol;
uint8 public decimals;
constructor(string _name, string _symbol, uint8 _decimals) public {
name = _name;
symbol = _symbol;
decimals = _decimals;
}
}
// File: openzeppelin-solidity/contracts/math/SafeMath.sol
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
// Gas optimization: this is cheaper than asserting '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;
}
c = _a * _b;
assert(c / _a == _b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
// assert(_b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = _a / _b;
// assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
return _a / _b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
assert(_b <= _a);
return _a - _b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
c = _a + _b;
assert(c >= _a);
return c;
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) internal balances;
uint256 internal totalSupply_;
/**
* @dev Total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
/**
* @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) {
require(_value <= balances[msg.sender]);
require(_to != address(0));
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the 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];
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://github.com/ethereum/EIPs/issues/20
* Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) internal allowed;
/**
* @dev Transfer tokens from one address to another
* @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)
{
require(_value <= balances[_from]);
require(_value <= allowed[_from][msg.sender]);
require(_to != address(0));
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
emit Transfer(_from, _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) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* @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 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
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
*/
function increaseApproval(
address _spender,
uint256 _addedValue
)
public
returns (bool)
{
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
* @param _spender The address which will spend the funds.
* @param _subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseApproval(
address _spender,
uint256 _subtractedValue
)
public
returns (bool)
{
uint256 oldValue = allowed[msg.sender][_spender];
if (_subtractedValue >= oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
// File: openzeppelin-solidity/contracts/ownership/Ownable.sol
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipRenounced(address indexed previousOwner);
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to relinquish control of the contract.
* @notice Renouncing to ownership will leave the contract without an owner.
* It will not be possible to call the functions with the `onlyOwner`
* modifier anymore.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipRenounced(owner);
owner = address(0);
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function transferOwnership(address _newOwner) public onlyOwner {
_transferOwnership(_newOwner);
}
/**
* @dev Transfers control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function _transferOwnership(address _newOwner) internal {
require(_newOwner != address(0));
emit OwnershipTransferred(owner, _newOwner);
owner = _newOwner;
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol
/**
* @title Mintable token
* @dev Simple ERC20 Token example, with mintable token creation
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/
contract MintableToken is StandardToken, Ownable {
event Mint(address indexed to, uint256 amount);
event MintFinished();
bool public mintingFinished = false;
modifier canMint() {
require(!mintingFinished);
_;
}
modifier hasMintPermission() {
require(msg.sender == owner);
_;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(
address _to,
uint256 _amount
)
public
hasMintPermission
canMint
returns (bool)
{
totalSupply_ = totalSupply_.add(_amount);
balances[_to] = balances[_to].add(_amount);
emit Mint(_to, _amount);
emit Transfer(address(0), _to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() public onlyOwner canMint returns (bool) {
mintingFinished = true;
emit MintFinished();
return true;
}
}
// File: openzeppelin-solidity/contracts/access/rbac/Roles.sol
/**
* @title Roles
* @author Francisco Giordano (@frangio)
* @dev Library for managing addresses assigned to a Role.
* See RBAC.sol for example usage.
*/
library Roles {
struct Role {
mapping (address => bool) bearer;
}
/**
* @dev give an address access to this role
*/
function add(Role storage _role, address _addr)
internal
{
_role.bearer[_addr] = true;
}
/**
* @dev remove an address' access to this role
*/
function remove(Role storage _role, address _addr)
internal
{
_role.bearer[_addr] = false;
}
/**
* @dev check if an address has this role
* // reverts
*/
function check(Role storage _role, address _addr)
internal
view
{
require(has(_role, _addr));
}
/**
* @dev check if an address has this role
* @return bool
*/
function has(Role storage _role, address _addr)
internal
view
returns (bool)
{
return _role.bearer[_addr];
}
}
// File: openzeppelin-solidity/contracts/access/rbac/RBAC.sol
/**
* @title RBAC (Role-Based Access Control)
* @author Matt Condon (@Shrugs)
* @dev Stores and provides setters and getters for roles and addresses.
* Supports unlimited numbers of roles and addresses.
* See //contracts/mocks/RBACMock.sol for an example of usage.
* This RBAC method uses strings to key roles. It may be beneficial
* for you to write your own implementation of this interface using Enums or similar.
*/
contract RBAC {
using Roles for Roles.Role;
mapping (string => Roles.Role) private roles;
event RoleAdded(address indexed operator, string role);
event RoleRemoved(address indexed operator, string role);
/**
* @dev reverts if addr does not have role
* @param _operator address
* @param _role the name of the role
* // reverts
*/
function checkRole(address _operator, string _role)
public
view
{
roles[_role].check(_operator);
}
/**
* @dev determine if addr has role
* @param _operator address
* @param _role the name of the role
* @return bool
*/
function hasRole(address _operator, string _role)
public
view
returns (bool)
{
return roles[_role].has(_operator);
}
/**
* @dev add a role to an address
* @param _operator address
* @param _role the name of the role
*/
function addRole(address _operator, string _role)
internal
{
roles[_role].add(_operator);
emit RoleAdded(_operator, _role);
}
/**
* @dev remove a role from an address
* @param _operator address
* @param _role the name of the role
*/
function removeRole(address _operator, string _role)
internal
{
roles[_role].remove(_operator);
emit RoleRemoved(_operator, _role);
}
/**
* @dev modifier to scope access to a single role (uses msg.sender as addr)
* @param _role the name of the role
* // reverts
*/
modifier onlyRole(string _role)
{
checkRole(msg.sender, _role);
_;
}
/**
* @dev modifier to scope access to a set of roles (uses msg.sender as addr)
* @param _roles the names of the roles to scope access to
* // reverts
*
* @TODO - when solidity supports dynamic arrays as arguments to modifiers, provide this
* see: https://github.com/ethereum/solidity/issues/2467
*/
// modifier onlyRoles(string[] _roles) {
// bool hasAnyRole = false;
// for (uint8 i = 0; i < _roles.length; i++) {
// if (hasRole(msg.sender, _roles[i])) {
// hasAnyRole = true;
// break;
// }
// }
// require(hasAnyRole);
// _;
// }
}
// File: openzeppelin-solidity/contracts/token/ERC20/RBACMintableToken.sol
/**
* @title RBACMintableToken
* @author Vittorio Minacori (@vittominacori)
* @dev Mintable Token, with RBAC minter permissions
*/
contract RBACMintableToken is MintableToken, RBAC {
/**
* A constant role name for indicating minters.
*/
string public constant ROLE_MINTER = "minter";
/**
* @dev override the Mintable token modifier to add role based logic
*/
modifier hasMintPermission() {
checkRole(msg.sender, ROLE_MINTER);
_;
}
/**
* @dev add a minter role to an address
* @param _minter address
*/
function addMinter(address _minter) public onlyOwner {
addRole(_minter, ROLE_MINTER);
}
/**
* @dev remove a minter role from an address
* @param _minter address
*/
function removeMinter(address _minter) public onlyOwner {
removeRole(_minter, ROLE_MINTER);
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol
/**
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is BasicToken {
event Burn(address indexed burner, uint256 value);
/**
* @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);
}
function _burn(address _who, uint256 _value) internal {
require(_value <= balances[_who]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
balances[_who] = balances[_who].sub(_value);
totalSupply_ = totalSupply_.sub(_value);
emit Burn(_who, _value);
emit Transfer(_who, address(0), _value);
}
}
// File: openzeppelin-solidity/contracts/AddressUtils.sol
/**
* Utility library of inline functions on addresses
*/
library AddressUtils {
/**
* Returns whether the target address is a contract
* @dev This function will return false if invoked during the constructor of a contract,
* as the code is not actually created until after the constructor finishes.
* @param _addr address to check
* @return whether the target address is a contract
*/
function isContract(address _addr) internal view returns (bool) {
uint256 size;
// XXX Currently there is no better way to check if there is a contract in an address
// than to check the size of the code at that address.
// See https://ethereum.stackexchange.com/a/14016/36603
// for more details about how this works.
// TODO Check this again before the Serenity release, because all addresses will be
// contracts then.
// solium-disable-next-line security/no-inline-assembly
assembly { size := extcodesize(_addr) }
return size > 0;
}
}
// File: openzeppelin-solidity/contracts/introspection/ERC165.sol
/**
* @title ERC165
* @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
*/
interface ERC165 {
/**
* @notice Query if a contract implements an interface
* @param _interfaceId The interface identifier, as specified in ERC-165
* @dev Interface identification is specified in ERC-165. This function
* uses less than 30,000 gas.
*/
function supportsInterface(bytes4 _interfaceId)
external
view
returns (bool);
}
// File: openzeppelin-solidity/contracts/introspection/SupportsInterfaceWithLookup.sol
/**
* @title SupportsInterfaceWithLookup
* @author Matt Condon (@shrugs)
* @dev Implements ERC165 using a lookup table.
*/
contract SupportsInterfaceWithLookup is ERC165 {
bytes4 public constant InterfaceId_ERC165 = 0x01ffc9a7;
/**
* 0x01ffc9a7 ===
* bytes4(keccak256('supportsInterface(bytes4)'))
*/
/**
* @dev a mapping of interface id to whether or not it's supported
*/
mapping(bytes4 => bool) internal supportedInterfaces;
/**
* @dev A contract implementing SupportsInterfaceWithLookup
* implement ERC165 itself
*/
constructor()
public
{
_registerInterface(InterfaceId_ERC165);
}
/**
* @dev implement supportsInterface(bytes4) using a lookup table
*/
function supportsInterface(bytes4 _interfaceId)
external
view
returns (bool)
{
return supportedInterfaces[_interfaceId];
}
/**
* @dev private method for registering an interface
*/
function _registerInterface(bytes4 _interfaceId)
internal
{
require(_interfaceId != 0xffffffff);
supportedInterfaces[_interfaceId] = true;
}
}
// File: erc-payable-token/contracts/token/ERC1363/ERC1363.sol
/**
* @title ERC1363 interface
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Interface for a Payable Token contract as defined in
* https://github.com/ethereum/EIPs/issues/1363
*/
contract ERC1363 is ERC20, ERC165 {
/*
* Note: the ERC-165 identifier for this interface is 0x4bbee2df.
* 0x4bbee2df ===
* bytes4(keccak256('transferAndCall(address,uint256)')) ^
* bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)'))
*/
/*
* Note: the ERC-165 identifier for this interface is 0xfb9ec8ce.
* 0xfb9ec8ce ===
* bytes4(keccak256('approveAndCall(address,uint256)')) ^
* bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
*/
/**
* @notice Transfer tokens from `msg.sender` to another address
* and then call `onTransferReceived` on receiver
* @param _to address The address which you want to transfer to
* @param _value uint256 The amount of tokens to be transferred
* @return true unless throwing
*/
function transferAndCall(address _to, uint256 _value) public returns (bool);
/**
* @notice Transfer tokens from `msg.sender` to another address
* and then call `onTransferReceived` on receiver
* @param _to address The address which you want to transfer to
* @param _value uint256 The amount of tokens to be transferred
* @param _data bytes Additional data with no specified format, sent in call to `_to`
* @return true unless throwing
*/
function transferAndCall(address _to, uint256 _value, bytes _data) public returns (bool); // solium-disable-line max-len
/**
* @notice Transfer tokens from one address to another
* and then call `onTransferReceived` on receiver
* @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
* @return true unless throwing
*/
function transferFromAndCall(address _from, address _to, uint256 _value) public returns (bool); // solium-disable-line max-len
/**
* @notice Transfer tokens from one address to another
* and then call `onTransferReceived` on receiver
* @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
* @param _data bytes Additional data with no specified format, sent in call to `_to`
* @return true unless throwing
*/
function transferFromAndCall(address _from, address _to, uint256 _value, bytes _data) public returns (bool); // solium-disable-line max-len, arg-overflow
/**
* @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender
* and then call `onApprovalReceived` on spender
* 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 address The address which will spend the funds
* @param _value uint256 The amount of tokens to be spent
*/
function approveAndCall(address _spender, uint256 _value) public returns (bool); // solium-disable-line max-len
/**
* @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender
* and then call `onApprovalReceived` on spender
* 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 address The address which will spend the funds
* @param _value uint256 The amount of tokens to be spent
* @param _data bytes Additional data with no specified format, sent in call to `_spender`
*/
function approveAndCall(address _spender, uint256 _value, bytes _data) public returns (bool); // solium-disable-line max-len
}
// File: erc-payable-token/contracts/token/ERC1363/ERC1363Receiver.sol
/**
* @title ERC1363Receiver interface
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Interface for any contract that wants to support transferAndCall or transferFromAndCall
* from ERC1363 token contracts as defined in
* https://github.com/ethereum/EIPs/issues/1363
*/
contract ERC1363Receiver {
/*
* Note: the ERC-165 identifier for this interface is 0x88a7ca5c.
* 0x88a7ca5c === bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))
*/
/**
* @notice Handle the receipt of ERC1363 tokens
* @dev Any ERC1363 smart contract calls this function on the recipient
* after a `transfer` or a `transferFrom`. This function MAY throw to revert and reject the
* transfer. Return of other than the magic value MUST result in the
* transaction being reverted.
* Note: the token contract address is always the message sender.
* @param _operator address The address which called `transferAndCall` or `transferFromAndCall` function
* @param _from address The address which are token transferred from
* @param _value uint256 The amount of tokens transferred
* @param _data bytes Additional data with no specified format
* @return `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))`
* unless throwing
*/
function onTransferReceived(address _operator, address _from, uint256 _value, bytes _data) external returns (bytes4); // solium-disable-line max-len, arg-overflow
}
// File: erc-payable-token/contracts/token/ERC1363/ERC1363Spender.sol
/**
* @title ERC1363Spender interface
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Interface for any contract that wants to support approveAndCall
* from ERC1363 token contracts as defined in
* https://github.com/ethereum/EIPs/issues/1363
*/
contract ERC1363Spender {
/*
* Note: the ERC-165 identifier for this interface is 0x7b04a2d0.
* 0x7b04a2d0 === bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))
*/
/**
* @notice Handle the approval of ERC1363 tokens
* @dev Any ERC1363 smart contract calls this function on the recipient
* after an `approve`. This function MAY throw to revert and reject the
* approval. Return of other than the magic value MUST result in the
* transaction being reverted.
* Note: the token contract address is always the message sender.
* @param _owner address The address which called `approveAndCall` function
* @param _value uint256 The amount of tokens to be spent
* @param _data bytes Additional data with no specified format
* @return `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))`
* unless throwing
*/
function onApprovalReceived(address _owner, uint256 _value, bytes _data) external returns (bytes4); // solium-disable-line max-len
}
// File: erc-payable-token/contracts/token/ERC1363/ERC1363BasicToken.sol
// solium-disable-next-line max-len
/**
* @title ERC1363BasicToken
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Implementation of an ERC1363 interface
*/
contract ERC1363BasicToken is SupportsInterfaceWithLookup, StandardToken, ERC1363 { // solium-disable-line max-len
using AddressUtils for address;
/*
* Note: the ERC-165 identifier for this interface is 0x4bbee2df.
* 0x4bbee2df ===
* bytes4(keccak256('transferAndCall(address,uint256)')) ^
* bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)'))
*/
bytes4 internal constant InterfaceId_ERC1363Transfer = 0x4bbee2df;
/*
* Note: the ERC-165 identifier for this interface is 0xfb9ec8ce.
* 0xfb9ec8ce ===
* bytes4(keccak256('approveAndCall(address,uint256)')) ^
* bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
*/
bytes4 internal constant InterfaceId_ERC1363Approve = 0xfb9ec8ce;
// Equals to `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))`
// which can be also obtained as `ERC1363Receiver(0).onTransferReceived.selector`
bytes4 private constant ERC1363_RECEIVED = 0x88a7ca5c;
// Equals to `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))`
// which can be also obtained as `ERC1363Spender(0).onApprovalReceived.selector`
bytes4 private constant ERC1363_APPROVED = 0x7b04a2d0;
constructor() public {
// register the supported interfaces to conform to ERC1363 via ERC165
_registerInterface(InterfaceId_ERC1363Transfer);
_registerInterface(InterfaceId_ERC1363Approve);
}
function transferAndCall(
address _to,
uint256 _value
)
public
returns (bool)
{
return transferAndCall(_to, _value, "");
}
function transferAndCall(
address _to,
uint256 _value,
bytes _data
)
public
returns (bool)
{
require(transfer(_to, _value));
require(
checkAndCallTransfer(
msg.sender,
_to,
_value,
_data
)
);
return true;
}
function transferFromAndCall(
address _from,
address _to,
uint256 _value
)
public
returns (bool)
{
// solium-disable-next-line arg-overflow
return transferFromAndCall(_from, _to, _value, "");
}
function transferFromAndCall(
address _from,
address _to,
uint256 _value,
bytes _data
)
public
returns (bool)
{
require(transferFrom(_from, _to, _value));
require(
checkAndCallTransfer(
_from,
_to,
_value,
_data
)
);
return true;
}
function approveAndCall(
address _spender,
uint256 _value
)
public
returns (bool)
{
return approveAndCall(_spender, _value, "");
}
function approveAndCall(
address _spender,
uint256 _value,
bytes _data
)
public
returns (bool)
{
approve(_spender, _value);
require(
checkAndCallApprove(
_spender,
_value,
_data
)
);
return true;
}
/**
* @dev Internal function to invoke `onTransferReceived` on a target address
* The call is not executed if the target address is not a contract
* @param _from address Representing the previous owner of the given token value
* @param _to address Target address that will receive the tokens
* @param _value uint256 The amount mount of tokens to be transferred
* @param _data bytes Optional data to send along with the call
* @return whether the call correctly returned the expected magic value
*/
function checkAndCallTransfer(
address _from,
address _to,
uint256 _value,
bytes _data
)
internal
returns (bool)
{
if (!_to.isContract()) {
return false;
}
bytes4 retval = ERC1363Receiver(_to).onTransferReceived(
msg.sender, _from, _value, _data
);
return (retval == ERC1363_RECEIVED);
}
/**
* @dev Internal function to invoke `onApprovalReceived` on a target address
* The call is not executed if the target address is not a contract
* @param _spender address The address which will spend the funds
* @param _value uint256 The amount of tokens to be spent
* @param _data bytes Optional data to send along with the call
* @return whether the call correctly returned the expected magic value
*/
function checkAndCallApprove(
address _spender,
uint256 _value,
bytes _data
)
internal
returns (bool)
{
if (!_spender.isContract()) {
return false;
}
bytes4 retval = ERC1363Spender(_spender).onApprovalReceived(
msg.sender, _value, _data
);
return (retval == ERC1363_APPROVED);
}
}
// File: eth-token-recover/contracts/TokenRecover.sol
/**
* @title TokenRecover
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Allow to recover any ERC20 sent into the contract for error
*/
contract TokenRecover is Ownable {
/**
* @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
* @param _tokenAddress address The token contract address
* @param _tokens Number of tokens to be sent
* @return bool
*/
function recoverERC20(
address _tokenAddress,
uint256 _tokens
)
public
onlyOwner
returns (bool success)
{
return ERC20Basic(_tokenAddress).transfer(owner, _tokens);
}
}
// File: contracts/token/FidelityHouseToken.sol
// solium-disable-next-line max-len
contract FidelityHouseToken is DetailedERC20, RBACMintableToken, BurnableToken, ERC1363BasicToken, TokenRecover {
uint256 public lockedUntil;
mapping(address => uint256) internal lockedBalances;
modifier canTransfer(address _from, uint256 _value) {
require(
mintingFinished,
"Minting should be finished before transfer."
);
require(
_value <= balances[_from].sub(lockedBalanceOf(_from)),
"Can't transfer more than unlocked tokens"
);
_;
}
constructor(uint256 _lockedUntil)
DetailedERC20("FidelityHouse Token", "FIH", 18)
public
{
lockedUntil = _lockedUntil;
}
/**
* @dev Gets the locked balance of the specified address.
* @param _owner The address to query the balance of.
* @return An uint256 representing the locked amount owned by the passed address.
*/
function lockedBalanceOf(address _owner) public view returns (uint256) {
// solium-disable-next-line security/no-block-members
return block.timestamp <= lockedUntil ? lockedBalances[_owner] : 0;
}
/**
* @dev Function to mint and lock tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mintAndLock(
address _to,
uint256 _amount
)
public
hasMintPermission
canMint
returns (bool)
{
lockedBalances[_to] = lockedBalances[_to].add(_amount);
return super.mint(_to, _amount);
}
function transfer(
address _to,
uint256 _value
)
public
canTransfer(msg.sender, _value)
returns (bool)
{
return super.transfer(_to, _value);
}
function transferFrom(
address _from,
address _to,
uint256 _value
)
public
canTransfer(_from, _value)
returns (bool)
{
return super.transferFrom(_from, _to, _value);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"_operator","type":"address"},{"name":"_role","type":"string"}],"name":"checkRole","outputs":[],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferAndCall","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":true,"inputs":[],"name":"InterfaceId_ERC165","outputs":[{"name":"","type":"bytes4"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_operator","type":"address"},{"name":"_role","type":"string"}],"name":"hasRole","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[{"name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"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":"_value","type":"uint256"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"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":"_owner","type":"address"}],"name":"lockedBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"},{"name":"_tokens","type":"uint256"}],"name":"recoverERC20","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ROLE_MINTER","outputs":[{"name":"","type":"string"}],"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":"_minter","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mintAndLock","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":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferFromAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedUntil","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFromAndCall","outputs":[{"name":"","type":"bool"}],"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"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_lockedUntil","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"role","type":"string"}],"name":"RoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"role","type":"string"}],"name":"RoleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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"}]Contract Creation Code
60806040526007805460a060020a60ff02191690553480156200002157600080fd5b506040516020806200209b83398101604081815291518282018352601382527f466964656c697479486f75736520546f6b656e0000000000000000000000000060208084019182528451808601909552600385527f4649480000000000000000000000000000000000000000000000000000000000908501528251919391601291620000b1916000919062000203565b508151620000c790600190602085019062000203565b506002805460ff191660ff92909216919091179055506200011390507f01ffc9a70000000000000000000000000000000000000000000000000000000064010000000062000196810204565b60078054600160a060020a03191633179055620001597f4bbee2df0000000000000000000000000000000000000000000000000000000064010000000062000196810204565b6200018d7ffb9ec8ce0000000000000000000000000000000000000000000000000000000064010000000062000196810204565b600955620002a8565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620001c657600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152600360205260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200024657805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027657825182559160200191906001019062000259565b506200028492915062000288565b5090565b620002a591905b808211156200028457600081556001016200028f565b90565b611de380620002b86000396000f3006080604052600436106101b65763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a781146101bb57806305d2035b146101f157806306fdde0314610206578063095ea7b3146102905780630988ca8c146102b45780631296ee621461031d57806318160ddd1461034157806319fa8f5014610368578063217fe6c61461039a57806323b872dd146104015780633092afd51461042b578063313ce5671461044c5780633177029f146104775780634000aea01461049b57806340c10f191461050457806342966c68146105285780635935573614610540578063661884631461056157806370a0823114610585578063715018a6146105a65780637d64bcb4146105bb5780638980f11f146105d05780638da5cb5b146105f457806392afc33a1461062557806395d89b411461063a578063983b2d561461064f5780639f2c950314610670578063a9059cbb14610694578063c1d34b89146106b8578063cae9ca5114610727578063ce0617ec14610790578063d73dd623146107a5578063d8fbe994146107c9578063dd62ed3e146107f3578063f2fde38b1461081a575b600080fd5b3480156101c757600080fd5b506101dd600160e060020a03196004351661083b565b604080519115158252519081900360200190f35b3480156101fd57600080fd5b506101dd61085a565b34801561021257600080fd5b5061021b61086a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025557818101518382015260200161023d565b50505050905090810190601f1680156102825780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029c57600080fd5b506101dd600160a060020a03600435166024356108f8565b3480156102c057600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261031b958335600160a060020a031695369560449491939091019190819084018382808284375094975061095e9650505050505050565b005b34801561032957600080fd5b506101dd600160a060020a03600435166024356109cc565b34801561034d57600080fd5b506103566109f0565b60408051918252519081900360200190f35b34801561037457600080fd5b5061037d6109f6565b60408051600160e060020a03199092168252519081900360200190f35b3480156103a657600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526101dd958335600160a060020a0316953695604494919390910191908190840183828082843750949750610a1a9650505050505050565b34801561040d57600080fd5b506101dd600160a060020a0360043581169060243516604435610a86565b34801561043757600080fd5b5061031b600160a060020a0360043516610bd9565b34801561045857600080fd5b50610461610c20565b6040805160ff9092168252519081900360200190f35b34801561048357600080fd5b506101dd600160a060020a0360043516602435610c29565b3480156104a757600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101dd948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610c469650505050505050565b34801561051057600080fd5b506101dd600160a060020a0360043516602435610c7e565b34801561053457600080fd5b5061031b600435610d8d565b34801561054c57600080fd5b50610356600160a060020a0360043516610d97565b34801561056d57600080fd5b506101dd600160a060020a0360043516602435610dca565b34801561059157600080fd5b50610356600160a060020a0360043516610eb9565b3480156105b257600080fd5b5061031b610ed4565b3480156105c757600080fd5b506101dd610f42565b3480156105dc57600080fd5b506101dd600160a060020a0360043516602435610fc6565b34801561060057600080fd5b50610609611082565b60408051600160a060020a039092168252519081900360200190f35b34801561063157600080fd5b5061021b611091565b34801561064657600080fd5b5061021b6110b6565b34801561065b57600080fd5b5061031b600160a060020a0360043516611110565b34801561067c57600080fd5b506101dd600160a060020a0360043516602435611154565b3480156106a057600080fd5b506101dd600160a060020a03600435166024356111e6565b3480156106c457600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526101dd94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506113129650505050505050565b34801561073357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101dd948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061134c9650505050505050565b34801561079c57600080fd5b50610356611364565b3480156107b157600080fd5b506101dd600160a060020a036004351660243561136a565b3480156107d557600080fd5b506101dd600160a060020a0360043581169060243516604435611403565b3480156107ff57600080fd5b50610356600160a060020a0360043581169060243516611429565b34801561082657600080fd5b5061031b600160a060020a0360043516611454565b600160e060020a03191660009081526003602052604090205460ff1690565b60075460a060020a900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6109c8826008836040518082805190602001908083835b602083106109945780518252601f199092019160209182019101610975565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611474565b5050565b60006109e983836020604051908101604052806000815250610c46565b9392505050565b60055490565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b60006109e9836008846040518082805190602001908083835b60208310610a525780518252601f199092019160209182019101610a33565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611489565b60008382600760149054906101000a900460ff161515610b16576040805160e560020a62461bcd02815260206004820152602b60248201527f4d696e74696e672073686f756c642062652066696e6973686564206265666f7260448201527f65207472616e736665722e000000000000000000000000000000000000000000606482015290519081900360840190fd5b610b47610b2283610d97565b600160a060020a0384166000908152600460205260409020549063ffffffff6114a816565b811115610bc4576040805160e560020a62461bcd02815260206004820152602860248201527f43616e2774207472616e73666572206d6f7265207468616e20756e6c6f636b6560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610bcf8686866114ba565b9695505050505050565b600754600160a060020a03163314610bf057600080fd5b610c1d81604080519081016040528060068152602001600080516020611d7883398151915281525061161f565b50565b60025460ff1681565b60006109e98383602060405190810160405280600081525061134c565b6000610c5284846111e6565b1515610c5d57600080fd5b610c6933858585611730565b1515610c7457600080fd5b5060019392505050565b6000610cad33604080519081016040528060068152602001600080516020611d7883398151915281525061095e565b60075460a060020a900460ff1615610cc457600080fd5b600554610cd7908363ffffffff61189d16565b600555600160a060020a038316600090815260046020526040902054610d03908363ffffffff61189d16565b600160a060020a038416600081815260046020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020611d988339815191529181900360200190a350600192915050565b610c1d33826118aa565b6000600954421115610daa576000610dc4565b600160a060020a0382166000908152600a60205260409020545b92915050565b336000908152600660209081526040808320600160a060020a0386168452909152812054808310610e1e57336000908152600660209081526040808320600160a060020a0388168452909152812055610e53565b610e2e818463ffffffff6114a816565b336000908152600660209081526040808320600160a060020a03891684529091529020555b336000818152600660209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526004602052604090205490565b600754600160a060020a03163314610eeb57600080fd5b600754604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26007805473ffffffffffffffffffffffffffffffffffffffff19169055565b600754600090600160a060020a03163314610f5c57600080fd5b60075460a060020a900460ff1615610f7357600080fd5b6007805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600754600090600160a060020a03163314610fe057600080fd5b600754604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b15801561104f57600080fd5b505af1158015611063573d6000803e3d6000fd5b505050506040513d602081101561107957600080fd5b50519392505050565b600754600160a060020a031681565b6040805180820190915260068152600080516020611d78833981519152602082015281565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108f05780601f106108c5576101008083540402835291602001916108f0565b600754600160a060020a0316331461112757600080fd5b610c1d81604080519081016040528060068152602001600080516020611d78833981519152815250611999565b600061118333604080519081016040528060068152602001600080516020611d7883398151915281525061095e565b60075460a060020a900460ff161561119a57600080fd5b600160a060020a0383166000908152600a60205260409020546111c3908363ffffffff61189d16565b600160a060020a0384166000908152600a60205260409020556109e98383610c7e565b60003382600760149054906101000a900460ff161515611276576040805160e560020a62461bcd02815260206004820152602b60248201527f4d696e74696e672073686f756c642062652066696e6973686564206265666f7260448201527f65207472616e736665722e000000000000000000000000000000000000000000606482015290519081900360840190fd5b611282610b2283610d97565b8111156112ff576040805160e560020a62461bcd02815260206004820152602860248201527f43616e2774207472616e73666572206d6f7265207468616e20756e6c6f636b6560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6113098585611a6b565b95945050505050565b600061131f858585610a86565b151561132a57600080fd5b61133685858585611730565b151561134157600080fd5b506001949350505050565b600061135884846108f8565b50610c69848484611b3a565b60095481565b336000908152600660209081526040808320600160a060020a038616845290915281205461139e908363ffffffff61189d16565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60006114218484846020604051908101604052806000815250611312565b949350505050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b600754600160a060020a0316331461146b57600080fd5b610c1d81611caa565b61147e8282611489565b15156109c857600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b6000828211156114b457fe5b50900390565b600160a060020a0383166000908152600460205260408120548211156114df57600080fd5b600160a060020a038416600090815260066020908152604080832033845290915290205482111561150f57600080fd5b600160a060020a038316151561152457600080fd5b600160a060020a03841660009081526004602052604090205461154d908363ffffffff6114a816565b600160a060020a038086166000908152600460205260408082209390935590851681522054611582908363ffffffff61189d16565b600160a060020a0380851660009081526004602090815260408083209490945591871681526006825282812033825290915220546115c6908363ffffffff6114a816565b600160a060020a0380861660008181526006602090815260408083203384528252918290209490945580518681529051928716939192600080516020611d98833981519152929181900390910190a35060019392505050565b611689826008836040518082805190602001908083835b602083106116555780518252601f199092019160209182019101611636565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611d28565b81600160a060020a03167fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a826040518080602001828103825283818151815260200191508051906020019080838360005b838110156116f25781810151838201526020016116da565b50505050905090810190601f16801561171f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b60008061174585600160a060020a0316611d4a565b15156117545760009150611894565b6040517f88a7ca5c0000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a16946388a7ca5c94938c938b938b93909160a490910190602085019080838360005b838110156117e75781810151838201526020016117cf565b50505050905090810190601f1680156118145780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561183657600080fd5b505af115801561184a573d6000803e3d6000fd5b505050506040513d602081101561186057600080fd5b5051600160e060020a031981167f88a7ca5c0000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b81810182811015610dc457fe5b600160a060020a0382166000908152600460205260409020548111156118cf57600080fd5b600160a060020a0382166000908152600460205260409020546118f8908263ffffffff6114a816565b600160a060020a038316600090815260046020526040902055600554611924908263ffffffff6114a816565b600555604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020611d988339815191529181900360200190a35050565b611a03826008836040518082805190602001908083835b602083106119cf5780518252601f1990920191602091820191016119b0565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611d52565b81600160a060020a03167fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982604051808060200182810382528381815181526020019150805190602001908083836000838110156116f25781810151838201526020016116da565b33600090815260046020526040812054821115611a8757600080fd5b600160a060020a0383161515611a9c57600080fd5b33600090815260046020526040902054611abc908363ffffffff6114a816565b3360009081526004602052604080822092909255600160a060020a03851681522054611aee908363ffffffff61189d16565b600160a060020a038416600081815260046020908152604091829020939093558051858152905191923392600080516020611d988339815191529281900390910190a350600192915050565b600080611b4f85600160a060020a0316611d4a565b1515611b5e5760009150611ca2565b84600160a060020a0316637b04a2d03386866040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611bf6578181015183820152602001611bde565b50505050905090810190601f168015611c235780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015611c4457600080fd5b505af1158015611c58573d6000803e3d6000fd5b505050506040513d6020811015611c6e57600080fd5b5051600160e060020a031981167f7b04a2d00000000000000000000000000000000000000000000000000000000014925090505b509392505050565b600160a060020a0381161515611cbf57600080fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b6000903b1190565b600160a060020a0316600090815260209190915260409020805460ff1916600117905556006d696e7465720000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582066435c89f23e3daa087f941a0db42ad25fb3b424130cec015b308c4a0ed7d3ff0029000000000000000000000000000000000000000000000000000000005e15e060
Deployed Bytecode
0x6080604052600436106101b65763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a781146101bb57806305d2035b146101f157806306fdde0314610206578063095ea7b3146102905780630988ca8c146102b45780631296ee621461031d57806318160ddd1461034157806319fa8f5014610368578063217fe6c61461039a57806323b872dd146104015780633092afd51461042b578063313ce5671461044c5780633177029f146104775780634000aea01461049b57806340c10f191461050457806342966c68146105285780635935573614610540578063661884631461056157806370a0823114610585578063715018a6146105a65780637d64bcb4146105bb5780638980f11f146105d05780638da5cb5b146105f457806392afc33a1461062557806395d89b411461063a578063983b2d561461064f5780639f2c950314610670578063a9059cbb14610694578063c1d34b89146106b8578063cae9ca5114610727578063ce0617ec14610790578063d73dd623146107a5578063d8fbe994146107c9578063dd62ed3e146107f3578063f2fde38b1461081a575b600080fd5b3480156101c757600080fd5b506101dd600160e060020a03196004351661083b565b604080519115158252519081900360200190f35b3480156101fd57600080fd5b506101dd61085a565b34801561021257600080fd5b5061021b61086a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025557818101518382015260200161023d565b50505050905090810190601f1680156102825780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029c57600080fd5b506101dd600160a060020a03600435166024356108f8565b3480156102c057600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261031b958335600160a060020a031695369560449491939091019190819084018382808284375094975061095e9650505050505050565b005b34801561032957600080fd5b506101dd600160a060020a03600435166024356109cc565b34801561034d57600080fd5b506103566109f0565b60408051918252519081900360200190f35b34801561037457600080fd5b5061037d6109f6565b60408051600160e060020a03199092168252519081900360200190f35b3480156103a657600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526101dd958335600160a060020a0316953695604494919390910191908190840183828082843750949750610a1a9650505050505050565b34801561040d57600080fd5b506101dd600160a060020a0360043581169060243516604435610a86565b34801561043757600080fd5b5061031b600160a060020a0360043516610bd9565b34801561045857600080fd5b50610461610c20565b6040805160ff9092168252519081900360200190f35b34801561048357600080fd5b506101dd600160a060020a0360043516602435610c29565b3480156104a757600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101dd948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610c469650505050505050565b34801561051057600080fd5b506101dd600160a060020a0360043516602435610c7e565b34801561053457600080fd5b5061031b600435610d8d565b34801561054c57600080fd5b50610356600160a060020a0360043516610d97565b34801561056d57600080fd5b506101dd600160a060020a0360043516602435610dca565b34801561059157600080fd5b50610356600160a060020a0360043516610eb9565b3480156105b257600080fd5b5061031b610ed4565b3480156105c757600080fd5b506101dd610f42565b3480156105dc57600080fd5b506101dd600160a060020a0360043516602435610fc6565b34801561060057600080fd5b50610609611082565b60408051600160a060020a039092168252519081900360200190f35b34801561063157600080fd5b5061021b611091565b34801561064657600080fd5b5061021b6110b6565b34801561065b57600080fd5b5061031b600160a060020a0360043516611110565b34801561067c57600080fd5b506101dd600160a060020a0360043516602435611154565b3480156106a057600080fd5b506101dd600160a060020a03600435166024356111e6565b3480156106c457600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526101dd94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506113129650505050505050565b34801561073357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101dd948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061134c9650505050505050565b34801561079c57600080fd5b50610356611364565b3480156107b157600080fd5b506101dd600160a060020a036004351660243561136a565b3480156107d557600080fd5b506101dd600160a060020a0360043581169060243516604435611403565b3480156107ff57600080fd5b50610356600160a060020a0360043581169060243516611429565b34801561082657600080fd5b5061031b600160a060020a0360043516611454565b600160e060020a03191660009081526003602052604090205460ff1690565b60075460a060020a900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6109c8826008836040518082805190602001908083835b602083106109945780518252601f199092019160209182019101610975565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611474565b5050565b60006109e983836020604051908101604052806000815250610c46565b9392505050565b60055490565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b60006109e9836008846040518082805190602001908083835b60208310610a525780518252601f199092019160209182019101610a33565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611489565b60008382600760149054906101000a900460ff161515610b16576040805160e560020a62461bcd02815260206004820152602b60248201527f4d696e74696e672073686f756c642062652066696e6973686564206265666f7260448201527f65207472616e736665722e000000000000000000000000000000000000000000606482015290519081900360840190fd5b610b47610b2283610d97565b600160a060020a0384166000908152600460205260409020549063ffffffff6114a816565b811115610bc4576040805160e560020a62461bcd02815260206004820152602860248201527f43616e2774207472616e73666572206d6f7265207468616e20756e6c6f636b6560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610bcf8686866114ba565b9695505050505050565b600754600160a060020a03163314610bf057600080fd5b610c1d81604080519081016040528060068152602001600080516020611d7883398151915281525061161f565b50565b60025460ff1681565b60006109e98383602060405190810160405280600081525061134c565b6000610c5284846111e6565b1515610c5d57600080fd5b610c6933858585611730565b1515610c7457600080fd5b5060019392505050565b6000610cad33604080519081016040528060068152602001600080516020611d7883398151915281525061095e565b60075460a060020a900460ff1615610cc457600080fd5b600554610cd7908363ffffffff61189d16565b600555600160a060020a038316600090815260046020526040902054610d03908363ffffffff61189d16565b600160a060020a038416600081815260046020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020611d988339815191529181900360200190a350600192915050565b610c1d33826118aa565b6000600954421115610daa576000610dc4565b600160a060020a0382166000908152600a60205260409020545b92915050565b336000908152600660209081526040808320600160a060020a0386168452909152812054808310610e1e57336000908152600660209081526040808320600160a060020a0388168452909152812055610e53565b610e2e818463ffffffff6114a816565b336000908152600660209081526040808320600160a060020a03891684529091529020555b336000818152600660209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526004602052604090205490565b600754600160a060020a03163314610eeb57600080fd5b600754604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26007805473ffffffffffffffffffffffffffffffffffffffff19169055565b600754600090600160a060020a03163314610f5c57600080fd5b60075460a060020a900460ff1615610f7357600080fd5b6007805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600754600090600160a060020a03163314610fe057600080fd5b600754604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b15801561104f57600080fd5b505af1158015611063573d6000803e3d6000fd5b505050506040513d602081101561107957600080fd5b50519392505050565b600754600160a060020a031681565b6040805180820190915260068152600080516020611d78833981519152602082015281565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108f05780601f106108c5576101008083540402835291602001916108f0565b600754600160a060020a0316331461112757600080fd5b610c1d81604080519081016040528060068152602001600080516020611d78833981519152815250611999565b600061118333604080519081016040528060068152602001600080516020611d7883398151915281525061095e565b60075460a060020a900460ff161561119a57600080fd5b600160a060020a0383166000908152600a60205260409020546111c3908363ffffffff61189d16565b600160a060020a0384166000908152600a60205260409020556109e98383610c7e565b60003382600760149054906101000a900460ff161515611276576040805160e560020a62461bcd02815260206004820152602b60248201527f4d696e74696e672073686f756c642062652066696e6973686564206265666f7260448201527f65207472616e736665722e000000000000000000000000000000000000000000606482015290519081900360840190fd5b611282610b2283610d97565b8111156112ff576040805160e560020a62461bcd02815260206004820152602860248201527f43616e2774207472616e73666572206d6f7265207468616e20756e6c6f636b6560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6113098585611a6b565b95945050505050565b600061131f858585610a86565b151561132a57600080fd5b61133685858585611730565b151561134157600080fd5b506001949350505050565b600061135884846108f8565b50610c69848484611b3a565b60095481565b336000908152600660209081526040808320600160a060020a038616845290915281205461139e908363ffffffff61189d16565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60006114218484846020604051908101604052806000815250611312565b949350505050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b600754600160a060020a0316331461146b57600080fd5b610c1d81611caa565b61147e8282611489565b15156109c857600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b6000828211156114b457fe5b50900390565b600160a060020a0383166000908152600460205260408120548211156114df57600080fd5b600160a060020a038416600090815260066020908152604080832033845290915290205482111561150f57600080fd5b600160a060020a038316151561152457600080fd5b600160a060020a03841660009081526004602052604090205461154d908363ffffffff6114a816565b600160a060020a038086166000908152600460205260408082209390935590851681522054611582908363ffffffff61189d16565b600160a060020a0380851660009081526004602090815260408083209490945591871681526006825282812033825290915220546115c6908363ffffffff6114a816565b600160a060020a0380861660008181526006602090815260408083203384528252918290209490945580518681529051928716939192600080516020611d98833981519152929181900390910190a35060019392505050565b611689826008836040518082805190602001908083835b602083106116555780518252601f199092019160209182019101611636565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611d28565b81600160a060020a03167fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a826040518080602001828103825283818151815260200191508051906020019080838360005b838110156116f25781810151838201526020016116da565b50505050905090810190601f16801561171f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b60008061174585600160a060020a0316611d4a565b15156117545760009150611894565b6040517f88a7ca5c0000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a16946388a7ca5c94938c938b938b93909160a490910190602085019080838360005b838110156117e75781810151838201526020016117cf565b50505050905090810190601f1680156118145780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561183657600080fd5b505af115801561184a573d6000803e3d6000fd5b505050506040513d602081101561186057600080fd5b5051600160e060020a031981167f88a7ca5c0000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b81810182811015610dc457fe5b600160a060020a0382166000908152600460205260409020548111156118cf57600080fd5b600160a060020a0382166000908152600460205260409020546118f8908263ffffffff6114a816565b600160a060020a038316600090815260046020526040902055600554611924908263ffffffff6114a816565b600555604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020611d988339815191529181900360200190a35050565b611a03826008836040518082805190602001908083835b602083106119cf5780518252601f1990920191602091820191016119b0565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611d52565b81600160a060020a03167fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982604051808060200182810382528381815181526020019150805190602001908083836000838110156116f25781810151838201526020016116da565b33600090815260046020526040812054821115611a8757600080fd5b600160a060020a0383161515611a9c57600080fd5b33600090815260046020526040902054611abc908363ffffffff6114a816565b3360009081526004602052604080822092909255600160a060020a03851681522054611aee908363ffffffff61189d16565b600160a060020a038416600081815260046020908152604091829020939093558051858152905191923392600080516020611d988339815191529281900390910190a350600192915050565b600080611b4f85600160a060020a0316611d4a565b1515611b5e5760009150611ca2565b84600160a060020a0316637b04a2d03386866040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611bf6578181015183820152602001611bde565b50505050905090810190601f168015611c235780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015611c4457600080fd5b505af1158015611c58573d6000803e3d6000fd5b505050506040513d6020811015611c6e57600080fd5b5051600160e060020a031981167f7b04a2d00000000000000000000000000000000000000000000000000000000014925090505b509392505050565b600160a060020a0381161515611cbf57600080fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b6000903b1190565b600160a060020a0316600090815260209190915260409020805460ff1916600117905556006d696e7465720000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582066435c89f23e3daa087f941a0db42ad25fb3b424130cec015b308c4a0ed7d3ff0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000005e15e060
-----Decoded View---------------
Arg [0] : _lockedUntil (uint256): 1578492000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000005e15e060
Swarm Source
bzzr://66435c89f23e3daa087f941a0db42ad25fb3b424130cec015b308c4a0ed7d3ff
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.