ETH Price: $3,193.07 (+3.63%)

Token

Power of Vladimir Putin (PowerOfPutin)
 

Overview

Max Total Supply

80,000,000 PowerOfPutin

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
14,780 PowerOfPutin

Value
$0.00
0xe5c29d4075678e0b15826ea93c38484d6274f74d
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:
PowerOfPutin

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-01
*/

pragma solidity ^0.4.20;

/*

/*===============================================
=    [ Power of Vladimir Putin (40% alcohol) ]  =
=          https://PowerOfPutin.oi/                 =
=        https://discord.gg/EDR5FRcD            =
=================================================


  _____                                __ 
 |  __ \                              / _|
 | |__) |____      _____ _ __    ___ | |_ 
 |  ___/ _ \ \ /\ / / _ \ '__|  / _ \|  _|
 | |  | (_) \ V  V /  __/ |    | (_) | |  
 |_|   \___/ \_/\_/ \___|_|     \___/|_| 

 __      ___           _ _           _        _____       _   _       
 \ \    / / |         | (_)         (_)      |  __ \     | | (_)      
  \ \  / /| | __ _  __| |_ _ __ ___  _ _ __  | |__) |   _| |_ _ _ __  
   \ \/ / | |/ _` |/ _` | | '_ ` _ \| | '__| |  ___/ | | | __| | '_ \ 
    \  /  | | (_| | (_| | | | | | | | | |    | |   | |_| | |_| | | | |
     \/   |_|\__,_|\__,_|_|_| |_| |_|_|_|    |_|    \__,_|\__|_|_| |_|


* -> Features!
* All the features from the original Po contract, with dividend fee 40%:
* [x] Highly Secure: Hundreds of thousands of investers have invested in the original contract.
* [X] Purchase/Sell: You can perform partial sell orders. If you succumb to weak hands, you don't have to dump all of your bags.
* [x] Purchase/Sell: You can transfer tokens between wallets. Trading is possible from within the contract.
* [x] Masternodes: The implementation of Ethereum Staking in the world.
* [x] Masternodes: Holding 50 PowerOfPutin Tokens allow you to generate a Masternode link, Masternode links are used as unique entry points to the contract.
* [x] Masternodes: All players who enter the contract through your Masternode have 30% of their 40% dividends fee rerouted from the master-node, to the node-master.
*
* -> Who worked not this project?
* - Vladimir PUtin (The king of Russia (& future king of the world))
* - Mantso (Original Program)
*
* -> Owner of contract can:
* - Low pre-mine (0.999ETH)
* - And nothing else
*
* -> Owner of contract CANNOT:
* - exit scam
* - kill the contract
* - take funds
* - pause the contract
* - disable withdrawals
* - change the price of tokens
*
* -> THE FOMO IS REAL!!


*/

library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a / b;
    return c;
  }

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

contract ForeignToken {
    function balanceOf(address _owner) constant public returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool);
}

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);
}

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);
}

interface Token { 
    function distr(address _to, uint256 _value) public returns (bool);
    function totalSupply() constant public returns (uint256 supply);
    function balanceOf(address _owner) constant public returns (uint256 balance);
}

