ERC-20
Overview
Max Total Supply
1,000,000,000 CFX
Holders
279
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
250 CFXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CoinifinexToken
Compiler Version
v0.4.16+commit.d7661dd9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-10-08 */ pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract CoinifinexToken { // Setting constant uint256 constant public TOTAL_TOKEN = 10 ** 9; uint256 constant public TOKEN_FOR_ICO = 650 * 10 ** 6; uint256 constant public TOKEN_FOR_COMPANY = 200 * 10 ** 6; uint256 constant public TOKEN_FOR_BONUS = 50 * 10 ** 6; mapping (address => uint256) public tokenForTeam; mapping (address => uint256) public tokenForTeamGet; address[] public teamAddress; uint public startTime; // Public variables of the token string public name; string public symbol; uint8 public decimals = 8; // 18 decimals is the strongly suggested default, avoid changing it uint256 public totalSupply; // This creates an array with all balances mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; // This generates a public event on the blockchain that will notify clients event Transfer(address indexed from, address indexed to, uint256 value); // This notifies clients about the amount burnt event Burn(address indexed from, uint256 value); /** * Constrctor function * * Initializes contract with initial supply tokens to the creator of the contract */ function CoinifinexToken( ) public { totalSupply = TOTAL_TOKEN * 10 ** uint256(decimals); // Update total supply with the decimal amount name = "Coinifinex"; // Set the name for display purposes symbol = "CFX"; // Set the symbol for display purposes // Initializes startTime = 1538265600; // 09/30/2018 @ 12:00am (UTC) tokenForTeam[0x4B7786bD8eB1F738699290Bb83cA8E28fEDea4b0] = 20 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0x040440286a443822211dDe0e7E9DA3F49aF2EBC7] = 20 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0x4f7a5A2BafAd56562ac4Ccc85FE004BB84435F71] = 20 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0x7E0D3AaaCB57b0Fd109D9F16e00a375ECa48b41D] = 20 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0xc456aC342f17E7003A03479e275fDA322dE38681] = 500 * 10 ** 3 * 10 ** uint256(decimals); tokenForTeam[0xB19d3c4c494B5a3d5d72E0e47076AefC1c643D24] = 300 * 10 ** 3 * 10 ** uint256(decimals); tokenForTeam[0x88311485647e19510298d7Dbf0a346D5B808DF03] = 500 * 10 ** 3 * 10 ** uint256(decimals); tokenForTeam[0x2f2754e403b58D8F21c4Ba501eff4c5f0dd95b7F] = 500 * 10 ** 3 * 10 ** uint256(decimals); tokenForTeam[0x45cD08764e06c1563d4B13b85cCE7082Be0bA6D1] = 100 * 10 ** 3 * 10 ** uint256(decimals); tokenForTeam[0xB08924a0D0AF93Fa29e5B0ba103A339704cdeFdb] = 100 * 10 ** 3 * 10 ** uint256(decimals); tokenForTeam[0xa8bD7C22d37ea1887b425a9B0A3458A186bf6E77] = 1 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0xe387125f1b24E59f7811d26fbb26bdA1c599b061] = 1 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0xC5b644c5fDe01fce561496179a8Bb7886349bD75] = 1 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0xe4dB43bcB8aecFf58C720F70414A9d36Fd7B9F78] = 5 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0xf28edB52E808cd9DCe18A87fD94D373D6B9f65ae] = 5 * 10 ** 6 * 10 ** uint256(decimals); tokenForTeam[0x87CE30ad0B66266b30c206a9e39A3FC0970db5eF] = 5 * 10 ** 6 * 10 ** uint256(decimals); // address of teams teamAddress.push(0x4B7786bD8eB1F738699290Bb83cA8E28fEDea4b0); teamAddress.push(0x040440286a443822211dDe0e7E9DA3F49aF2EBC7); teamAddress.push(0x4f7a5A2BafAd56562ac4Ccc85FE004BB84435F71); teamAddress.push(0x7E0D3AaaCB57b0Fd109D9F16e00a375ECa48b41D); teamAddress.push(0xc456aC342f17E7003A03479e275fDA322dE38681); teamAddress.push(0xB19d3c4c494B5a3d5d72E0e47076AefC1c643D24); teamAddress.push(0x88311485647e19510298d7Dbf0a346D5B808DF03); teamAddress.push(0x2f2754e403b58D8F21c4Ba501eff4c5f0dd95b7F); teamAddress.push(0x45cD08764e06c1563d4B13b85cCE7082Be0bA6D1); teamAddress.push(0xB08924a0D0AF93Fa29e5B0ba103A339704cdeFdb); teamAddress.push(0xa8bD7C22d37ea1887b425a9B0A3458A186bf6E77); teamAddress.push(0xe387125f1b24E59f7811d26fbb26bdA1c599b061); teamAddress.push(0xC5b644c5fDe01fce561496179a8Bb7886349bD75); teamAddress.push(0xe4dB43bcB8aecFf58C720F70414A9d36Fd7B9F78); teamAddress.push(0xf28edB52E808cd9DCe18A87fD94D373D6B9f65ae); teamAddress.push(0x87CE30ad0B66266b30c206a9e39A3FC0970db5eF); uint arrayLength = teamAddress.length; for (uint i=0; i<arrayLength; i++) { tokenForTeamGet[teamAddress[i]] = tokenForTeam[teamAddress[i]] * 1 / 10; // first period balanceOf[teamAddress[i]] = tokenForTeamGet[teamAddress[i]]; tokenForTeam[teamAddress[i]] -= tokenForTeamGet[teamAddress[i]]; } balanceOf[0x966F2884524858326DfF216394a61b9894166c68] = TOKEN_FOR_ICO * 10 ** uint256(decimals); balanceOf[0x8eee1a576FaF1332466AaDD9F35Ebf5b6e0162c9] = TOKEN_FOR_COMPANY * 10 ** uint256(decimals); balanceOf[0xAe77D38cba1AA5D5288DFC5834a16CcD24dd4041] = TOKEN_FOR_BONUS * 10 ** uint256(decimals); } /** * Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead require(_to != 0x0); // Check if the sender has enough require(balanceOf[_from] >= _value); // Check for overflows require(balanceOf[_to] + _value > balanceOf[_to]); // Save this for an assertion in the future uint previousBalances = balanceOf[_from] + balanceOf[_to]; // Subtract from the sender balanceOf[_from] -= _value; // Add the same to the recipient balanceOf[_to] += _value; Transfer(_from, _to, _value); // Asserts are used to use static analysis to find bugs in your code. They should never fail assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` in behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); // Check allowance allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /** * Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens in your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns (bool success) { require(balanceOf[msg.sender] >= _value); // Check if the sender has enough balanceOf[msg.sender] -= _value; // Subtract from the sender totalSupply -= _value; // Updates totalSupply Burn(msg.sender, _value); return true; } /** * Destroy tokens from other account * * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public returns (bool success) { require(balanceOf[_from] >= _value); // Check if the targeted balance is enough require(_value <= allowance[_from][msg.sender]); // Check allowance balanceOf[_from] -= _value; // Subtract from the targeted balance allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance totalSupply -= _value; // Update totalSupply Burn(_from, _value); return true; } function getTeamFund() public { // Second period after 9 months if (now >= startTime + 270 days) { if (tokenForTeamGet[msg.sender] < tokenForTeam[msg.sender] * 55 / 100) { uint256 getValue2 = tokenForTeam[msg.sender] * 45 / 100; tokenForTeamGet[msg.sender] += getValue2; // first period balanceOf[msg.sender] += getValue2; } } // Third period after 9 + 6 months if (now >= startTime + 450 days) { if (tokenForTeamGet[msg.sender] < tokenForTeam[msg.sender]) { uint256 getValue3 = tokenForTeam[msg.sender] * 45 / 100; tokenForTeamGet[msg.sender] += getValue3; // first period balanceOf[msg.sender] += getValue3; } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_FOR_COMPANY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_FOR_ICO","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_FOR_BONUS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"teamAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"tokenForTeamGet","outputs":[{"name":"","type":"uint256"}],"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":"TOTAL_TOKEN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTeamFund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"tokenForTeam","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]
Contract Creation Code
60606040526006805460ff1916600817905534156200001d57600080fd5b5b60065460ff16600a0a633b9aca000260075560008060408051908101604052600a81527f436f696e6966696e657800000000000000000000000000000000000000000000602082015260049080516200007c92916020019062000b50565b5060408051908101604052600381527f434658000000000000000000000000000000000000000000000000000000000060208201526005908051620000c692916020019062000b50565b50635bb012006003556006546000602081905260ff909116600a0a6301312d0081027fc60e06a94184da0be13dafa5f80096c27dac6f84f991d48b7bf24b388cea26ef8190557fac9d73800997d8d09ef008a9611ceb46edf3a7a9e91bf2d3ae7452585fde452a8190557f9e1896ba74377b43c5e53c56c349932b7803d3196faeb1a66873b7cd136e77258190557f43205cab9163610c8d926ff1ceafd2b2fc7b9bf3d61c23fe8dfa2563b496bf59556207a12081027f3c2ed5682d197bc1760d95b82ee726c3a508a1d5b18b108844d9c3507dcfcbf0819055620493e082027f3e299a74aa9d152191335565a16b62f1b37cd4f6f954e2bce3445cdc8d5d3f5e557fe14abf1966f38a845e1f8e6522f04f01b8a5456fe907f2a33bdb24941fd828d08190557f321b897d8081d15a4d14ed5c588dafee69664cbe24953bf5f3ecaf829eb6b7ad55620186a081027fbbd4d0a3d336a4d3f6577ab97507a8496ead967546c3ce428a61bfc3848f39d88190557fff72f8fbddc86d0fd0025a8b6156a5412f3740fd4337187520225b59e68da8ab55620f424081027fed8976040f30fcb74b0ae14eea435a34b9ae91daed90a2878f403d25c883b0d38190557f7ca35f83d3be2dd514ee7356316639107d8cc2d3224d4390ba55eaeea51501118190557f149c536c3d10bd47b2b7458750567ed16135c34e7dcfcc38a49feb6db652d9a155624c4b40027f7c5f8b25ab46b491115166661bb72321414cf75f0e03cab02b1ca472072111258190557fd9b80a894b4e5060824249ed9598c07d1bd995bf9e9252c968c6c6a1ca0de1ca8190557387ce30ad0b66266b30c206a9e39a3fc0970db5ef9091527fe057ebd9025261e8bc2e4859da05885cc405246ee0bd57ee3a6bd2cb95f84acf55600280546001810162000365838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a9182021916734b7786bd8eb1f738699290bb83ca8e28fedea4b0909102179055506002805460018101620003b9838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673040440286a443822211dde0e7e9da3f49af2ebc79091021790555060028054600181016200040d838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a9182021916734f7a5a2bafad56562ac4ccc85fe004bb84435f7190910217905550600280546001810162000461838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a9182021916737e0d3aaacb57b0fd109d9f16e00a375eca48b41d909102179055506002805460018101620004b5838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673c456ac342f17e7003a03479e275fda322de3868190910217905550600280546001810162000509838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673b19d3c4c494b5a3d5d72e0e47076aefc1c643d249091021790555060028054600181016200055d838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a91820219167388311485647e19510298d7dbf0a346d5b808df03909102179055506002805460018101620005b1838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a9182021916732f2754e403b58d8f21c4ba501eff4c5f0dd95b7f90910217905550600280546001810162000605838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a91820219167345cd08764e06c1563d4b13b85cce7082be0ba6d190910217905550600280546001810162000659838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673b08924a0d0af93fa29e5b0ba103a339704cdefdb909102179055506002805460018101620006ad838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673a8bd7c22d37ea1887b425a9b0a3458a186bf6e7790910217905550600280546001810162000701838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673e387125f1b24e59f7811d26fbb26bda1c599b06190910217905550600280546001810162000755838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673c5b644c5fde01fce561496179a8bb7886349bd75909102179055506002805460018101620007a9838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673e4db43bcb8aecff58c720f70414a9d36fd7b9f78909102179055506002805460018101620007fd838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a918202191673f28edb52e808cd9dce18a87fd94d373d6b9f65ae90910217905550600280546001810162000851838262000bd6565b916000526020600020900160005b8154600160a060020a036101009290920a91820219167387ce30ad0b66266b30c206a9e39a3fc0970db5ef9091021790555050600254905060005b8181101562000aa757600a600080600284815481101515620008b857fe5b906000526020600020900160005b9054600160a060020a036101009290920a9004168152602081019190915260400160002054811515620008f557fe5b04600160006002848154811015156200090a57fe5b906000526020600020900160005b9054906101000a9004600160a060020a0316600160a060020a0316600160a060020a0316815260200190815260200160002081905550600160006002838154811015156200096257fe5b906000526020600020900160005b9054906101000a9004600160a060020a0316600160a060020a0316600160a060020a031681526020019081526020016000205460086000600284815481101515620009b757fe5b906000526020600020900160005b9054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020819055506001600060028381548110151562000a0f57fe5b906000526020600020900160005b9054906101000a9004600160a060020a0316600160a060020a0316600160a060020a031681526020019081526020016000205460008060028481548110151562000a6357fe5b906000526020600020900160005b9054600160a060020a036101009290920a9004168152602081019190915260400160002080549190910390555b6001016200089a565b600654600860205260ff16600a0a6326be368081027fbfb5e9079c032dfae57a345bc67e9cae708bf70e14919317a793e790571cb77855630bebc20081027f08fd56cf2f18504ea328fc586fa9ebe29e350af1a7dfafe535ccdcb6973cd8bc5573ae77d38cba1aa5d5288dfc5834a16ccd24dd40416000526302faf080027fbeed3dd471eef46b7ad604e39e6735d36c781e650efd1bd61ba1ff59fabac83a555b505062000c27565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b9357805160ff191683800117855562000bc3565b8280016001018555821562000bc3579182015b8281111562000bc357825182559160200191906001019062000ba6565b5b5062000bd292915062000c03565b5090565b81548183558181151162000bfd5760008381526020902062000bfd91810190830162000c03565b5b505050565b62000c2491905b8082111562000bd2576000815560010162000c0a565b5090565b90565b610d7b8062000c376000396000f3006060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461011f578063095ea7b3146101aa57806318160ddd146101e057806323b872dd14610205578063306ff6b51461024157806330bf951c14610266578063313ce5671461028b57806342966c68146102b457806370a08231146102de57806378e979251461030f578063792288c61461033457806379cc6790146103595780637de7770e1461038f5780639459da1f146103c157806395d89b41146103f25780639a5a77c11461047d578063a9059cbb146104a2578063b53dfdb9146104c6578063bcab7a8b146104db578063cae9ca511461050c578063dd62ed3e14610585575b600080fd5b341561012a57600080fd5b6101326105bc565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016f5780820151818401525b602001610156565b50505050905090810190601f16801561019c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b557600080fd5b6101cc600160a060020a036004351660243561065a565b604051901515815260200160405180910390f35b34156101eb57600080fd5b6101f361068b565b60405190815260200160405180910390f35b341561021057600080fd5b6101cc600160a060020a0360043581169060243516604435610691565b604051901515815260200160405180910390f35b341561024c57600080fd5b6101f3610709565b60405190815260200160405180910390f35b341561027157600080fd5b6101f3610711565b60405190815260200160405180910390f35b341561029657600080fd5b61029e610719565b60405160ff909116815260200160405180910390f35b34156102bf57600080fd5b6101cc600435610722565b604051901515815260200160405180910390f35b34156102e957600080fd5b6101f3600160a060020a03600435166107ae565b60405190815260200160405180910390f35b341561031a57600080fd5b6101f36107c0565b60405190815260200160405180910390f35b341561033f57600080fd5b6101f36107c6565b60405190815260200160405180910390f35b341561036457600080fd5b6101cc600160a060020a03600435166024356107ce565b604051901515815260200160405180910390f35b341561039a57600080fd5b6103a56004356108ab565b604051600160a060020a03909116815260200160405180910390f35b34156103cc57600080fd5b6101f3600160a060020a03600435166108dd565b60405190815260200160405180910390f35b34156103fd57600080fd5b6101326108ef565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016f5780820151818401525b602001610156565b50505050905090810190601f16801561019c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048857600080fd5b6101f361098d565b60405190815260200160405180910390f35b34156104ad57600080fd5b6104c4600160a060020a0360043516602435610995565b005b34156104d157600080fd5b6104c46109a5565b005b34156104e657600080fd5b6101f3600160a060020a0360043516610ae5565b60405190815260200160405180910390f35b341561051757600080fd5b6101cc60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610af795505050505050565b604051901515815260200160405180910390f35b341561059057600080fd5b6101f3600160a060020a0360043581169060243516610c2b565b60405190815260200160405180910390f35b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b505050505081565b600160a060020a03338116600090815260096020908152604080832093861683529290522081905560015b92915050565b60075481565b600160a060020a038084166000908152600960209081526040808320339094168352929052908120548211156106c657600080fd5b600160a060020a03808516600090815260096020908152604080832033909416835292905220805483900390556106fe848484610c48565b5060015b9392505050565b630bebc20081565b6326be368081565b60065460ff1681565b600160a060020a0333166000908152600860205260408120548290101561074857600080fd5b600160a060020a03331660008181526008602052604090819020805485900390556007805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b919050565b60086020526000908152604090205481565b60035481565b6302faf08081565b600160a060020a038216600090815260086020526040812054829010156107f457600080fd5b600160a060020a038084166000908152600960209081526040808320339094168352929052205482111561082757600080fd5b600160a060020a038084166000818152600860209081526040808320805488900390556009825280832033909516835293905282902080548590039055600780548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b92915050565b60028054829081106108b957fe5b906000526020600020900160005b915054906101000a9004600160a060020a031681565b60016020526000908152604090205481565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b505050505081565b633b9aca0081565b6109a0338383610c48565b5b5050565b600080600354630163f5000142101515610a5157600160a060020a0333166000908152602081905260409020546064906037025b600160a060020a033316600090815260016020526040902054919004901015610a5157600160a060020a033316600090815260208190526040902054606490602d025b600160a060020a0333166000908152600160209081526040808320805495909404948501909355600890522080548201905591505b5b60035463025143000142106109a057600160a060020a0333166000908152602081815260408083205460019092529091205410156109a057600160a060020a033316600090815260208190526040902054606490602d025b600160a060020a0333166000908152600160209081526040808320805495909404948501909355600890522080548201905590505b5b5b5050565b60006020819052908152604090205481565b600083610b04818561065a565b15610c225780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610bbb5780820151818401525b602001610ba2565b50505050905090810190601f168015610be85780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610c0957600080fd5b6102c65a03f11515610c1a57600080fd5b505050600191505b5b509392505050565b600960209081526000928352604080842090915290825290205481565b6000600160a060020a0383161515610c5f57600080fd5b600160a060020a03841660009081526008602052604090205482901015610c8557600080fd5b600160a060020a03831660009081526008602052604090205482810111610cab57600080fd5b50600160a060020a0380831660008181526008602052604080822080549488168084528284208054888103909155938590528154870190915591909301927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3600160a060020a03808416600090815260086020526040808220549287168252902054018114610d4857fe5b5b505050505600a165627a7a723058204a79b3ba900c8ea5157e11735ecaec8c3765089fd907afc724477c34a7c4cd330029
Deployed Bytecode
0x6060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461011f578063095ea7b3146101aa57806318160ddd146101e057806323b872dd14610205578063306ff6b51461024157806330bf951c14610266578063313ce5671461028b57806342966c68146102b457806370a08231146102de57806378e979251461030f578063792288c61461033457806379cc6790146103595780637de7770e1461038f5780639459da1f146103c157806395d89b41146103f25780639a5a77c11461047d578063a9059cbb146104a2578063b53dfdb9146104c6578063bcab7a8b146104db578063cae9ca511461050c578063dd62ed3e14610585575b600080fd5b341561012a57600080fd5b6101326105bc565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016f5780820151818401525b602001610156565b50505050905090810190601f16801561019c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b557600080fd5b6101cc600160a060020a036004351660243561065a565b604051901515815260200160405180910390f35b34156101eb57600080fd5b6101f361068b565b60405190815260200160405180910390f35b341561021057600080fd5b6101cc600160a060020a0360043581169060243516604435610691565b604051901515815260200160405180910390f35b341561024c57600080fd5b6101f3610709565b60405190815260200160405180910390f35b341561027157600080fd5b6101f3610711565b60405190815260200160405180910390f35b341561029657600080fd5b61029e610719565b60405160ff909116815260200160405180910390f35b34156102bf57600080fd5b6101cc600435610722565b604051901515815260200160405180910390f35b34156102e957600080fd5b6101f3600160a060020a03600435166107ae565b60405190815260200160405180910390f35b341561031a57600080fd5b6101f36107c0565b60405190815260200160405180910390f35b341561033f57600080fd5b6101f36107c6565b60405190815260200160405180910390f35b341561036457600080fd5b6101cc600160a060020a03600435166024356107ce565b604051901515815260200160405180910390f35b341561039a57600080fd5b6103a56004356108ab565b604051600160a060020a03909116815260200160405180910390f35b34156103cc57600080fd5b6101f3600160a060020a03600435166108dd565b60405190815260200160405180910390f35b34156103fd57600080fd5b6101326108ef565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016f5780820151818401525b602001610156565b50505050905090810190601f16801561019c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048857600080fd5b6101f361098d565b60405190815260200160405180910390f35b34156104ad57600080fd5b6104c4600160a060020a0360043516602435610995565b005b34156104d157600080fd5b6104c46109a5565b005b34156104e657600080fd5b6101f3600160a060020a0360043516610ae5565b60405190815260200160405180910390f35b341561051757600080fd5b6101cc60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610af795505050505050565b604051901515815260200160405180910390f35b341561059057600080fd5b6101f3600160a060020a0360043581169060243516610c2b565b60405190815260200160405180910390f35b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b505050505081565b600160a060020a03338116600090815260096020908152604080832093861683529290522081905560015b92915050565b60075481565b600160a060020a038084166000908152600960209081526040808320339094168352929052908120548211156106c657600080fd5b600160a060020a03808516600090815260096020908152604080832033909416835292905220805483900390556106fe848484610c48565b5060015b9392505050565b630bebc20081565b6326be368081565b60065460ff1681565b600160a060020a0333166000908152600860205260408120548290101561074857600080fd5b600160a060020a03331660008181526008602052604090819020805485900390556007805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b919050565b60086020526000908152604090205481565b60035481565b6302faf08081565b600160a060020a038216600090815260086020526040812054829010156107f457600080fd5b600160a060020a038084166000908152600960209081526040808320339094168352929052205482111561082757600080fd5b600160a060020a038084166000818152600860209081526040808320805488900390556009825280832033909516835293905282902080548590039055600780548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b92915050565b60028054829081106108b957fe5b906000526020600020900160005b915054906101000a9004600160a060020a031681565b60016020526000908152604090205481565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b505050505081565b633b9aca0081565b6109a0338383610c48565b5b5050565b600080600354630163f5000142101515610a5157600160a060020a0333166000908152602081905260409020546064906037025b600160a060020a033316600090815260016020526040902054919004901015610a5157600160a060020a033316600090815260208190526040902054606490602d025b600160a060020a0333166000908152600160209081526040808320805495909404948501909355600890522080548201905591505b5b60035463025143000142106109a057600160a060020a0333166000908152602081815260408083205460019092529091205410156109a057600160a060020a033316600090815260208190526040902054606490602d025b600160a060020a0333166000908152600160209081526040808320805495909404948501909355600890522080548201905590505b5b5b5050565b60006020819052908152604090205481565b600083610b04818561065a565b15610c225780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610bbb5780820151818401525b602001610ba2565b50505050905090810190601f168015610be85780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610c0957600080fd5b6102c65a03f11515610c1a57600080fd5b505050600191505b5b509392505050565b600960209081526000928352604080842090915290825290205481565b6000600160a060020a0383161515610c5f57600080fd5b600160a060020a03841660009081526008602052604090205482901015610c8557600080fd5b600160a060020a03831660009081526008602052604090205482810111610cab57600080fd5b50600160a060020a0380831660008181526008602052604080822080549488168084528284208054888103909155938590528154870190915591909301927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3600160a060020a03808416600090815260086020526040808220549287168252902054018114610d4857fe5b5b505050505600a165627a7a723058204a79b3ba900c8ea5157e11735ecaec8c3765089fd907afc724477c34a7c4cd330029
Swarm Source
bzzr://4a79b3ba900c8ea5157e11735ecaec8c3765089fd907afc724477c34a7c4cd33
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.