ETH Price: $3,329.89 (-0.91%)

Token

AustinChain (ATIC)
 

Overview

Max Total Supply

1,000,000,000 ATIC

Holders

7,895

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,517.6153 ATIC

Value
$0.00
0x37c99fa3a7adaf79a7608c266652b490506c50ce
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:
TokenATIC

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-07-01
*/

pragma solidity 0.4.25;

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; }

contract TokenATIC {
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    mapping (address => bool) public blacklist;
    address public admin;

    // 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);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    event AdminChanged(address indexed previousAdmin, address indexed newAdmin);

    /**
     * Constructor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    constructor (
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
        admin = msg.sender;
    }

    /**
     * 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;
        emit 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 returns (bool success) {
        require(!blacklist[msg.sender]);
        _transfer(msg.sender, _to, _value);
        return true;
    }

    /**
     * @dev Change control of the blacklist to a newAdmin.
     * @param newAdmin The address to transfer admin to.
     */
    function changeAdmin(address newAdmin) public {
        require(msg.sender == admin);
        _changeAdmin(newAdmin);
    }

    /**
     * @dev internal function.
     * @param newAdmin The address to transfer admin to.
     */
    function _changeAdmin(address newAdmin) internal {
        require(newAdmin != address(0));
        emit AdminChanged(admin, newAdmin); 
        admin = newAdmin; 
    }

    /**
     * Ban address
     * 
     * @param addr ban addr
     */
    function ban(address addr) public {
        require(msg.sender == admin);
        blacklist[addr] = true;
    }

    /**
     * Enable address
     * 
     *  @param addr enable addr
     */
    function enable(address addr) public {
        require(msg.sender == admin);
        blacklist[addr] = false;
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` on 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(!blacklist[msg.sender]);
        require(!blacklist[_from]);
        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 on 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) {
        require(!blacklist[msg.sender]);
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value); 
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens on 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) {
        require(!blacklist[msg.sender]);
        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(!blacklist[msg.sender]);
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        require(_value <= totalSupply);
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        emit 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(!blacklist[msg.sender]);
        require(!blacklist[_from]);
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        require(_value <= totalSupply);
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        emit Burn(_from, _value);
        return true;
    }
}

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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"enable","outputs":[],"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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"changeAdmin","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":"addr","type":"address"}],"name":"ban","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousAdmin","type":"address"},{"indexed":true,"name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"}]

60806040526002805460ff1916601217905534801561001d57600080fd5b50604051610d55380380610d5583398101604090815281516020808401518385015160025460ff16600a0a840260038190553360009081526006855295862055908501805193959094910192610075928501906100a5565b5080516100899060019060208401906100a5565b505060058054600160a060020a03191633179055506101409050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100e657805160ff1916838001178555610113565b82800160010185558215610113579182015b828111156101135782518255916020019190600101906100f8565b5061011f929150610123565b5090565b61013d91905b8082111561011f5760008155600101610129565b90565b610c068061014f6000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce5671461020857806342966c68146102335780635bfa1b681461024b57806370a082311461026e57806379cc67901461028f5780638f283970146102b357806395d89b41146102d457806397c3ccd8146102e9578063a9059cbb1461030a578063cae9ca511461032e578063dd62ed3e14610397578063f851a440146103be578063f9f92be4146103ef575b600080fd5b34801561010157600080fd5b5061010a610410565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a036004351660243561049e565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc610522565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a0360043581169060243516604435610528565b34801561021457600080fd5b5061021d6105da565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101a36004356105e3565b34801561025757600080fd5b5061026c600160a060020a0360043516610687565b005b34801561027a57600080fd5b506101cc600160a060020a03600435166106bf565b34801561029b57600080fd5b506101a3600160a060020a03600435166024356106d1565b3480156102bf57600080fd5b5061026c600160a060020a03600435166107f4565b3480156102e057600080fd5b5061010a610817565b3480156102f557600080fd5b5061026c600160a060020a0360043516610871565b34801561031657600080fd5b506101a3600160a060020a03600435166024356108ac565b34801561033a57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a3948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108dd9650505050505050565b3480156103a357600080fd5b506101cc600160a060020a0360043581169060243516610a14565b3480156103ca57600080fd5b506103d3610a31565b60408051600160a060020a039092168252519081900360200190f35b3480156103fb57600080fd5b506101a3600160a060020a0360043516610a40565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104965780601f1061046b57610100808354040283529160200191610496565b820191906000526020600020905b81548152906001019060200180831161047957829003601f168201915b505050505081565b3360009081526004602052604081205460ff16156104bb57600080fd5b336000818152600760209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60035481565b3360009081526004602052604081205460ff161561054557600080fd5b600160a060020a03841660009081526004602052604090205460ff161561056b57600080fd5b600160a060020a038416600090815260076020908152604080832033845290915290205482111561059b57600080fd5b600160a060020a03841660009081526007602090815260408083203384529091529020805483900390556105d0848484610a55565b5060019392505050565b60025460ff1681565b3360009081526004602052604081205460ff161561060057600080fd5b3360009081526006602052604090205482111561061c57600080fd5b60035482111561062b57600080fd5b3360008181526006602090815260409182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b600554600160a060020a0316331461069e57600080fd5b600160a060020a03166000908152600460205260409020805460ff19169055565b60066020526000908152604090205481565b3360009081526004602052604081205460ff16156106ee57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561071457600080fd5b600160a060020a03831660009081526006602052604090205482111561073957600080fd5b600160a060020a038316600090815260076020908152604080832033845290915290205482111561076957600080fd5b60035482111561077857600080fd5b600160a060020a0383166000818152600660209081526040808320805487900390556007825280832033845282529182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600554600160a060020a0316331461080b57600080fd5b61081481610b5c565b50565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104965780601f1061046b57610100808354040283529160200191610496565b600554600160a060020a0316331461088857600080fd5b600160a060020a03166000908152600460205260409020805460ff19166001179055565b3360009081526004602052604081205460ff16156108c957600080fd5b6108d4338484610a55565b50600192915050565b33600090815260046020526040812054819060ff16156108fc57600080fd5b5083610908818561049e565b15610a0c576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156109a0578181015183820152602001610988565b50505050905090810190601f1680156109cd5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156109ef57600080fd5b505af1158015610a03573d6000803e3d6000fd5b50505050600191505b509392505050565b600760209081526000928352604080842090915290825290205481565b600554600160a060020a031681565b60046020526000908152604090205460ff1681565b6000600160a060020a0383161515610a6c57600080fd5b600160a060020a038416600090815260066020526040902054821115610a9157600080fd5b600160a060020a03831660009081526006602052604090205482810111610ab757600080fd5b50600160a060020a038083166000818152600660209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a03808416600090815260066020526040808220549287168252902054018114610b5657fe5b50505050565b600160a060020a0381161515610b7157600080fd5b600554604051600160a060020a038084169216907f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f90600090a36005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820d9c273dd8b4cc19dfbef71a22f1bdb46818513a18517d363f3b5c1a0b06d77e80029000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000b41757374696e436861696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044154494300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce5671461020857806342966c68146102335780635bfa1b681461024b57806370a082311461026e57806379cc67901461028f5780638f283970146102b357806395d89b41146102d457806397c3ccd8146102e9578063a9059cbb1461030a578063cae9ca511461032e578063dd62ed3e14610397578063f851a440146103be578063f9f92be4146103ef575b600080fd5b34801561010157600080fd5b5061010a610410565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a036004351660243561049e565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc610522565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a0360043581169060243516604435610528565b34801561021457600080fd5b5061021d6105da565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101a36004356105e3565b34801561025757600080fd5b5061026c600160a060020a0360043516610687565b005b34801561027a57600080fd5b506101cc600160a060020a03600435166106bf565b34801561029b57600080fd5b506101a3600160a060020a03600435166024356106d1565b3480156102bf57600080fd5b5061026c600160a060020a03600435166107f4565b3480156102e057600080fd5b5061010a610817565b3480156102f557600080fd5b5061026c600160a060020a0360043516610871565b34801561031657600080fd5b506101a3600160a060020a03600435166024356108ac565b34801561033a57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a3948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108dd9650505050505050565b3480156103a357600080fd5b506101cc600160a060020a0360043581169060243516610a14565b3480156103ca57600080fd5b506103d3610a31565b60408051600160a060020a039092168252519081900360200190f35b3480156103fb57600080fd5b506101a3600160a060020a0360043516610a40565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104965780601f1061046b57610100808354040283529160200191610496565b820191906000526020600020905b81548152906001019060200180831161047957829003601f168201915b505050505081565b3360009081526004602052604081205460ff16156104bb57600080fd5b336000818152600760209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60035481565b3360009081526004602052604081205460ff161561054557600080fd5b600160a060020a03841660009081526004602052604090205460ff161561056b57600080fd5b600160a060020a038416600090815260076020908152604080832033845290915290205482111561059b57600080fd5b600160a060020a03841660009081526007602090815260408083203384529091529020805483900390556105d0848484610a55565b5060019392505050565b60025460ff1681565b3360009081526004602052604081205460ff161561060057600080fd5b3360009081526006602052604090205482111561061c57600080fd5b60035482111561062b57600080fd5b3360008181526006602090815260409182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b600554600160a060020a0316331461069e57600080fd5b600160a060020a03166000908152600460205260409020805460ff19169055565b60066020526000908152604090205481565b3360009081526004602052604081205460ff16156106ee57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561071457600080fd5b600160a060020a03831660009081526006602052604090205482111561073957600080fd5b600160a060020a038316600090815260076020908152604080832033845290915290205482111561076957600080fd5b60035482111561077857600080fd5b600160a060020a0383166000818152600660209081526040808320805487900390556007825280832033845282529182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600554600160a060020a0316331461080b57600080fd5b61081481610b5c565b50565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104965780601f1061046b57610100808354040283529160200191610496565b600554600160a060020a0316331461088857600080fd5b600160a060020a03166000908152600460205260409020805460ff19166001179055565b3360009081526004602052604081205460ff16156108c957600080fd5b6108d4338484610a55565b50600192915050565b33600090815260046020526040812054819060ff16156108fc57600080fd5b5083610908818561049e565b15610a0c576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156109a0578181015183820152602001610988565b50505050905090810190601f1680156109cd5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156109ef57600080fd5b505af1158015610a03573d6000803e3d6000fd5b50505050600191505b509392505050565b600760209081526000928352604080842090915290825290205481565b600554600160a060020a031681565b60046020526000908152604090205460ff1681565b6000600160a060020a0383161515610a6c57600080fd5b600160a060020a038416600090815260066020526040902054821115610a9157600080fd5b600160a060020a03831660009081526006602052604090205482810111610ab757600080fd5b50600160a060020a038083166000818152600660209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a03808416600090815260066020526040808220549287168252902054018114610b5657fe5b50505050565b600160a060020a0381161515610b7157600080fd5b600554604051600160a060020a038084169216907f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f90600090a36005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820d9c273dd8b4cc19dfbef71a22f1bdb46818513a18517d363f3b5c1a0b06d77e80029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000b41757374696e436861696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044154494300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 1000000000
Arg [1] : tokenName (string): AustinChain
Arg [2] : tokenSymbol (string): ATIC

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 41757374696e436861696e000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4154494300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

159:7551:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;223: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;223:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5037:264;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5037:264:0;-1:-1:-1;;;;;5037:264:0;;;;;;;;;;;;;;;;;;;;;;;;;381:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;381:26:0;;;;;;;;;;;;;;;;;;;;4393:375;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4393:375:0;-1:-1:-1;;;;;4393:375:0;;;;;;;;;;;;275:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;275:26:0;;;;;;;;;;;;;;;;;;;;;;;6256:457;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6256:457:0;;;;;3995:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3995:118:0;-1:-1:-1;;;;;3995:118:0;;;;;;;542:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;542:45:0;-1:-1:-1;;;;;542:45:0;;;;;6976:731;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6976:731:0;-1:-1:-1;;;;;6976:731:0;;;;;;;3291:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3291:126:0;-1:-1:-1;;;;;3291:126:0;;;;;248:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;248:20:0;;;;3790:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3790:114:0;-1:-1:-1;;;;;3790:114:0;;;;;2953:194;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2953:194:0;-1:-1:-1;;;;;2953:194:0;;;;;;;5700:381;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5700:381:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5700:381:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5700:381:0;;-1:-1:-1;5700:381:0;;-1:-1:-1;;;;;;;5700:381:0;594:66;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;594:66:0;-1:-1:-1;;;;;594:66:0;;;;;;;;;;465:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;465:20:0;;;;;;;;-1:-1:-1;;;;;465:20:0;;;;;;;;;;;;;;416:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;416:42:0;-1:-1:-1;;;;;416:42:0;;;;;223:18;;;;;;;;;;;;;;;-1:-1:-1;;223:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5037:264::-;5153:10;5109:12;5143:21;;;:9;:21;;;;;;;;5142:22;5134:31;;;;;;5186:10;5176:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;5176:31:0;;;;;;;;;;;;:40;;;5232:38;;;;;;;5176:31;;5186:10;5232:38;;;;;;;;;;;-1:-1:-1;5289:4:0;5037:264;;;;:::o;381:26::-;;;;:::o;4393:375::-;4519:10;4475:12;4509:21;;;:9;:21;;;;;;;;4508:22;4500:31;;;;;;-1:-1:-1;;;;;4551:16:0;;;;;;:9;:16;;;;;;;;4550:17;4542:26;;;;;;-1:-1:-1;;;;;4597:16:0;;;;;;:9;:16;;;;;;;;4614:10;4597:28;;;;;;;;4587:38;;;4579:47;;;;;;-1:-1:-1;;;;;4660:16:0;;;;;;:9;:16;;;;;;;;4677:10;4660:28;;;;;;;:38;;;;;;;4709:29;4670:5;4726:3;4692:6;4709:9;:29::i;:::-;-1:-1:-1;4756:4:0;4393:375;;;;;:::o;275:26::-;;;;;;:::o;6256:457::-;6346:10;6302:12;6336:21;;;:9;:21;;;;;;;;6335:22;6327:31;;;;;;6387:10;6377:21;;;;:9;:21;;;;;;:31;-1:-1:-1;6377:31:0;6369:40;;;;;;6474:11;;6464:21;;;6456:30;;;;;;6507:10;6497:21;;;;:9;:21;;;;;;;;;:31;;;;;;;6578:11;:21;;;;;;;6659:24;;;;;;;;;;;;;;;;;-1:-1:-1;6701:4:0;6256:457;;;:::o;3995:118::-;4065:5;;-1:-1:-1;;;;;4065:5:0;4051:10;:19;4043:28;;;;;;-1:-1:-1;;;;;4082:15:0;4100:5;4082:15;;;:9;:15;;;;;:23;;-1:-1:-1;;4082:23:0;;;3995:118::o;542:45::-;;;;;;;;;;;;;:::o;6976:731::-;7085:10;7041:12;7075:21;;;:9;:21;;;;;;;;7074:22;7066:31;;;;;;-1:-1:-1;;;;;7117:16:0;;;;;;:9;:16;;;;;;;;7116:17;7108:26;;;;;;-1:-1:-1;;;;;7153:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;7153:26:0;7145:35;;;;;;-1:-1:-1;;;;;7267:16:0;;;;;;:9;:16;;;;;;;;7284:10;7267:28;;;;;;;;7257:38;;;7249:47;;;;;;7347:11;;7337:21;;;7329:30;;;;;;-1:-1:-1;;;;;7370:16:0;;;;;;:9;:16;;;;;;;;:26;;;;;;;7469:9;:16;;;;;7486:10;7469:28;;;;;;;;:38;;;;;;;7570:11;:21;;;;;;;7658:19;;;;;;;;;;;;;;;;;-1:-1:-1;7695:4:0;6976:731;;;;:::o;3291:126::-;3370:5;;-1:-1:-1;;;;;3370:5:0;3356:10;:19;3348:28;;;;;;3387:22;3400:8;3387:12;:22::i;:::-;3291:126;:::o;248:20::-;;;;;;;;;;;;;;;-1:-1:-1;;248:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3790:114;3857:5;;-1:-1:-1;;;;;3857:5:0;3843:10;:19;3835:28;;;;;;-1:-1:-1;;;;;3874:15:0;;;;;:9;:15;;;;;:22;;-1:-1:-1;;3874:22:0;3892:4;3874:22;;;3790:114::o;2953:194::-;3060:10;3016:12;3050:21;;;:9;:21;;;;;;;;3049:22;3041:31;;;;;;3083:34;3093:10;3105:3;3110:6;3083:9;:34::i;:::-;-1:-1:-1;3135:4:0;2953:194;;;;:::o;5700:381::-;5846:10;5802:12;5836:21;;;:9;:21;;;;;;5802:12;;5836:21;;5835:22;5827:31;;;;;;-1:-1:-1;5909:8:0;5933:25;5909:8;5951:6;5933:7;:25::i;:::-;5929:145;;;5975:61;;;;;5999:10;5975:61;;;;;;;;;;;;6019:4;5975:61;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5975:23:0;;;;;5999:10;6011:6;;6019:4;6025:10;;5975:61;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5975:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5975:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5975:61:0;;;;6058:4;6051:11;;5929:145;5700:381;;;;;;:::o;594:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;465:20::-;;;-1:-1:-1;;;;;465:20:0;;:::o;416:42::-;;;;;;;;;;;;;;;:::o;1900:842::-;2308:21;-1:-1:-1;;;;;2052:10:0;;;;2044:19;;;;;;-1:-1:-1;;;;;2125:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;2125:26:0;2117:35;;;;;;-1:-1:-1;;;;;2229:14:0;;;;;;:9;:14;;;;;;2203:23;;;:40;2195:49;;;;;;-1:-1:-1;;;;;;2351:14:0;;;;;;;:9;:14;;;;;;;;;;2332:16;;;;;;;;;;;2413:26;;;;;;2492:14;;;;:24;;;;;;;2532:28;;;;;;;2332:33;;;;;:16;2532:28;;;;;;;;;;;-1:-1:-1;;;;;2699:14:0;;;;;;;:9;:14;;;;;;;2680:16;;;;;;;;:33;:53;;2673:61;;;;1900:842;;;;:::o;3533:173::-;-1:-1:-1;;;;;3601:22:0;;;;3593:31;;;;;;3653:5;;3640:29;;-1:-1:-1;;;;;3640:29:0;;;;3653:5;;3640:29;;3653:5;;3640:29;3681:5;:16;;-1:-1:-1;;3681:16:0;-1:-1:-1;;;;;3681:16:0;;;;;;;;;;3533:173::o

Swarm Source

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