ETH Price: $3,156.73 (+2.81%)
Gas: 2 Gwei

Token

IRB (IRB)
 

Overview

Max Total Supply

500,000,000 IRB

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,474.68333333333 IRB

Value
$0.00
0x07d1e66cb4a93e96223691f09fdc308781ef9279
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IRBToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-12-11
*/

pragma solidity ^0.4.15;

library SafeMath {
    function mul(uint256 a, uint256 b) internal constant returns (uint256) {
        uint256 c = a * b;
        if (a != 0 && c / a != b) revert();
        return c;
    }

    function div(uint256 a, uint256 b) internal constant 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 c;
    }

    function sub(uint256 a, uint256 b) internal constant returns (uint256) {
        if (b > a) revert();
        return a - b;
    }

    function add(uint256 a, uint256 b) internal constant returns (uint256) {
        uint256 c = a + b;
        if (c < a) revert();
        return c;
    }
}

contract ERC20Basic {
    uint256 public totalSupply;

    function balanceOf(address who) public constant returns (uint256);

    function transfer(address to, uint256 value) public returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant 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);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping (address => uint256) balances;

    /**
    * @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(_to != address(0));

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        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 constant returns (uint256 balance) {
        return balances[_owner];
    }

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev 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)) 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(_to != address(0));

        uint256 _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // require (_value <= _allowance);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = _allowance.sub(_value);
        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;
        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 constant returns (uint256 remaining) {
        return allowed[_owner][_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
     */
    function increaseApproval(address _spender, uint _addedValue)
    returns (bool success) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval(address _spender, uint _subtractedValue)
    returns (bool success) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        }
        else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

}
/**
 * @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 OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    function Ownable() {
        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 transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) onlyOwner public {
        require(newOwner != address(0));
        OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

}


/**
 * @title IRBTokens
 * @dev IRB Token contract based on Zeppelin StandardToken contract
 */