contract PowerOfPutin is ERC20 {
    
    using SafeMath for uint256;
    address owner = msg.sender;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => bool) public blacklist;

    string public constant name = "Power of Vladimir Putin";
    string public constant symbol = "PowerOfPutin";
    uint public constant decimals = 8;
    
    uint256 public totalSupply = 80000000e8;
    uint256 public totalDistributed = 1e8;
    uint256 public totalRemaining = totalSupply.sub(totalDistributed);
    uint256 public value;

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    event Distr(address indexed to, uint256 amount);
    event DistrFinished();
    
    event Burn(address indexed burner, uint256 value);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
   
    
    function PowerOfPutin () public {
        owner = msg.sender;
        value = 14780e8;
        distr(owner, totalDistributed);
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }
    
   

   

    function finishDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = true;
        DistrFinished();
        return true;
    }
    
    function distr(address _to, uint256 _amount) canDistr private returns (bool) {
        totalDistributed = totalDistributed.add(_amount);
        totalRemaining = totalRemaining.sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Distr(_to, _amount);
        Transfer(address(0), _to, _amount);
        return true;
        
        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }
    
    function airdrop(address[] addresses) onlyOwner canDistr public {
        
        require(addresses.length <= 255);
        require(value <= totalRemaining);
        
        for (uint i = 0; i < addresses.length; i++) {
            require(value <= totalRemaining);
            distr(addresses[i], value);
        }
	
        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }
    
    function distribution(address[] addresses, uint256 amount) onlyOwner canDistr public {
        
        require(addresses.length <= 255);
        require(amount <= totalRemaining);
        
        for (uint i = 0; i < addresses.length; i++) {
            require(amount <= totalRemaining);
            distr(addresses[i], amount);
        }
	
        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }
    
    function distributeAmounts(address[] addresses, uint256[] amounts) onlyOwner canDistr public {

        require(addresses.length <= 255);
        require(addresses.length == amounts.length);
        
        for (uint8 i = 0; i < addresses.length; i++) {
            require(amounts[i] <= totalRemaining);
            distr(addresses[i], amounts[i]);
            
            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }
    }
    
    function () external payable {
            getTokens();
     }
    
    function getTokens() payable canDistr public {
        
        if (value > totalRemaining) {
            value = totalRemaining;
        }
        
        require(value <= totalRemaining);
        
        address investor = msg.sender;
        uint256 toGive = value;
        
        distr(investor, toGive);
        
        if (toGive > 0) {
            blacklist[investor] = true;
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
        
     
    }

/*

READ  THE CONTRACT FAGGOTS

*/

    function balanceOf(address _owner) constant public returns (uint256) {
	    return balances[_owner];
    }

    // mitigates the ERC20 short address attack
    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(msg.sender, _to, _amount);
        return true;
    }
    
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        // mitigates the ERC20 spend/approval race condition
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        ForeignToken t = ForeignToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function withdraw() onlyOwner public {
        uint256 etherBalance = this.balance;
        owner.transfer(etherBalance);
    }
    
    function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        Burn(burner, _value);
    }
    
    function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) {
        ForeignToken token = ForeignToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }


}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"value","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"distributeAmounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalRemaining","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","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"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amount","type":"uint256"}],"name":"distribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060405260018054600160a060020a03191633600160a060020a0316179055661c6bf52634000060058190556305f5e1006006819055620000509190640100000000620000bc8102620010971704565b6007556009805460ff1916905534156200006957600080fd5b60018054600160a060020a03191633600160a060020a0390811691909117918290556501581faa3c00600855600654620000b59290911690640100000000620000d4810262000f961704565b506200020c565b600082821115620000c957fe5b508082035b92915050565b60095460009060ff1615620000e857600080fd5b600654620001059083640100000000620010a9620001f582021704565b60065560075462000125908364010000000062001097620000bc82021704565b600755600160a060020a0383166000908152600260205260409020546200015b9083640100000000620010a9620001f582021704565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001620000ce565b6000828201838110156200020557fe5b9392505050565b6110eb806200021c6000396000f3006060604052600436106101245763ffffffff60e060020a60003504166306fdde03811461012e578063095ea7b3146101b857806318160ddd146101ee57806323b872dd14610213578063313ce5671461023b5780633ccfd60b1461024e5780633fa4f2451461026157806342966c681461027457806370a082311461028a578063729ad39e146102a957806395d89b41146102f85780639b1cbccc1461030b578063a8c310d51461031e578063a9059cbb146103ad578063aa6ca80814610124578063c108d542146103cf578063c489744b146103e2578063d8a5436014610407578063dd62ed3e1461041a578063e58fc54c1461043f578063efca2eed1461045e578063f2fde38b14610471578063f3e4877c14610490578063f9f92be4146104e1575b61012c610500565b005b341561013957600080fd5b610141610595565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d578082015183820152602001610165565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c357600080fd5b6101da600160a060020a03600435166024356105cc565b604051901515815260200160405180910390f35b34156101f957600080fd5b610201610678565b60405190815260200160405180910390f35b341561021e57600080fd5b6101da600160a060020a036004358116906024351660443561067e565b341561024657600080fd5b61020161080e565b341561025957600080fd5b61012c610813565b341561026c57600080fd5b61020161086d565b341561027f57600080fd5b61012c600435610873565b341561029557600080fd5b610201600160a060020a0360043516610961565b34156102b457600080fd5b61012c600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061097c95505050505050565b341561030357600080fd5b610141610a12565b341561031657600080fd5b6101da610a49565b341561032957600080fd5b61012c600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610ab695505050505050565b34156103b857600080fd5b6101da600160a060020a0360043516602435610b99565b34156103da57600080fd5b6101da610ca2565b34156103ed57600080fd5b610201600160a060020a0360043581169060243516610cab565b341561041257600080fd5b610201610d28565b341561042557600080fd5b610201600160a060020a0360043581169060243516610d2e565b341561044a57600080fd5b6101da600160a060020a0360043516610d59565b341561046957600080fd5b610201610e77565b341561047c57600080fd5b61012c600160a060020a0360043516610e7d565b341561049b57600080fd5b61012c60046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496505093359350610ed492505050565b34156104ec57600080fd5b6101da600160a060020a0360043516610f81565b600954600090819060ff161561051557600080fd5b6007546008541115610528576007546008555b600754600854111561053957600080fd5b5050600854339061054a8282610f96565b50600081111561057857600160a060020a0382166000908152600460205260409020805460ff191660011790555b60055460065410610591576009805460ff191660011790555b5050565b60408051908101604052601781527f506f776572206f6620566c6164696d697220507574696e000000000000000000602082015281565b600081158015906106015750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b1561060e57506000610672565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055481565b60006060606436101561068d57fe5b600160a060020a03841615156106a257600080fd5b600160a060020a0385166000908152600260205260409020548311156106c757600080fd5b600160a060020a03808616600090815260036020908152604080832033909416835292905220548311156106fa57600080fd5b600160a060020a038516600090815260026020526040902054610723908463ffffffff61109716565b600160a060020a0380871660009081526002602090815260408083209490945560038152838220339093168252919091522054610766908463ffffffff61109716565b600160a060020a03808716600090815260036020908152604080832033851684528252808320949094559187168152600290915220546107ac908463ffffffff6110a916565b600160a060020a03808616600081815260026020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b600881565b60015460009033600160a060020a0390811691161461083157600080fd5b50600154600160a060020a0330811631911681156108fc0282604051600060405180830381858888f19350505050151561086a57600080fd5b50565b60085481565b60015460009033600160a060020a0390811691161461089157600080fd5b600160a060020a0333166000908152600260205260409020548211156108b657600080fd5b5033600160a060020a0381166000908152600260205260409020546108db9083611097565b600160a060020a038216600090815260026020526040902055600554610907908363ffffffff61109716565b60055560065461091d908363ffffffff61109716565b600655600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a031660009081526002602052604090205490565b60015460009033600160a060020a0390811691161461099a57600080fd5b60095460ff16156109aa57600080fd5b60ff825111156109b957600080fd5b60075460085411156109ca57600080fd5b5060005b81518110156105785760075460085411156109e857600080fd5b610a098282815181106109f757fe5b90602001906020020151600854610f96565b506001016109ce565b60408051908101604052600c81527f506f7765724f66507574696e0000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a03908116911614610a6757600080fd5b60095460ff1615610a7757600080fd5b6009805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60015460009033600160a060020a03908116911614610ad457600080fd5b60095460ff1615610ae457600080fd5b60ff83511115610af357600080fd5b8151835114610b0157600080fd5b5060005b82518160ff161015610b9457600754828260ff1681518110610b2357fe5b906020019060200201511115610b3857600080fd5b610b72838260ff1681518110610b4a57fe5b90602001906020020151838360ff1681518110610b6357fe5b90602001906020020151610f96565b5060055460065410610b8c576009805460ff191660011790555b600101610b05565b505050565b600060406044361015610ba857fe5b600160a060020a0384161515610bbd57600080fd5b600160a060020a033316600090815260026020526040902054831115610be257600080fd5b600160a060020a033316600090815260026020526040902054610c0b908463ffffffff61109716565b600160a060020a033381166000908152600260205260408082209390935590861681522054610c40908463ffffffff6110a916565b600160a060020a0380861660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35060019392505050565b60095460ff1681565b60008281600160a060020a0382166370a0823185836040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610d0557600080fd5b6102c65a03f11515610d1657600080fd5b50505060405180519695505050505050565b60075481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610d7b57600080fd5b83915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610dd557600080fd5b6102c65a03f11515610de657600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610e5557600080fd5b6102c65a03f11515610e6657600080fd5b505050604051805195945050505050565b60065481565b60015433600160a060020a03908116911614610e9857600080fd5b600160a060020a0381161561086a5760018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b60015460009033600160a060020a03908116911614610ef257600080fd5b60095460ff1615610f0257600080fd5b60ff83511115610f1157600080fd5b600754821115610f2057600080fd5b5060005b8251811015610f6457600754821115610f3c57600080fd5b610f5b838281518110610f4b57fe5b9060200190602002015183610f96565b50600101610f24565b60055460065410610b94576009805460ff19166001179055505050565b60046020526000908152604090205460ff1681565b60095460009060ff1615610fa957600080fd5b600654610fbc908363ffffffff6110a916565b600655600754610fd2908363ffffffff61109716565b600755600160a060020a038316600090815260026020526040902054610ffe908363ffffffff6110a916565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001610672565b6000828211156110a357fe5b50900390565b6000828201838110156110b857fe5b93925050505600a165627a7a72305820fda665697cf41dc4a6a134e61039510c7d35a8efde5f0a2d4c6f6c56bf7711430029

