ETH Price: $2,333.07 (+10.37%)

Contract

0xCAF6Df2F1cA7F9EA3b66d1Ae1a93B93e4eAA9915
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x6C6c32dD...02d809401
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Card

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-10-30
*/

pragma solidity ^0.4.24;

contract Card {
    
    mapping (address => uint256) public balanceOf;
    mapping(address => mapping (address => uint256)) allowed;
    
    string public name;
    string public symbol;
    uint256 public totalSupply;
    uint8 public decimals = 0;
    
    address public owner;
    
    string public firstName;
    string public middleName;
    string public lastName;
    string public league;
    string public team;
    string public position;
    string public sex;
    string public birthday;
    
    constructor(string n, string a, uint256 totalSupplyToUse, string firstNameToUse, string middleNameToUse, string lastNameToUse, string leagueToUse, string teamToUse, string positionToUse, string sexToUse, string birthdayToUse) public {
        name = n;
        symbol = a;
        totalSupply = totalSupplyToUse;
        balanceOf[msg.sender] = totalSupplyToUse;
        owner = msg.sender;
        
        firstName = firstNameToUse;
        middleName = middleNameToUse;
        lastName = lastNameToUse;
        league = leagueToUse;
        team = teamToUse;
        position = positionToUse;
        sex = sexToUse;
        birthday = birthdayToUse;
    }
    
    function transfer(address _to, uint256 _value) payable public returns (bool success) {
        if (balanceOf[msg.sender] < _value) return false;
        if (balanceOf[_to] + _value < balanceOf[_to]) return false;
        balanceOf[msg.sender] -= _value;
        balanceOf[_to] += _value;
        emit Transfer(msg.sender, _to, _value);
        return true;
    }
    
    function transferFrom(
         address _from,
         address _to,
         uint256 _amount
     ) payable public returns (bool success) {
        if (balanceOf[_from] >= _amount
            && allowed[_from][msg.sender] >= _amount
            && _amount > 0
            && balanceOf[_to] + _amount > balanceOf[_to]) {
            balanceOf[_from] -= _amount;
            allowed[_from][msg.sender] -= _amount;
            balanceOf[_to] += _amount;
            emit Transfer(_from, _to, _amount);
            return true;
        } else {
            return false;
        }
    }
     
    function approve(address _spender, uint256 _amount) public returns (bool success) {
        allowed[msg.sender][_spender] = _amount;
        emit Approval(msg.sender, _spender, _amount);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }
    
    function transferOwnership (address newOwner) public {
        if(msg.sender == owner) {
            owner = newOwner;
        }
    }

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"position","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","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":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"firstName","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"birthday","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"middleName","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"team","outputs":[{"name":"","type":"string"}],"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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastName","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"league","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"sex","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"n","type":"string"},{"name":"a","type":"string"},{"name":"totalSupplyToUse","type":"uint256"},{"name":"firstNameToUse","type":"string"},{"name":"middleNameToUse","type":"string"},{"name":"lastNameToUse","type":"string"},{"name":"leagueToUse","type":"string"},{"name":"teamToUse","type":"string"},{"name":"positionToUse","type":"string"},{"name":"sexToUse","type":"string"},{"name":"birthdayToUse","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

0x60806040526005805460ff191690553480156200001b57600080fd5b5060405162000cd738038062000cd78339810160409081528151602080840151928401516060850151608086015160a087015160c088015160e08901516101008a01516101208b01516101408c0151998c018051909c9b8c019b989a978901999689019895860197948601969386019592830194918301939190920191620000aa91600291908e0190620001b5565b508951620000c09060039060208d0190620001b5565b506004899055336000818152602081815260409091208b90556005805461010060a860020a0319166101009093029290921790915588516200010991600691908b0190620001b5565b5086516200011f9060079060208a0190620001b5565b50855162000135906008906020890190620001b5565b5084516200014b906009906020880190620001b5565b5083516200016190600a906020870190620001b5565b5082516200017790600b906020860190620001b5565b5081516200018d90600c906020850190620001b5565b508051620001a390600d906020840190620001b5565b5050505050505050505050506200025a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001f857805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002285782518255916020019190600101906200020b565b50620002369291506200023a565b5090565b6200025791905b8082111562000236576000815560010162000241565b90565b610a6d806200026a6000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b57806309218e9114610195578063095ea7b3146101aa57806318160ddd146101e257806323b872dd14610209578063313ce567146102265780634589fe0c146102515780635f9f47341461026657806370a082311461027b5780637f333d801461029c57806385f2aef2146102b15780638da5cb5b146102c657806395d89b41146102f75780639ab03dcb1461030c578063a9059cbb14610321578063d9b2929714610338578063dd62ed3e1461034d578063f2fde38b14610374578063f758ceab14610397575b600080fd5b34801561011757600080fd5b506101206103ac565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b50610120610437565b3480156101b657600080fd5b506101ce600160a060020a0360043516602435610492565b604080519115158252519081900360200190f35b3480156101ee57600080fd5b506101f76104f9565b60408051918252519081900360200190f35b6101ce600160a060020a03600435811690602435166044356104ff565b34801561023257600080fd5b5061023b610611565b6040805160ff9092168252519081900360200190f35b34801561025d57600080fd5b5061012061061a565b34801561027257600080fd5b50610120610675565b34801561028757600080fd5b506101f7600160a060020a03600435166106d0565b3480156102a857600080fd5b506101206106e2565b3480156102bd57600080fd5b5061012061073d565b3480156102d257600080fd5b506102db610798565b60408051600160a060020a039092168252519081900360200190f35b34801561030357600080fd5b506101206107ac565b34801561031857600080fd5b50610120610807565b6101ce600160a060020a0360043516602435610862565b34801561034457600080fd5b50610120610917565b34801561035957600080fd5b506101f7600160a060020a0360043581169060243516610972565b34801561038057600080fd5b50610395600160a060020a036004351661099d565b005b3480156103a357600080fd5b506101206109e6565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b820191906000526020600020905b81548152906001019060200180831161041257829003601f168201915b505050505081565b600b805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60045481565b600160a060020a038316600090815260208190526040812054821180159061054a5750600160a060020a03841660009081526001602090815260408083203384529091529020548211155b80156105565750600082115b801561057b5750600160a060020a038316600090815260208190526040902054828101115b1561060657600160a060020a038085166000818152602081815260408083208054889003905560018252808320338452825280832080548890039055938716808352828252918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350600161060a565b5060005b9392505050565b60055460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b600d805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b60006020819052908152604090205481565b6007805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b600a805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b6005546101009004600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b6008805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b33600090815260208190526040812054821115610881575060006104f3565b600160a060020a03831660009081526020819052604090205482810110156108ab575060006104f3565b3360008181526020818152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b6009805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6005546101009004600160a060020a03163314156109e3576005805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a038416021790555b50565b600c805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f5600a165627a7a72305820bcd6e893a8ae35eeba9c6f9f43f4389a067c9bc75dcd4e4586b414e44e80f1b80029000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000380000000000000000000000000000000000000000000000000000000000000000d4572696b204b61726c73736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002454b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044572696b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084b61726c73736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e484c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000231380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d616c65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009352f33312f313939300000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b57806309218e9114610195578063095ea7b3146101aa57806318160ddd146101e257806323b872dd14610209578063313ce567146102265780634589fe0c146102515780635f9f47341461026657806370a082311461027b5780637f333d801461029c57806385f2aef2146102b15780638da5cb5b146102c657806395d89b41146102f75780639ab03dcb1461030c578063a9059cbb14610321578063d9b2929714610338578063dd62ed3e1461034d578063f2fde38b14610374578063f758ceab14610397575b600080fd5b34801561011757600080fd5b506101206103ac565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b50610120610437565b3480156101b657600080fd5b506101ce600160a060020a0360043516602435610492565b604080519115158252519081900360200190f35b3480156101ee57600080fd5b506101f76104f9565b60408051918252519081900360200190f35b6101ce600160a060020a03600435811690602435166044356104ff565b34801561023257600080fd5b5061023b610611565b6040805160ff9092168252519081900360200190f35b34801561025d57600080fd5b5061012061061a565b34801561027257600080fd5b50610120610675565b34801561028757600080fd5b506101f7600160a060020a03600435166106d0565b3480156102a857600080fd5b506101206106e2565b3480156102bd57600080fd5b5061012061073d565b3480156102d257600080fd5b506102db610798565b60408051600160a060020a039092168252519081900360200190f35b34801561030357600080fd5b506101206107ac565b34801561031857600080fd5b50610120610807565b6101ce600160a060020a0360043516602435610862565b34801561034457600080fd5b50610120610917565b34801561035957600080fd5b506101f7600160a060020a0360043581169060243516610972565b34801561038057600080fd5b50610395600160a060020a036004351661099d565b005b3480156103a357600080fd5b506101206109e6565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b820191906000526020600020905b81548152906001019060200180831161041257829003601f168201915b505050505081565b600b805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60045481565b600160a060020a038316600090815260208190526040812054821180159061054a5750600160a060020a03841660009081526001602090815260408083203384529091529020548211155b80156105565750600082115b801561057b5750600160a060020a038316600090815260208190526040902054828101115b1561060657600160a060020a038085166000818152602081815260408083208054889003905560018252808320338452825280832080548890039055938716808352828252918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350600161060a565b5060005b9392505050565b60055460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b600d805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b60006020819052908152604090205481565b6007805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b600a805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b6005546101009004600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b6008805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b33600090815260208190526040812054821115610881575060006104f3565b600160a060020a03831660009081526020819052604090205482810110156108ab575060006104f3565b3360008181526020818152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b6009805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6005546101009004600160a060020a03163314156109e3576005805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a038416021790555b50565b600c805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561042f5780601f106104045761010080835404028352916020019161042f5600a165627a7a72305820bcd6e893a8ae35eeba9c6f9f43f4389a067c9bc75dcd4e4586b414e44e80f1b80029

Deployed Bytecode Sourcemap

28:2916:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;176:18: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;176:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;474:22:0;;;;2244:217;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2244:217:0;-1:-1:-1;;;;;2244:217:0;;;;;;;;;;;;;;;;;;;;;;;;;228:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;228:26:0;;;;;;;;;;;;;;;;;;;;1631:600;;-1:-1:-1;;;;;1631:600:0;;;;;;;;;;;;261:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;261:25:0;;;;;;;;;;;;;;;;;;;;;;;332:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;332:23:0;;;;527:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;527:22:0;;;;55:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;55:45:0;-1:-1:-1;;;;;55:45:0;;;;;362:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;362:24:0;;;;449:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;449:18:0;;;;299:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;299:20:0;;;;;;;;-1:-1:-1;;;;;299:20:0;;;;;;;;;;;;;;201;;8:9:-1;5:2;;;30:1;27;20:12;5:2;201:20:0;;;;393:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;393:22:0;;;;1250:369;;-1:-1:-1;;;;;1250:369:0;;;;;;;422:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;422:20:0;;;;2473:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2473:148:0;-1:-1:-1;;;;;2473:148:0;;;;;;;;;;2633:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2633:138:0;-1:-1:-1;;;;;2633:138:0;;;;;;;503:17;;8:9:-1;5:2;;;30:1;27;20:12;5:2;503:17:0;;;;176:18;;;;;;;;;;;;;;-1:-1:-1;;176:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;474:22::-;;;;;;;;;;;;;;;-1:-1:-1;;474:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2244:217;2345:10;2312:12;2337:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;2337:29:0;;;;;;;;;;;:39;;;2392;;;;;;;2312:12;;2337:29;;2345:10;;2392:39;;;;;;;;-1:-1:-1;2449:4:0;2244:217;;;;;:::o;228:26::-;;;;:::o;1631:600::-;-1:-1:-1;;;;;1789:16:0;;1760:12;1789:16;;;;;;;;;;;:27;-1:-1:-1;1789:27:0;;;:81;;-1:-1:-1;;;;;;1833:14:0;;;;;;:7;:14;;;;;;;;1848:10;1833:26;;;;;;;;:37;-1:-1:-1;1833:37:0;1789:81;:109;;;;;1897:1;1887:7;:11;1789:109;:167;;;;-1:-1:-1;;;;;;1942:14:0;;:9;:14;;;;;;;;;;;1915:24;;;:41;1789:167;1785:439;;;-1:-1:-1;;;;;1973:16:0;;;:9;:16;;;;;;;;;;;:27;;;;;;;-1:-1:-1;2015:14:0;;;;;2030:10;2015:26;;;;;;;:37;;;;;;;2067:14;;;;;;;;;;;;;:25;;;;;;2112:29;;;;;;;2067:14;;2112:29;;;;;;;;;;;-1:-1:-1;2163:4:0;2156:11;;1785:439;-1:-1:-1;2207:5:0;1785:439;1631:600;;;;;:::o;261:25::-;;;;;;:::o;332:23::-;;;;;;;;;;;;;;;-1:-1:-1;;332:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527:22;;;;;;;;;;;;;;;-1:-1:-1;;527:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55:45;;;;;;;;;;;;;;:::o;362:24::-;;;;;;;;;;;;;;;-1:-1:-1;;362:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449:18;;;;;;;;;;;;;;;-1:-1:-1;;449:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299:20;;;;;;-1:-1:-1;;;;;299:20:0;;:::o;201:::-;;;;;;;;;;;;;;;-1:-1:-1;;201:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393:22;;;;;;;;;;;;;;;-1:-1:-1;;393:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250:369;1360:10;1321:12;1350:21;;;;;;;;;;;:30;-1:-1:-1;1346:48:0;;;-1:-1:-1;1389:5:0;1382:12;;1346:48;-1:-1:-1;;;;;1435:14:0;;:9;:14;;;;;;;;;;;1409:23;;;:40;1405:58;;;-1:-1:-1;1458:5:0;1451:12;;1405:58;1484:10;1474:9;:21;;;;;;;;;;;:31;;;;;;;-1:-1:-1;;;;;1516:14:0;;;;;;;;;:24;;;;;;1556:33;;;;;;;1516:14;;1484:10;1556:33;;;;;;;;;;;-1:-1:-1;1607:4:0;1250:369;;;;:::o;422:20::-;;;;;;;;;;;;;;;-1:-1:-1;;422:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:148;-1:-1:-1;;;;;2588:15:0;;;2551:17;2588:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2473:148::o;2633:138::-;2714:5;;;;;-1:-1:-1;;;;;2714:5:0;2700:10;:19;2697:67;;;2736:5;:16;;-1:-1:-1;;2736:16:0;;-1:-1:-1;;;;;2736:16:0;;;;;;2697:67;2633:138;:::o;503:17::-;;;;;;;;;;;;;;;-1:-1:-1;;503:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://bcd6e893a8ae35eeba9c6f9f43f4389a067c9bc75dcd4e4586b414e44e80f1b8

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

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.