contract IRBToken is StandardToken, Ownable {
    using SafeMath for uint256;

    /**
     * @dev ERC20 descriptor variables
     */
    string public constant name = "IRB Tokens";

    string public constant symbol = "IRB";

    uint8 public decimals = 18;

    /**
     * @dev 489.58 millions s the initial Token sale
     */
    uint256 public constant crowdsaleTokens = 489580 * 10 ** 21;

    /**
     * @dev 10.42 millions is the initial Token presale
     */
    uint256 public constant preCrowdsaleTokens = 10420 * 10 ** 21;

    // TODO: TestRPC addresses, replace to real
    // PRE Crowdsale Tokens Wallet
    address public constant preCrowdsaleTokensWallet = 0x0CD95a59fAd089c4EBCCEB54f335eC8f61Caa80e;
    // Crowdsale Tokens Wallet
    address public constant crowdsaleTokensWallet = 0x48545E41696Dc51020C35cA8C36b678101a98437;

    /**
     * @dev Address of PRE Crowdsale contract which will be compared
     *       against in the appropriate modifier check
     */
    address public preCrowdsaleContractAddress;

    /**
     * @dev Address of Crowdsale contract which will be compared
     *       against in the appropriate modifier check
     */
    address public crowdsaleContractAddress;

    /**
     * @dev variable that holds flag of ended pre tokensake
     */
    bool isPreFinished = false;

    /**
     * @dev variable that holds flag of ended tokensake
     */
    bool isFinished = false;

    /**
     * @dev Modifier that allow only the Crowdsale contract to be sender
     */
    modifier onlyPreCrowdsaleContract() {
        require(msg.sender == preCrowdsaleContractAddress);
        _;
    }

    /**
     * @dev Modifier that allow only the Crowdsale contract to be sender
     */
    modifier onlyCrowdsaleContract() {
        require(msg.sender == crowdsaleContractAddress);
        _;
    }

    /**
     * @dev event for the burnt tokens after crowdsale logging
     * @param tokens amount of tokens available for crowdsale
     */
    event TokensBurnt(uint256 tokens);

    /**
     * @dev event for the tokens contract move to the active state logging
     * @param supply amount of tokens left after all the unsold was burned
     */
    event Live(uint256 supply);

    /**
     * @dev Contract constructor
     */
    function IRBToken() {
        // Issue pre crowdsale tokens
        balances[preCrowdsaleTokensWallet] = balanceOf(preCrowdsaleTokensWallet).add(preCrowdsaleTokens);
        Transfer(address(0), preCrowdsaleTokensWallet, preCrowdsaleTokens);

        // Issue crowdsale tokens
        balances[crowdsaleTokensWallet] = balanceOf(crowdsaleTokensWallet).add(crowdsaleTokens);
        Transfer(address(0), crowdsaleTokensWallet, crowdsaleTokens);

        // 500 millions tokens overall
        totalSupply = crowdsaleTokens.add(preCrowdsaleTokens);
    }

    /**
     * @dev back link IRBToken contract with IRBPreCrowdsale one
     * @param _preCrowdsaleAddress non zero address of IRBPreCrowdsale contract
     */
    function setPreCrowdsaleAddress(address _preCrowdsaleAddress) onlyOwner external {
        require(_preCrowdsaleAddress != address(0));
        preCrowdsaleContractAddress = _preCrowdsaleAddress;

        // Allow pre crowdsale contract
        uint256 balance = balanceOf(preCrowdsaleTokensWallet);
        allowed[preCrowdsaleTokensWallet][preCrowdsaleContractAddress] = balance;
        Approval(preCrowdsaleTokensWallet, preCrowdsaleContractAddress, balance);
    }

    /**
     * @dev back link IRBToken contract with IRBCrowdsale one
     * @param _crowdsaleAddress non zero address of IRBCrowdsale contract
     */
    function setCrowdsaleAddress(address _crowdsaleAddress) onlyOwner external {
        require(isPreFinished);
        require(_crowdsaleAddress != address(0));
        crowdsaleContractAddress = _crowdsaleAddress;

        // Allow crowdsale contract
        uint256 balance = balanceOf(crowdsaleTokensWallet);
        allowed[crowdsaleTokensWallet][crowdsaleContractAddress] = balance;
        Approval(crowdsaleTokensWallet, crowdsaleContractAddress, balance);
    }

    /**
     * @dev called only by linked IRBPreCrowdsale contract to end precrowdsale.
     */
    function endPreTokensale() onlyPreCrowdsaleContract external {
        require(!isPreFinished);
        uint256 preCrowdsaleLeftovers = balanceOf(preCrowdsaleTokensWallet);

        if (preCrowdsaleLeftovers > 0) {
            balances[preCrowdsaleTokensWallet] = 0;
            balances[crowdsaleTokensWallet] = balances[crowdsaleTokensWallet].add(preCrowdsaleLeftovers);
            Transfer(preCrowdsaleTokensWallet, crowdsaleTokensWallet, preCrowdsaleLeftovers);
        }

        isPreFinished = true;
    }

    /**
     * @dev called only by linked IRBCrowdsale contract to end crowdsale.
     */
    function endTokensale() onlyCrowdsaleContract external {
        require(!isFinished);
        uint256 crowdsaleLeftovers = balanceOf(crowdsaleTokensWallet);

        if (crowdsaleLeftovers > 0) {
            totalSupply = totalSupply.sub(crowdsaleLeftovers);

            balances[crowdsaleTokensWallet] = 0;
            Transfer(crowdsaleTokensWallet, address(0), crowdsaleLeftovers);
            TokensBurnt(crowdsaleLeftovers);
        }

        isFinished = true;
        Live(totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"preCrowdsaleContractAddress","outputs":[{"name":"","type":"address"}],"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":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_crowdsaleAddress","type":"address"}],"name":"setCrowdsaleAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"endTokensale","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":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"preCrowdsaleTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleContractAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"preCrowdsaleTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"endPreTokensale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_preCrowdsaleAddress","type":"address"}],"name":"setPreCrowdsaleAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokens","type":"uint256"}],"name":"TokensBurnt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"supply","type":"uint256"}],"name":"Live","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"}]