Deployed Bytecode

0x6060604052600436106101245763ffffffff60e060020a60003504166306fdde03811461012e578063095ea7b3146101b857806318160ddd146101ee57806323b872dd14610213578063313ce5671461023b5780633ccfd60b1461024e5780633fa4f2451461026157806342966c681461027457806370a082311461028a578063729ad39e146102a957806395d89b41146102f85780639b1cbccc1461030b578063a8c310d51461031e578063a9059cbb146103ad578063aa6ca80814610124578063c108d542146103cf578063c489744b146103e2578063d8a5436014610407578063dd62ed3e1461041a578063e58fc54c1461043f578063efca2eed1461045e578063f2fde38b14610471578063f3e4877c14610490578063f9f92be4146104e1575b61012c610500565b005b341561013957600080fd5b610141610595565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d578082015183820152602001610165565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c357600080fd5b6101da600160a060020a03600435166024356105cc565b604051901515815260200160405180910390f35b34156101f957600080fd5b610201610678565b60405190815260200160405180910390f35b341561021e57600080fd5b6101da600160a060020a036004358116906024351660443561067e565b341561024657600080fd5b61020161080e565b341561025957600080fd5b61012c610813565b341561026c57600080fd5b61020161086d565b341561027f57600080fd5b61012c600435610873565b341561029557600080fd5b610201600160a060020a0360043516610961565b34156102b457600080fd5b61012c600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061097c95505050505050565b341561030357600080fd5b610141610a12565b341561031657600080fd5b6101da610a49565b341561032957600080fd5b61012c600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610ab695505050505050565b34156103b857600080fd5b6101da600160a060020a0360043516602435610b99565b34156103da57600080fd5b6101da610ca2565b34156103ed57600080fd5b610201600160a060020a0360043581169060243516610cab565b341561041257600080fd5b610201610d28565b341561042557600080fd5b610201600160a060020a0360043581169060243516610d2e565b341561044a57600080fd5b6101da600160a060020a0360043516610d59565b341561046957600080fd5b610201610e77565b341561047c57600080fd5b61012c600160a060020a0360043516610e7d565b341561049b57600080fd5b61012c60046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496505093359350610ed492505050565b34156104ec57600080fd5b6101da600160a060020a0360043516610f81565b600954600090819060ff161561051557600080fd5b6007546008541115610528576007546008555b600754600854111561053957600080fd5b5050600854339061054a8282610f96565b50600081111561057857600160a060020a0382166000908152600460205260409020805460ff191660011790555b60055460065410610591576009805460ff191660011790555b5050565b60408051908101604052601781527f506f776572206f6620566c6164696d697220507574696e000000000000000000602082015281565b600081158015906106015750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b1561060e57506000610672565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055481565b60006060606436101561068d57fe5b600160a060020a03841615156106a257600080fd5b600160a060020a0385166000908152600260205260409020548311156106c757600080fd5b600160a060020a03808616600090815260036020908152604080832033909416835292905220548311156106fa57600080fd5b600160a060020a038516600090815260026020526040902054610723908463ffffffff61109716565b600160a060020a0380871660009081526002602090815260408083209490945560038152838220339093168252919091522054610766908463ffffffff61109716565b600160a060020a03808716600090815260036020908152604080832033851684528252808320949094559187168152600290915220546107ac908463ffffffff6110a916565b600160a060020a03808616600081815260026020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b600881565b60015460009033600160a060020a0390811691161461083157600080fd5b50600154600160a060020a0330811631911681156108fc0282604051600060405180830381858888f19350505050151561086a57600080fd5b50565b60085481565b60015460009033600160a060020a0390811691161461089157600080fd5b600160a060020a0333166000908152600260205260409020548211156108b657600080fd5b5033600160a060020a0381166000908152600260205260409020546108db9083611097565b600160a060020a038216600090815260026020526040902055600554610907908363ffffffff61109716565b60055560065461091d908363ffffffff61109716565b600655600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a031660009081526002602052604090205490565b60015460009033600160a060020a0390811691161461099a57600080fd5b60095460ff16156109aa57600080fd5b60ff825111156109b957600080fd5b60075460085411156109ca57600080fd5b5060005b81518110156105785760075460085411156109e857600080fd5b610a098282815181106109f757fe5b90602001906020020151600854610f96565b506001016109ce565b60408051908101604052600c81527f506f7765724f66507574696e0000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a03908116911614610a6757600080fd5b60095460ff1615610a7757600080fd5b6009805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60015460009033600160a060020a03908116911614610ad457600080fd5b60095460ff1615610ae457600080fd5b60ff83511115610af357600080fd5b8151835114610b0157600080fd5b5060005b82518160ff161015610b9457600754828260ff1681518110610b2357fe5b906020019060200201511115610b3857600080fd5b610b72838260ff1681518110610b4a57fe5b90602001906020020151838360ff1681518110610b6357fe5b90602001906020020151610f96565b5060055460065410610b8c576009805460ff191660011790555b600101610b05565b505050565b600060406044361015610ba857fe5b600160a060020a0384161515610bbd57600080fd5b600160a060020a033316600090815260026020526040902054831115610be257600080fd5b600160a060020a033316600090815260026020526040902054610c0b908463ffffffff61109716565b600160a060020a033381166000908152600260205260408082209390935590861681522054610c40908463ffffffff6110a916565b600160a060020a0380861660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35060019392505050565b60095460ff1681565b60008281600160a060020a0382166370a0823185836040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610d0557600080fd5b6102c65a03f11515610d1657600080fd5b50505060405180519695505050505050565b60075481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610d7b57600080fd5b83915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610dd557600080fd5b6102c65a03f11515610de657600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610e5557600080fd5b6102c65a03f11515610e6657600080fd5b505050604051805195945050505050565b60065481565b60015433600160a060020a03908116911614610e9857600080fd5b600160a060020a0381161561086a5760018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b60015460009033600160a060020a03908116911614610ef257600080fd5b60095460ff1615610f0257600080fd5b60ff83511115610f1157600080fd5b600754821115610f2057600080fd5b5060005b8251811015610f6457600754821115610f3c57600080fd5b610f5b838281518110610f4b57fe5b9060200190602002015183610f96565b50600101610f24565b60055460065410610b94576009805460ff19166001179055505050565b60046020526000908152604090205460ff1681565b60095460009060ff1615610fa957600080fd5b600654610fbc908363ffffffff6110a916565b600655600754610fd2908363ffffffff61109716565b600755600160a060020a038316600090815260026020526040902054610ffe908363ffffffff6110a916565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001610672565b6000828211156110a357fe5b50900390565b6000828201838110156110b857fe5b93925050505600a165627a7a72305820fda665697cf41dc4a6a134e61039510c7d35a8efde5f0a2d4c6f6c56bf7711430029

Swarm Source

bzzr://fda665697cf41dc4a6a134e61039510c7d35a8efde5f0a2d4c6f6c56bf771143
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.