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
Latest 10 from a total of 10 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 16306522 | 801 days ago | IN | 0 ETH | 0.00107326 | ||||
Transfer | 11411511 | 1554 days ago | IN | 0 ETH | 0.0021859 | ||||
Transfer | 10012558 | 1770 days ago | IN | 0 ETH | 0.00050878 | ||||
Transfer | 9982011 | 1775 days ago | IN | 0 ETH | 0.00047912 | ||||
Transfer | 9907933 | 1786 days ago | IN | 0 ETH | 0.00023421 | ||||
Transfer | 8400733 | 2028 days ago | IN | 0 ETH | 0.00009773 | ||||
Transfer | 8118892 | 2072 days ago | IN | 0 ETH | 0.00009747 | ||||
Renounce Pauser | 8068005 | 2080 days ago | IN | 0 ETH | 0.00050417 | ||||
Renounce Minter | 8068002 | 2080 days ago | IN | 0 ETH | 0.00050764 | ||||
Init Token | 8067999 | 2080 days ago | IN | 0 ETH | 0.00406871 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CrowdliToken
Compiler Version
v0.5.0+commit.1d4f565a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-07-03 */ // File: src/main/solidity/zeppelin-solidity/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: src/main/solidity/zeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: src/main/solidity/zeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * > Note that this information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * `IERC20.balanceOf` and `IERC20.transfer`. */ function decimals() public view returns (uint8) { return _decimals; } } // File: src/main/solidity/zeppelin-solidity/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: src/main/solidity/zeppelin-solidity/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } // File: src/main/solidity/zeppelin-solidity/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(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); 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), "Roles: account is the zero address"); return role.bearer[account]; } } // File: src/main/solidity/zeppelin-solidity/contracts/access/roles/MinterRole.sol pragma solidity ^0.5.0; contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } // File: src/main/solidity/zeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol pragma solidity ^0.5.0; /** * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See `ERC20._mint`. * * Requirements: * * - the caller must have the `MinterRole`. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } // File: src/main/solidity/zeppelin-solidity/contracts/access/roles/PauserRole.sol pragma solidity ^0.5.0; contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } 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); } } // File: src/main/solidity/zeppelin-solidity/contracts/lifecycle/Pausable.sol pragma solidity ^0.5.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and 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, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } // File: src/main/solidity/zeppelin-solidity/contracts/token/ERC20/ERC20Pausable.sol pragma solidity ^0.5.0; /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ contract ERC20Pausable is ERC20, Pausable { 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) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } // File: src/main/solidity/CrowdliToken.sol pragma solidity 0.5.0; /** * @title CrowdliToken */ contract CrowdliToken is ERC20Detailed, ERC20Mintable, ERC20Pausable, Ownable { /** * Holds the addresses of the investors */ address[] public investors; constructor (string memory _name, string memory _symbol, uint8 _decimals) ERC20Detailed(_name,_symbol,_decimals) public { } function mint(address account, uint256 amount) public onlyMinter returns (bool) { if (balanceOf(account) == 0) { investors.push(account); } return super.mint(account, amount); } function initToken(address _directorsBoard,address _crowdliSTO) external onlyOwner{ addMinter(_directorsBoard); addMinter(_crowdliSTO); addPauser(_directorsBoard); addPauser(_crowdliSTO); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"investors","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"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":"account","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":"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":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_directorsBoard","type":"address"},{"name":"_crowdliSTO","type":"address"}],"name":"initToken","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"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","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
60806040523480156200001157600080fd5b5060405162001efd38038062001efd833981018060405260608110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b505060209182015185519194509250849184918491620000f191600091860190620003b0565b50815162000107906001906020850190620003b0565b506002805460ff191660ff929092169190911790555062000133905033640100000000620001a5810204565b6200014733640100000000620001f7810204565b60088054600160a860020a0319166101003381029190911791829055604051600160a060020a039190920416906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350505062000455565b620001c0600682640100000000620019c86200024982021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b62000212600782640100000000620019c86200024982021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200025e8282640100000000620002f0810204565b15620002cb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000600160a060020a03821615156200039057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003f357805160ff191683800117855562000423565b8280016001018555821562000423579182015b828111156200042357825182559160200191906001019062000406565b506200043192915062000435565b5090565b6200045291905b808211156200043157600081556001016200043c565b90565b611a9880620004656000396000f3fe60806040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610163578063095ea7b3146101ed57806318160ddd1461023a57806323b872dd14610261578063313ce567146102a457806339509351146102cf5780633f4ba83a146103085780633feb5f2b1461031f57806340c10f191461036557806346fbf68e1461039e5780635c975abb146103d15780636ef8d66d146103e657806370a08231146103fb578063715018a61461042e57806382dc1ec4146104435780638456cb59146104765780638da5cb5b1461048b5780638f32d59b146104a057806395d89b41146104b5578063983b2d56146104ca57806398650275146104fd578063a457c2d714610512578063a9059cbb1461054b578063aa271e1a14610584578063ba2b6bad146105b7578063dd62ed3e146105f2578063f2fde38b1461062d575b600080fd5b34801561016f57600080fd5b50610178610660565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b257818101518382015260200161019a565b50505050905090810190601f1680156101df5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f957600080fd5b506102266004803603604081101561021057600080fd5b50600160a060020a0381351690602001356106f6565b604080519115158252519081900360200190f35b34801561024657600080fd5b5061024f610753565b60408051918252519081900360200190f35b34801561026d57600080fd5b506102266004803603606081101561028457600080fd5b50600160a060020a03813581169160208101359091169060400135610759565b3480156102b057600080fd5b506102b96107b8565b6040805160ff9092168252519081900360200190f35b3480156102db57600080fd5b50610226600480360360408110156102f257600080fd5b50600160a060020a0381351690602001356107c1565b34801561031457600080fd5b5061031d610817565b005b34801561032b57600080fd5b506103496004803603602081101561034257600080fd5b5035610937565b60408051600160a060020a039092168252519081900360200190f35b34801561037157600080fd5b506102266004803603604081101561038857600080fd5b50600160a060020a03813516906020013561095f565b3480156103aa57600080fd5b50610226600480360360208110156103c157600080fd5b5035600160a060020a0316610a58565b3480156103dd57600080fd5b50610226610a71565b3480156103f257600080fd5b5061031d610a7a565b34801561040757600080fd5b5061024f6004803603602081101561041e57600080fd5b5035600160a060020a0316610a85565b34801561043a57600080fd5b5061031d610aa0565b34801561044f57600080fd5b5061031d6004803603602081101561046657600080fd5b5035600160a060020a0316610b5b565b34801561048257600080fd5b5061031d610bec565b34801561049757600080fd5b50610349610cfc565b3480156104ac57600080fd5b50610226610d10565b3480156104c157600080fd5b50610178610d26565b3480156104d657600080fd5b5061031d600480360360208110156104ed57600080fd5b5035600160a060020a0316610d86565b34801561050957600080fd5b5061031d610e14565b34801561051e57600080fd5b506102266004803603604081101561053557600080fd5b50600160a060020a038135169060200135610e1d565b34801561055757600080fd5b506102266004803603604081101561056e57600080fd5b50600160a060020a038135169060200135610e73565b34801561059057600080fd5b50610226600480360360208110156105a757600080fd5b5035600160a060020a0316610ec9565b3480156105c357600080fd5b5061031d600480360360408110156105da57600080fd5b50600160a060020a0381358116916020013516610edc565b3480156105fe57600080fd5b5061024f6004803603604081101561061557600080fd5b50600160a060020a0381358116916020013516610f62565b34801561063957600080fd5b5061031d6004803603602081101561065057600080fd5b5035600160a060020a0316610f8d565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b5050505050905090565b60085460009060ff1615610742576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b61074c8383610ff4565b9392505050565b60055490565b60085460009060ff16156107a5576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b6107b084848461100a565b949350505050565b60025460ff1690565b60085460009060ff161561080d576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b61074c8383611061565b61082033610a58565b151561089c576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60085460ff1615156108f8576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6008805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600980548290811061094557fe5b600091825260209091200154600160a060020a0316905081565b600061096a33610ec9565b15156109e6576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6109ef83610a85565b1515610a4e57600980546001810182556000919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0385161790555b61074c838361109d565b6000610a6b60078363ffffffff61112e16565b92915050565b60085460ff1690565b610a83336111d6565b565b600160a060020a031660009081526003602052604090205490565b610aa8610d10565b1515610afe576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6008546040516000916101009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36008805474ffffffffffffffffffffffffffffffffffffffff0019169055565b610b6433610a58565b1515610be0576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b610be98161121e565b50565b610bf533610a58565b1515610c71576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60085460ff1615610cba576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b6008805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6008546101009004600160a060020a031690565b6008546101009004600160a060020a0316331490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b610d8f33610ec9565b1515610e0b576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b610be981611266565b610a83336112ae565b60085460009060ff1615610e69576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b61074c83836112f6565b60085460009060ff1615610ebf576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b61074c8383611332565b6000610a6b60068363ffffffff61112e16565b610ee4610d10565b1515610f3a576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610f4382610d86565b610f4c81610d86565b610f5582610b5b565b610f5e81610b5b565b5050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b610f95610d10565b1515610feb576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610be98161133f565b6000611001338484611439565b50600192915050565b60006110178484846115a6565b600160a060020a038416600090815260046020908152604080832033808552925290912054611057918691611052908663ffffffff61176c16565b611439565b5060019392505050565b336000818152600460209081526040808320600160a060020a03871684529091528120549091611001918590611052908663ffffffff6117cc16565b60006110a833610ec9565b1515611124576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6110018383611829565b6000600160a060020a03821615156111b6576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6111e760078263ffffffff61192016565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61122f60078263ffffffff6119c816565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61127760068263ffffffff6119c816565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6112bf60068263ffffffff61192016565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600460209081526040808320600160a060020a03871684529091528120549091611001918590611052908663ffffffff61176c16565b60006110013384846115a6565b600160a060020a03811615156113c5576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600854604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360088054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600160a060020a03831615156114be576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515611544576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316151561162c576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156116b2576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0383166000908152600360205260409020546116db908263ffffffff61176c16565b600160a060020a038085166000908152600360205260408082209390935590841681522054611710908263ffffffff6117cc16565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156117c6576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561074c576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a0382161515611889576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60055461189c908263ffffffff6117cc16565b600555600160a060020a0382166000908152600360205260409020546118c8908263ffffffff6117cc16565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61192a828261112e565b15156119a6576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6119d2828261112e565b15611a27576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe5061757361626c653a2070617573656400000000000000000000000000000000a165627a7a72305820ba7a2bdadcc613b7000e486957ef272d0d89455a849e62acc7ed30f978d934bc0029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000d43726f77646c6920546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034352540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610163578063095ea7b3146101ed57806318160ddd1461023a57806323b872dd14610261578063313ce567146102a457806339509351146102cf5780633f4ba83a146103085780633feb5f2b1461031f57806340c10f191461036557806346fbf68e1461039e5780635c975abb146103d15780636ef8d66d146103e657806370a08231146103fb578063715018a61461042e57806382dc1ec4146104435780638456cb59146104765780638da5cb5b1461048b5780638f32d59b146104a057806395d89b41146104b5578063983b2d56146104ca57806398650275146104fd578063a457c2d714610512578063a9059cbb1461054b578063aa271e1a14610584578063ba2b6bad146105b7578063dd62ed3e146105f2578063f2fde38b1461062d575b600080fd5b34801561016f57600080fd5b50610178610660565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b257818101518382015260200161019a565b50505050905090810190601f1680156101df5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f957600080fd5b506102266004803603604081101561021057600080fd5b50600160a060020a0381351690602001356106f6565b604080519115158252519081900360200190f35b34801561024657600080fd5b5061024f610753565b60408051918252519081900360200190f35b34801561026d57600080fd5b506102266004803603606081101561028457600080fd5b50600160a060020a03813581169160208101359091169060400135610759565b3480156102b057600080fd5b506102b96107b8565b6040805160ff9092168252519081900360200190f35b3480156102db57600080fd5b50610226600480360360408110156102f257600080fd5b50600160a060020a0381351690602001356107c1565b34801561031457600080fd5b5061031d610817565b005b34801561032b57600080fd5b506103496004803603602081101561034257600080fd5b5035610937565b60408051600160a060020a039092168252519081900360200190f35b34801561037157600080fd5b506102266004803603604081101561038857600080fd5b50600160a060020a03813516906020013561095f565b3480156103aa57600080fd5b50610226600480360360208110156103c157600080fd5b5035600160a060020a0316610a58565b3480156103dd57600080fd5b50610226610a71565b3480156103f257600080fd5b5061031d610a7a565b34801561040757600080fd5b5061024f6004803603602081101561041e57600080fd5b5035600160a060020a0316610a85565b34801561043a57600080fd5b5061031d610aa0565b34801561044f57600080fd5b5061031d6004803603602081101561046657600080fd5b5035600160a060020a0316610b5b565b34801561048257600080fd5b5061031d610bec565b34801561049757600080fd5b50610349610cfc565b3480156104ac57600080fd5b50610226610d10565b3480156104c157600080fd5b50610178610d26565b3480156104d657600080fd5b5061031d600480360360208110156104ed57600080fd5b5035600160a060020a0316610d86565b34801561050957600080fd5b5061031d610e14565b34801561051e57600080fd5b506102266004803603604081101561053557600080fd5b50600160a060020a038135169060200135610e1d565b34801561055757600080fd5b506102266004803603604081101561056e57600080fd5b50600160a060020a038135169060200135610e73565b34801561059057600080fd5b50610226600480360360208110156105a757600080fd5b5035600160a060020a0316610ec9565b3480156105c357600080fd5b5061031d600480360360408110156105da57600080fd5b50600160a060020a0381358116916020013516610edc565b3480156105fe57600080fd5b5061024f6004803603604081101561061557600080fd5b50600160a060020a0381358116916020013516610f62565b34801561063957600080fd5b5061031d6004803603602081101561065057600080fd5b5035600160a060020a0316610f8d565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b5050505050905090565b60085460009060ff1615610742576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b61074c8383610ff4565b9392505050565b60055490565b60085460009060ff16156107a5576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b6107b084848461100a565b949350505050565b60025460ff1690565b60085460009060ff161561080d576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b61074c8383611061565b61082033610a58565b151561089c576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60085460ff1615156108f8576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6008805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600980548290811061094557fe5b600091825260209091200154600160a060020a0316905081565b600061096a33610ec9565b15156109e6576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6109ef83610a85565b1515610a4e57600980546001810182556000919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0385161790555b61074c838361109d565b6000610a6b60078363ffffffff61112e16565b92915050565b60085460ff1690565b610a83336111d6565b565b600160a060020a031660009081526003602052604090205490565b610aa8610d10565b1515610afe576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6008546040516000916101009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36008805474ffffffffffffffffffffffffffffffffffffffff0019169055565b610b6433610a58565b1515610be0576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b610be98161121e565b50565b610bf533610a58565b1515610c71576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60085460ff1615610cba576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b6008805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6008546101009004600160a060020a031690565b6008546101009004600160a060020a0316331490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b610d8f33610ec9565b1515610e0b576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b610be981611266565b610a83336112ae565b60085460009060ff1615610e69576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b61074c83836112f6565b60085460009060ff1615610ebf576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611a4d833981519152604482015290519081900360640190fd5b61074c8383611332565b6000610a6b60068363ffffffff61112e16565b610ee4610d10565b1515610f3a576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610f4382610d86565b610f4c81610d86565b610f5582610b5b565b610f5e81610b5b565b5050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b610f95610d10565b1515610feb576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610be98161133f565b6000611001338484611439565b50600192915050565b60006110178484846115a6565b600160a060020a038416600090815260046020908152604080832033808552925290912054611057918691611052908663ffffffff61176c16565b611439565b5060019392505050565b336000818152600460209081526040808320600160a060020a03871684529091528120549091611001918590611052908663ffffffff6117cc16565b60006110a833610ec9565b1515611124576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6110018383611829565b6000600160a060020a03821615156111b6576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6111e760078263ffffffff61192016565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61122f60078263ffffffff6119c816565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61127760068263ffffffff6119c816565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6112bf60068263ffffffff61192016565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600460209081526040808320600160a060020a03871684529091528120549091611001918590611052908663ffffffff61176c16565b60006110013384846115a6565b600160a060020a03811615156113c5576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600854604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360088054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600160a060020a03831615156114be576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515611544576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316151561162c576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156116b2576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0383166000908152600360205260409020546116db908263ffffffff61176c16565b600160a060020a038085166000908152600360205260408082209390935590841681522054611710908263ffffffff6117cc16565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156117c6576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561074c576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a0382161515611889576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60055461189c908263ffffffff6117cc16565b600555600160a060020a0382166000908152600360205260409020546118c8908263ffffffff6117cc16565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61192a828261112e565b15156119a6576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6119d2828261112e565b15611a27576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe5061757361626c653a2070617573656400000000000000000000000000000000a165627a7a72305820ba7a2bdadcc613b7000e486957ef272d0d89455a849e62acc7ed30f978d934bc0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000d43726f77646c6920546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034352540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Crowdli Token
Arg [1] : _symbol (string): CRT
Arg [2] : _decimals (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 43726f77646c6920546f6b656e00000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4352540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
26081:784:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6105:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6105:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;6105:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25461:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25461:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25461:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;12343:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12343:91:0;;;;;;;;;;;;;;;;;;;;25293:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25293:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25293:160:0;;;;;;;;;;;;;;;;;;6963:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6963:83:0;;;;;;;;;;;;;;;;;;;;;;;25609:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25609:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25609:167:0;;;;;;;;;24775:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24775:118:0;;;;;;26220:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26220:26:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26220:26:0;;;;;;;-1:-1:-1;;;;;26220:26:0;;;;;;;;;;;;;;26395:225;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26395:225:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26395:225:0;;;;;;;;;22247:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22247:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22247:109:0;-1:-1:-1;;;;;22247:109:0;;;23984:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23984:78:0;;;;22464:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22464:77:0;;;;12497:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12497:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12497:110:0;-1:-1:-1;;;;;12497:110:0;;;1732:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1732:140:0;;;;22364:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22364:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22364:92:0;-1:-1:-1;;;;;22364:92:0;;;24564:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24564:116:0;;;;921:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;921:79:0;;;;1287:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1287:92:0;;;;6307:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6307:87:0;;;;20572:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20572:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20572:92:0;-1:-1:-1;;;;;20572:92:0;;;20672:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20672:77:0;;;;25784:177;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25784:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25784:177:0;;;;;;;;;25153:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25153:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25153:132:0;;;;;;;;;20455:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20455:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20455:109:0;-1:-1:-1;;;;;20455:109:0;;;26638:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26638:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26638:218:0;;;;;;;;;;;13039:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13039:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13039:134:0;;;;;;;;;;;2027:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2027:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2027:109:0;-1:-1:-1;;;;;2027:109:0;;;6105:83;6175:5;6168:12;;;;;;;;-1:-1:-1;;6168:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6142:13;;6168:12;;6175:5;;6168:12;;6175:5;6168:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6105:83;:::o;25461:140::-;24221:7;;25540:4;;24221:7;;24220:8;24212:37;;;;;-1:-1:-1;;;;;24212:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24212:37:0;;;;;;;;;;;;;;;25564:29;25578:7;25587:5;25564:13;:29::i;:::-;25557:36;25461:140;-1:-1:-1;;;25461:140:0:o;12343:91::-;12414:12;;12343:91;:::o;25293:160::-;24221:7;;25386:4;;24221:7;;24220:8;24212:37;;;;;-1:-1:-1;;;;;24212:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24212:37:0;;;;;;;;;;;;;;;25410:35;25429:4;25435:2;25439:5;25410:18;:35::i;:::-;25403:42;25293:160;-1:-1:-1;;;;25293:160:0:o;6963:83::-;7029:9;;;;6963:83;:::o;25609:167::-;24221:7;;25700:4;;24221:7;;24220:8;24212:37;;;;;-1:-1:-1;;;;;24212:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24212:37:0;;;;;;;;;;;;;;;25724:44;25748:7;25757:10;25724:23;:44::i;24775:118::-;22146:20;22155:10;22146:8;:20::i;:::-;22138:81;;;;;;;-1:-1:-1;;;;;22138:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24420:7;;;;24412:40;;;;;;;-1:-1:-1;;;;;24412:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24834:7;:15;;-1:-1:-1;;24834:15:0;;;24865:20;;;24874:10;24865:20;;;;;;;;;;;;;24775:118::o;26220:26::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26220:26:0;;-1:-1:-1;26220:26:0;:::o;26395:225::-;26469:4;20354:20;20363:10;20354:8;:20::i;:::-;20346:81;;;;;;;-1:-1:-1;;;;;20346:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26491:18;26501:7;26491:9;:18::i;:::-;:23;26487:80;;;26531:9;27:10:-1;;39:1;23:18;;45:23;;-1:-1;26531:23:0;;;;;;;;-1:-1:-1;;26531:23:0;-1:-1:-1;;;;;26531:23:0;;;;;26487:80;26585:27;26596:7;26605:6;26585:10;:27::i;22247:109::-;22303:4;22327:21;:8;22340:7;22327:21;:12;:21;:::i;:::-;22320:28;22247:109;-1:-1:-1;;22247:109:0:o;23984:78::-;24047:7;;;;23984:78;:::o;22464:77::-;22508:25;22522:10;22508:13;:25::i;:::-;22464:77::o;12497:110::-;-1:-1:-1;;;;;12581:18:0;12554:7;12581:18;;;:9;:18;;;;;;;12497:110::o;1732:140::-;1133:9;:7;:9::i;:::-;1125:54;;;;;;;-1:-1:-1;;;;;1125:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1815:6;;1794:40;;1831:1;;1815:6;;;-1:-1:-1;;;;;1815:6:0;;1794:40;;1831:1;;1794:40;1845:6;:19;;-1:-1:-1;;1845:19:0;;;1732:140::o;22364:92::-;22146:20;22155:10;22146:8;:20::i;:::-;22138:81;;;;;;;-1:-1:-1;;;;;22138:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22429:19;22440:7;22429:10;:19::i;:::-;22364:92;:::o;24564:116::-;22146:20;22155:10;22146:8;:20::i;:::-;22138:81;;;;;;;-1:-1:-1;;;;;22138:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24221:7;;;;24220:8;24212:37;;;;;-1:-1:-1;;;;;24212:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24212:37:0;;;;;;;;;;;;;;;24624:7;:14;;-1:-1:-1;;24624:14:0;24634:4;24624:14;;;24654:18;;;24661:10;24654:18;;;;;;;;;;;;;24564:116::o;921:79::-;986:6;;;;;-1:-1:-1;;;;;986:6:0;;921:79::o;1287:92::-;1365:6;;;;;-1:-1:-1;;;;;1365:6:0;1351:10;:20;;1287:92::o;6307:87::-;6379:7;6372:14;;;;;;;;-1:-1:-1;;6372:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6346:13;;6372:14;;6379:7;;6372:14;;6379:7;6372:14;;;;;;;;;;;;;;;;;;;;;;;;20572:92;20354:20;20363:10;20354:8;:20::i;:::-;20346:81;;;;;;;-1:-1:-1;;;;;20346:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20637:19;20648:7;20637:10;:19::i;20672:77::-;20716:25;20730:10;20716:13;:25::i;25784:177::-;24221:7;;25880:4;;24221:7;;24220:8;24212:37;;;;;-1:-1:-1;;;;;24212:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24212:37:0;;;;;;;;;;;;;;;25904:49;25928:7;25937:15;25904:23;:49::i;25153:132::-;24221:7;;25228:4;;24221:7;;24220:8;24212:37;;;;;-1:-1:-1;;;;;24212:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24212:37:0;;;;;;;;;;;;;;;25252:25;25267:2;25271:5;25252:14;:25::i;20455:109::-;20511:4;20535:21;:8;20548:7;20535:21;:12;:21;:::i;26638:218::-;1133:9;:7;:9::i;:::-;1125:54;;;;;;;-1:-1:-1;;;;;1125:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26728:26;26738:15;26728:9;:26::i;:::-;26762:22;26772:11;26762:9;:22::i;:::-;26792:26;26802:15;26792:9;:26::i;:::-;26826:22;26836:11;26826:9;:22::i;:::-;26638:218;;:::o;13039:134::-;-1:-1:-1;;;;;13138:18:0;;;13111:7;13138:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13039:134::o;2027:109::-;1133:9;:7;:9::i;:::-;1125:54;;;;;;;-1:-1:-1;;;;;1125:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100:28;2119:8;2100:18;:28::i;13320:148::-;13385:4;13402:36;13411:10;13423:7;13432:5;13402:8;:36::i;:::-;-1:-1:-1;13456:4:0;13320:148;;;;:::o;13939:256::-;14028:4;14045:36;14055:6;14063:9;14074:6;14045:9;:36::i;:::-;-1:-1:-1;;;;;14121:19:0;;;;;;:11;:19;;;;;;;;14109:10;14121:31;;;;;;;;;14092:73;;14101:6;;14121:43;;14157:6;14121:43;:35;:43;:::i;:::-;14092:8;:73::i;:::-;-1:-1:-1;14183:4:0;13939:256;;;;;:::o;14604:206::-;14710:10;14684:4;14731:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14731:32:0;;;;;;;;;;14684:4;;14701:79;;14722:7;;14731:48;;14768:10;14731:48;:36;:48;:::i;21567:143::-;21641:4;20354:20;20363:10;20354:8;:20::i;:::-;20346:81;;;;;;;-1:-1:-1;;;;;20346:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21658:22;21664:7;21673:6;21658:5;:22::i;19715:203::-;19787:4;-1:-1:-1;;;;;19812:21:0;;;;19804:68;;;;;-1:-1:-1;;;;;19804:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19890:20:0;:11;:20;;;;;;;;;;;;;;;19715:203::o;22679:130::-;22739:24;:8;22755:7;22739:24;:15;:24;:::i;:::-;22779:22;;-1:-1:-1;;;;;22779:22:0;;;;;;;;22679:130;:::o;22549:122::-;22606:21;:8;22619:7;22606:21;:12;:21;:::i;:::-;22643:20;;-1:-1:-1;;;;;22643:20:0;;;;;;;;22549:122;:::o;20757:::-;20814:21;:8;20827:7;20814:21;:12;:21;:::i;:::-;20851:20;;-1:-1:-1;;;;;20851:20:0;;;;;;;;20757:122;:::o;20887:130::-;20947:24;:8;20963:7;20947:24;:15;:24;:::i;:::-;20987:22;;-1:-1:-1;;;;;20987:22:0;;;;;;;;20887:130;:::o;15313:216::-;15424:10;15398:4;15445:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15445:32:0;;;;;;;;;;15398:4;;15415:84;;15436:7;;15445:53;;15482:15;15445:53;:36;:53;:::i;12820:156::-;12889:4;12906:40;12916:10;12928:9;12939:6;12906:9;:40::i;2242:229::-;-1:-1:-1;;;;;2316:22:0;;;;2308:73;;;;;-1:-1:-1;;;;;2308:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2418:6;;2397:38;;-1:-1:-1;;;;;2397:38:0;;;;2418:6;;;;;2397:38;;;;;2446:6;:17;;-1:-1:-1;;;;;2446:17:0;;;;;-1:-1:-1;;2446:17:0;;;;;;;;;2242:229::o;18115:335::-;-1:-1:-1;;;;;18208:19:0;;;;18200:68;;;;;-1:-1:-1;;;;;18200:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18287:21:0;;;;18279:68;;;;;-1:-1:-1;;;;;18279:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18360:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;18411:31;;;;;;;;;;;;;;;;;18115:335;;;:::o;16019:429::-;-1:-1:-1;;;;;16117:20:0;;;;16109:70;;;;;-1:-1:-1;;;;;16109:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16198:23:0;;;;16190:71;;;;;-1:-1:-1;;;;;16190:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16294:17:0;;;;;;:9;:17;;;;;;:29;;16316:6;16294:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;16274:17:0;;;;;;;:9;:17;;;;;;:49;;;;16357:20;;;;;;;:32;;16382:6;16357:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16334:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;16405:35;;;;;;;16334:20;;16405:35;;;;;;;;;;;;;16019:429;;;:::o;8444:184::-;8502:7;8530:6;;;;8522:49;;;;;-1:-1:-1;;;;;8522:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8594:5:0;;;8444:184::o;7988:181::-;8046:7;8078:5;;;8102:6;;;;8094:46;;;;;-1:-1:-1;;;;;8094:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16729:308;-1:-1:-1;;;;;16805:21:0;;;;16797:65;;;;;-1:-1:-1;;;;;16797:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16890:12;;:24;;16907:6;16890:24;:16;:24;:::i;:::-;16875:12;:39;-1:-1:-1;;;;;16946:18:0;;;;;;:9;:18;;;;;;:30;;16969:6;16946:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;16925:18:0;;;;;;:9;:18;;;;;;;;:51;;;;16992:37;;;;;;;16925:18;;;;16992:37;;;;;;;;;;16729:308;;:::o;19437:183::-;19517:18;19521:4;19527:7;19517:3;:18::i;:::-;19509:64;;;;;;;-1:-1:-1;;;;;19509:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19584:20:0;19607:5;19584:20;;;;;;;;;;;:28;;-1:-1:-1;;19584:28:0;;;19437:183::o;19179:178::-;19257:18;19261:4;19267:7;19257:3;:18::i;:::-;19256:19;19248:63;;;;;-1:-1:-1;;;;;19248:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19322:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;19322:27:0;19345:4;19322:27;;;19179:178::o
Swarm Source
bzzr://ba7a2bdadcc613b7000e486957ef272d0d89455a849e62acc7ed30f978d934bc
Loading...
Loading
Loading...
Loading
OVERVIEW
CROWDLITOKEN (CRT) is the very first security token which combines the advantages of direct and indirect investments in real estate by eliminating inefficiencies, excessive costs and lack of transparency.Multichain Portfolio | 35 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.