60606040526003805460a060020a60ff021916741200000000000000000000000000000000000000001790556005805460a060020a61ffff021916905534156200004857600080fd5b60038054600160a060020a03191633600160a060020a0316179055620000b56a089e8554f519e988800000620000a0730cd95a59fad089c4ebcceb54f335ec8f61caa80e640100000000620002128102620009b91704565b9064010000000062000f0a6200022d82021704565b730cd95a59fad089c4ebcceb54f335ec8f61caa80e600081815260016020527f8051bc0a73606accb6158778acbae11e283b2aa58a8ab1164401bd4ace939c859290925590600080516020620011e68339815191526a089e8554f519e98880000060405190815260200160405180910390a3620001656b0194f898faf32634eb800000620000a07348545e41696dc51020c35ca8c36b678101a98437640100000000620009b96200021282021704565b7348545e41696dc51020c35ca8c36b678101a98437600081815260016020527fd328143b9b1fae0537374fbeee8b33b8ed229cd0c59c046923d19bcac046c16e9290925590600080516020620011e68339815191526b0194f898faf32634eb80000060405190815260200160405180910390a3620002096b0194f898faf32634eb8000006a089e8554f519e98880000064010000000062000f0a6200022d82021704565b60005562000247565b600160a060020a031660009081526001602052604090205490565b6000828201838110156200024057600080fd5b9392505050565b610f8f80620002576000396000f3006060604052600436106101325763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630238777f811461013757806306fdde0314610166578063095ea7b3146101f057806318160ddd146102265780631f35bc401461024b57806323b872dd1461026c57806328e8bc6114610294578063313ce567146102a757806366188463146102d05780636713263d146102f257806370a08231146103055780638da5cb5b14610324578063928291741461033757806395d89b411461034a57806395e396f91461035d5780639c481c9e14610370578063a9059cbb14610383578063c1ea8b93146103a5578063cf6304d4146103b8578063d73dd623146103cb578063dd62ed3e146103ed578063f2fde38b14610412578063f912e58c14610431575b600080fd5b341561014257600080fd5b61014a610450565b604051600160a060020a03909116815260200160405180910390f35b341561017157600080fd5b61017961045f565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b557808201518382015260200161019d565b50505050905090810190601f1680156101e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fb57600080fd5b610212600160a060020a0360043516602435610496565b604051901515815260200160405180910390f35b341561023157600080fd5b6102396104f0565b60405190815260200160405180910390f35b341561025657600080fd5b61026a600160a060020a03600435166104f6565b005b341561027757600080fd5b610212600160a060020a036004358116906024351660443561060c565b341561029f57600080fd5b61026a610724565b34156102b257600080fd5b6102ba6108b1565b60405160ff909116815260200160405180910390f35b34156102db57600080fd5b610212600160a060020a03600435166024356108c1565b34156102fd57600080fd5b6102396109a9565b341561031057600080fd5b610239600160a060020a03600435166109b9565b341561032f57600080fd5b61014a6109d4565b341561034257600080fd5b61014a6109e3565b341561035557600080fd5b6101796109fb565b341561036857600080fd5b61014a610a32565b341561037b57600080fd5b61014a610a4a565b341561038e57600080fd5b610212600160a060020a0360043516602435610a59565b34156103b057600080fd5b610239610b1d565b34156103c357600080fd5b61026a610b2c565b34156103d657600080fd5b610212600160a060020a0360043516602435610c9f565b34156103f857600080fd5b610239600160a060020a0360043581169060243516610d31565b341561041d57600080fd5b61026a600160a060020a0360043516610d5c565b341561043c57600080fd5b61026a600160a060020a0360043516610df7565b600454600160a060020a031681565b60408051908101604052600a81527f49524220546f6b656e7300000000000000000000000000000000000000000000602082015281565b600160a060020a0333811660008181526002602090815260408083209487168084529490915280822085905590929190600080516020610f448339815191529085905190815260200160405180910390a350600192915050565b60005481565b60035460009033600160a060020a0390811691161461051457600080fd5b60055460a060020a900460ff16151561052c57600080fd5b600160a060020a038216151561054157600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790556105867348545e41696dc51020c35ca8c36b678101a984376109b9565b60058054600160a060020a0390811660009081527ff4c08c9b393a2d04a65f44d73c75d9dc6880d1fbf4ca4b7734af36a14caebe4d602052604090819020849055915492935091909116907348545e41696dc51020c35ca8c36b678101a9843790600080516020610f448339815191529084905190815260200160405180910390a35050565b600080600160a060020a038416151561062457600080fd5b50600160a060020a0380851660008181526002602090815260408083203390951683529381528382205492825260019052919091205461066a908463ffffffff610ef516565b600160a060020a03808716600090815260016020526040808220939093559086168152205461069f908463ffffffff610f0a16565b600160a060020a0385166000908152600160205260409020556106c8818463ffffffff610ef516565b600160a060020a0380871660008181526002602090815260408083203386168452909152908190209390935590861691600080516020610f248339815191529086905190815260200160405180910390a3506001949350505050565b60055460009033600160a060020a0390811691161461074257600080fd5b6005547501000000000000000000000000000000000000000000900460ff161561076b57600080fd5b6107887348545e41696dc51020c35ca8c36b678101a984376109b9565b90506000811115610841576000546107a6908263ffffffff610ef516565b60009081557348545e41696dc51020c35ca8c36b678101a9843780825260016020527fd328143b9b1fae0537374fbeee8b33b8ed229cd0c59c046923d19bcac046c16e829055600080516020610f248339815191528360405190815260200160405180910390a37f3db896db0b7a2f53b4a4550f52efed13d6733eb1b099bbd99c3b74c3b90e97478160405190815260200160405180910390a15b6005805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556000547f6b00bc0a71d2071ceffc66d2746ca7c3b550c2d5115a690a8761f81f04e2cf809060405190815260200160405180910390a150565b60035460a060020a900460ff1681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561091e57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610955565b61092e818463ffffffff610ef516565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a033381166000818152600260209081526040808320948916808452949091529081902054600080516020610f44833981519152915190815260200160405180910390a35060019392505050565b6b0194f898faf32634eb80000081565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b730cd95a59fad089c4ebcceb54f335ec8f61caa80e81565b60408051908101604052600381527f4952420000000000000000000000000000000000000000000000000000000000602082015281565b7348545e41696dc51020c35ca8c36b678101a9843781565b600554600160a060020a031681565b6000600160a060020a0383161515610a7057600080fd5b600160a060020a033316600090815260016020526040902054610a99908363ffffffff610ef516565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ace908363ffffffff610f0a16565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020610f248339815191529085905190815260200160405180910390a350600192915050565b6a089e8554f519e98880000081565b60045460009033600160a060020a03908116911614610b4a57600080fd5b60055460a060020a900460ff1615610b6157600080fd5b610b7e730cd95a59fad089c4ebcceb54f335ec8f61caa80e6109b9565b90506000811115610c7857600160205260007f8051bc0a73606accb6158778acbae11e283b2aa58a8ab1164401bd4ace939c858190557348545e41696dc51020c35ca8c36b678101a9843790527fd328143b9b1fae0537374fbeee8b33b8ed229cd0c59c046923d19bcac046c16e54610bfd908263ffffffff610f0a16565b7348545e41696dc51020c35ca8c36b678101a98437600081905260016020527fd328143b9b1fae0537374fbeee8b33b8ed229cd0c59c046923d19bcac046c16e91909155730cd95a59fad089c4ebcceb54f335ec8f61caa80e600080516020610f248339815191528360405190815260200160405180910390a35b506005805474ff0000000000000000000000000000000000000000191660a060020a179055565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610cd7908363ffffffff610f0a16565b600160a060020a033381166000818152600260209081526040808320948916808452949091529081902084905591929091600080516020610f4483398151915291905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610d7757600080fd5b600160a060020a0381161515610d8c57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035460009033600160a060020a03908116911614610e1557600080fd5b600160a060020a0382161515610e2a57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416179055610e6f730cd95a59fad089c4ebcceb54f335ec8f61caa80e6109b9565b60048054600160a060020a0390811660009081527fb4a15116973b0d3b7cc00cb75afb2ad052a04ff59b6094c0191a2bc801a8a87860205260409081902084905591549293509190911690730cd95a59fad089c4ebcceb54f335ec8f61caa80e90600080516020610f448339815191529084905190815260200160405180910390a35050565b600082821115610f0457600080fd5b50900390565b600082820183811015610f1c57600080fd5b93925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820d66021dfdd248f6f77484a95d801e516432dd4f4a3f9631c5be90e11c5d050800029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6060604052600436106101325763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630238777f811461013757806306fdde0314610166578063095ea7b3146101f057806318160ddd146102265780631f35bc401461024b57806323b872dd1461026c57806328e8bc6114610294578063313ce567146102a757806366188463146102d05780636713263d146102f257806370a08231146103055780638da5cb5b14610324578063928291741461033757806395d89b411461034a57806395e396f91461035d5780639c481c9e14610370578063a9059cbb14610383578063c1ea8b93146103a5578063cf6304d4146103b8578063d73dd623146103cb578063dd62ed3e146103ed578063f2fde38b14610412578063f912e58c14610431575b600080fd5b341561014257600080fd5b61014a610450565b604051600160a060020a03909116815260200160405180910390f35b341561017157600080fd5b61017961045f565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b557808201518382015260200161019d565b50505050905090810190601f1680156101e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fb57600080fd5b610212600160a060020a0360043516602435610496565b604051901515815260200160405180910390f35b341561023157600080fd5b6102396104f0565b60405190815260200160405180910390f35b341561025657600080fd5b61026a600160a060020a03600435166104f6565b005b341561027757600080fd5b610212600160a060020a036004358116906024351660443561060c565b341561029f57600080fd5b61026a610724565b34156102b257600080fd5b6102ba6108b1565b60405160ff909116815260200160405180910390f35b34156102db57600080fd5b610212600160a060020a03600435166024356108c1565b34156102fd57600080fd5b6102396109a9565b341561031057600080fd5b610239600160a060020a03600435166109b9565b341561032f57600080fd5b61014a6109d4565b341561034257600080fd5b61014a6109e3565b341561035557600080fd5b6101796109fb565b341561036857600080fd5b61014a610a32565b341561037b57600080fd5b61014a610a4a565b341561038e57600080fd5b610212600160a060020a0360043516602435610a59565b34156103b057600080fd5b610239610b1d565b34156103c357600080fd5b61026a610b2c565b34156103d657600080fd5b610212600160a060020a0360043516602435610c9f565b34156103f857600080fd5b610239600160a060020a0360043581169060243516610d31565b341561041d57600080fd5b61026a600160a060020a0360043516610d5c565b341561043c57600080fd5b61026a600160a060020a0360043516610df7565b600454600160a060020a031681565b60408051908101604052600a81527f49524220546f6b656e7300000000000000000000000000000000000000000000602082015281565b600160a060020a0333811660008181526002602090815260408083209487168084529490915280822085905590929190600080516020610f448339815191529085905190815260200160405180910390a350600192915050565b60005481565b60035460009033600160a060020a0390811691161461051457600080fd5b60055460a060020a900460ff16151561052c57600080fd5b600160a060020a038216151561054157600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790556105867348545e41696dc51020c35ca8c36b678101a984376109b9565b60058054600160a060020a0390811660009081527ff4c08c9b393a2d04a65f44d73c75d9dc6880d1fbf4ca4b7734af36a14caebe4d602052604090819020849055915492935091909116907348545e41696dc51020c35ca8c36b678101a9843790600080516020610f448339815191529084905190815260200160405180910390a35050565b600080600160a060020a038416151561062457600080fd5b50600160a060020a0380851660008181526002602090815260408083203390951683529381528382205492825260019052919091205461066a908463ffffffff610ef516565b600160a060020a03808716600090815260016020526040808220939093559086168152205461069f908463ffffffff610f0a16565b600160a060020a0385166000908152600160205260409020556106c8818463ffffffff610ef516565b600160a060020a0380871660008181526002602090815260408083203386168452909152908190209390935590861691600080516020610f248339815191529086905190815260200160405180910390a3506001949350505050565b60055460009033600160a060020a0390811691161461074257600080fd5b6005547501000000000000000000000000000000000000000000900460ff161561076b57600080fd5b6107887348545e41696dc51020c35ca8c36b678101a984376109b9565b90506000811115610841576000546107a6908263ffffffff610ef516565b60009081557348545e41696dc51020c35ca8c36b678101a9843780825260016020527fd328143b9b1fae0537374fbeee8b33b8ed229cd0c59c046923d19bcac046c16e829055600080516020610f248339815191528360405190815260200160405180910390a37f3db896db0b7a2f53b4a4550f52efed13d6733eb1b099bbd99c3b74c3b90e97478160405190815260200160405180910390a15b6005805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556000547f6b00bc0a71d2071ceffc66d2746ca7c3b550c2d5115a690a8761f81f04e2cf809060405190815260200160405180910390a150565b60035460a060020a900460ff1681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561091e57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610955565b61092e818463ffffffff610ef516565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a033381166000818152600260209081526040808320948916808452949091529081902054600080516020610f44833981519152915190815260200160405180910390a35060019392505050565b6b0194f898faf32634eb80000081565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b730cd95a59fad089c4ebcceb54f335ec8f61caa80e81565b60408051908101604052600381527f4952420000000000000000000000000000000000000000000000000000000000602082015281565b7348545e41696dc51020c35ca8c36b678101a9843781565b600554600160a060020a031681565b6000600160a060020a0383161515610a7057600080fd5b600160a060020a033316600090815260016020526040902054610a99908363ffffffff610ef516565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ace908363ffffffff610f0a16565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020610f248339815191529085905190815260200160405180910390a350600192915050565b6a089e8554f519e98880000081565b60045460009033600160a060020a03908116911614610b4a57600080fd5b60055460a060020a900460ff1615610b6157600080fd5b610b7e730cd95a59fad089c4ebcceb54f335ec8f61caa80e6109b9565b90506000811115610c7857600160205260007f8051bc0a73606accb6158778acbae11e283b2aa58a8ab1164401bd4ace939c858190557348545e41696dc51020c35ca8c36b678101a9843790527fd328143b9b1fae0537374fbeee8b33b8ed229cd0c59c046923d19bcac046c16e54610bfd908263ffffffff610f0a16565b7348545e41696dc51020c35ca8c36b678101a98437600081905260016020527fd328143b9b1fae0537374fbeee8b33b8ed229cd0c59c046923d19bcac046c16e91909155730cd95a59fad089c4ebcceb54f335ec8f61caa80e600080516020610f248339815191528360405190815260200160405180910390a35b506005805474ff0000000000000000000000000000000000000000191660a060020a179055565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610cd7908363ffffffff610f0a16565b600160a060020a033381166000818152600260209081526040808320948916808452949091529081902084905591929091600080516020610f4483398151915291905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610d7757600080fd5b600160a060020a0381161515610d8c57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035460009033600160a060020a03908116911614610e1557600080fd5b600160a060020a0382161515610e2a57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416179055610e6f730cd95a59fad089c4ebcceb54f335ec8f61caa80e6109b9565b60048054600160a060020a0390811660009081527fb4a15116973b0d3b7cc00cb75afb2ad052a04ff59b6094c0191a2bc801a8a87860205260409081902084905591549293509190911690730cd95a59fad089c4ebcceb54f335ec8f61caa80e90600080516020610f448339815191529084905190815260200160405180910390a35050565b600082821115610f0457600080fd5b50900390565b600082820183811015610f1c57600080fd5b93925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820d66021dfdd248f6f77484a95d801e516432dd4f4a3f9631c5be90e11c5d050800029

Swarm Source

bzzr://d66021dfdd248f6f77484a95d801e516432dd4f4a3f9631c5be90e11c5d05080
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.