Sepolia Testnet

Token

USD Coin (USDC)
ERC-20

Overview

Max Total Supply

47,909,967.31472 USDC

Holders

11,197

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
400 USDC
0xcc2c77070b4b5680b0667c4602ada2a53f749df4
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:
SelfSufficientERC20

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 4 : SelfSufficientERC20.sol
/*
  Copyright 2019-2023 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

import "ERC20.sol";

/*
  Fake MockERC20 proxy.
  Admins can manipulate balances.
  Users can mint for themselves.
*/
contract SelfSufficientERC20 is ERC20 {
    // Simple permissions management.
    mapping(address => bool) admins;
    address owner;
    uint256 max_mint = MAX_MINT;

    uint256 constant MAX_MINT = 10**8; // Default Maximal amount per selfMint transaction.

    function initlialize(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) external onlyOwner {
        require(decimals_ == 0, "ALREADY_INITIALIZED");
        require(_decimals != 0, "ILLEGAL_INIT_VALUE");
        name_ = _name;
        symbol_ = _symbol;
        decimals_ = _decimals;
    }

    constructor() public {
        admins[msg.sender] = true;
        owner = msg.sender;
    }

    modifier onlyAdmin() {
        require(admins[msg.sender], "ONLY_ADMIN");
        _;
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "ONLY_OWNER");
        _;
    }

    function registerAdmin(address newAdmin) external onlyOwner {
        admins[newAdmin] = true;
    }

    function removeAdmin(address oldAdmin) external onlyOwner {
        require(oldAdmin != owner, "OWNER_MUST_REMAIN_ADMIN");
        admins[oldAdmin] = false;
    }

    function transferOwnership(address newOwner) public onlyOwner {
        admins[newOwner] = true;
        owner = newOwner;
    }

    function adminApproval(
        address fundsOwner,
        address spender,
        uint256 value
    ) external onlyAdmin {
        _approve(fundsOwner, spender, value);
    }

    function setBalance(address account, uint256 amount) external onlyAdmin {
        _totalSupply -= _balances[account];
        require(_totalSupply <= _totalSupply + amount, "TOTAL_SUPPLY_OVERFLOW");
        _balances[account] = amount;
        _totalSupply += amount;
    }

    function resetMaxMint(uint256 newMax) external onlyOwner {
        max_mint = newMax;
    }

    function selfMint(uint256 amount) external {
        require(amount <= max_mint, "ILLEGAL_AMOUNT");
        _mint(msg.sender, amount);
    }
}

File 2 of 4 : ERC20.sol
/*
  Copyright 2019-2023 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

import "IERC20.sol";
import "IERC20Metadata.sol";

abstract contract ERC20 is IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;

    mapping(address => mapping(address => uint256)) internal _allowances;

    uint256 internal _totalSupply;
    string internal name_;
    string internal symbol_;
    uint8 internal decimals_;

    function name() external view override returns (string memory) {
        return name_;
    }

    function symbol() external view override returns (string memory) {
        return symbol_;
    }

    function decimals() external view override returns (uint8) {
        return decimals_;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 value) public override returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 sender_allowance = _allowances[sender][msg.sender];
        require(sender_allowance >= amount, "ERC20: transfer exceeds allowance");
        _approve(sender, msg.sender, sender_allowance - amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        uint256 spender_allowance = _allowances[msg.sender][spender];
        require(spender_allowance + addedValue >= spender_allowance, "ERC20: Overflow");
        _approve(msg.sender, spender, spender_allowance + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        uint256 sender_allowance = _allowances[msg.sender][spender];
        require(sender_allowance >= subtractedValue, "ERC20: transfer exceeds allowance");
        _approve(msg.sender, spender, sender_allowance - subtractedValue);
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        uint256 sender_balance = _balances[sender];
        uint256 recipient_balance = _balances[recipient];
        require(sender_balance >= amount, "ERC20: transfer amount exceeds balance");
        require(recipient_balance + amount >= recipient_balance, "ERC20: Overflow");
        _balances[sender] -= amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");
        uint256 _total = _totalSupply;
        require(_total + amount >= _total, "ERC20: Overflow");
        _totalSupply = _total + amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 current_balance = _balances[account];
        require(current_balance >= value, "ERC20: burn amount exceeds balance");
        _balances[account] = current_balance - value;
        _totalSupply -= value;
        emit Transfer(account, address(0), value);
    }

    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        uint256 current_allowance = _allowances[account][msg.sender];
        require(current_allowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, msg.sender, current_allowance - amount);
    }
}

File 3 of 4 : IERC20.sol
/*
  Copyright 2019-2023 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

/**
  Interface of the ERC20 standard as defined in the EIP. Does not include
  the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 4 : IERC20Metadata.sol
/*
  Copyright 2019-2023 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

import "IERC20.sol";

/**
  Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
    /**
      Returns the name of the token.
    */
    function name() external view returns (string memory);

    /**
      Returns the symbol of the token.
    */
    function symbol() external view returns (string memory);

    /**
      Returns the decimals places of the token.
    */
    function decimals() external view returns (uint8);
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {},
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 100
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"fundsOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"adminApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"name":"initlialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"registerAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oldAdmin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"resetMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"selfMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526305f5e10060085534801561001857600080fd5b50336000818152600660205260409020805460ff19166001179055600780546001600160a01b031916909117905561124b806100556000396000f3fe608060405234801561001057600080fd5b50600436106101115760003560e01c806395d89b41116100ad578063c52cac8911610071578063c52cac891461048c578063c700362d146104a9578063dd62ed3e146104df578063e30443bc1461050d578063f2fde38b1461053957610111565b806395d89b41146102d8578063a457c2d7146102e0578063a9059cbb1461030c578063ab25aec614610338578063c38c58131461046657610111565b806306fdde0314610116578063095ea7b3146101935780630d3c69b4146101d35780631785f53c146101f257806318160ddd1461021857806323b872dd14610232578063313ce56714610268578063395093511461028657806370a08231146102b2575b600080fd5b61011e61055f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610158578181015183820152602001610140565b50505050905090810190601f1680156101855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101bf600480360360408110156101a957600080fd5b506001600160a01b0381351690602001356105f5565b604080519115158252519081900360200190f35b6101f0600480360360208110156101e957600080fd5b503561060b565b005b6101f06004803603602081101561020857600080fd5b50356001600160a01b0316610660565b61022061072a565b60408051918252519081900360200190f35b6101bf6004803603606081101561024857600080fd5b506001600160a01b03813581169160208101359091169060400135610730565b6102706107b8565b6040805160ff9092168252519081900360200190f35b6101bf6004803603604081101561029c57600080fd5b506001600160a01b0381351690602001356107c1565b610220600480360360208110156102c857600080fd5b50356001600160a01b0316610845565b61011e610860565b6101bf600480360360408110156102f657600080fd5b506001600160a01b0381351690602001356108c1565b6101bf6004803603604081101561032257600080fd5b506001600160a01b038135169060200135610931565b6101f06004803603606081101561034e57600080fd5b810190602081018135600160201b81111561036857600080fd5b82018360208201111561037a57600080fd5b803590602001918460018302840111600160201b8311171561039b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156103ed57600080fd5b8201836020820111156103ff57600080fd5b803590602001918460018302840111600160201b8311171561042057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061093e9050565b6101f06004803603602081101561047c57600080fd5b50356001600160a01b0316610a62565b6101f0600480360360208110156104a257600080fd5b5035610ad2565b6101f0600480360360608110156104bf57600080fd5b506001600160a01b03813581169160208101359091169060400135610b23565b610220600480360360408110156104f557600080fd5b506001600160a01b0381358116916020013516610b84565b6101f06004803603604081101561052357600080fd5b506001600160a01b038135169060200135610baf565b6101f06004803603602081101561054f57600080fd5b50356001600160a01b0316610c9a565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b6000610602338484610d1d565b50600192915050565b600854811115610653576040805162461bcd60e51b815260206004820152600e60248201526d1253131151d05317d05353d5539560921b604482015290519081900360640190fd5b61065d3382610e09565b50565b6007546001600160a01b031633146106ac576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b6007546001600160a01b0382811691161415610709576040805162461bcd60e51b815260206004820152601760248201527627aba722a92fa6aaa9aa2fa922a6a0a4a72fa0a226a4a760491b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60025490565b600061073d848484610f0c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107a05760405162461bcd60e51b81526004018080602001828103825260218152602001806111866021913960400191505060405180910390fd5b6107ad8533858403610d1d565b506001949350505050565b60055460ff1690565b3360009081526001602090815260408083206001600160a01b038616845290915281205482810181111561082e576040805162461bcd60e51b815260206004820152600f60248201526e45524332303a204f766572666c6f7760881b604482015290519081900360640190fd5b61083b3385858401610d1d565b5060019392505050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105eb5780601f106105c0576101008083540402835291602001916105eb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109245760405162461bcd60e51b81526004018080602001828103825260218152602001806111866021913960400191505060405180910390fd5b61083b3385858403610d1d565b6000610602338484610f0c565b6007546001600160a01b0316331461098a576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b60055460ff16156109d8576040805162461bcd60e51b81526020600482015260136024820152721053149150511657d253925512505312569151606a1b604482015290519081900360640190fd5b60ff8116610a22576040805162461bcd60e51b8152602060048201526012602482015271494c4c4547414c5f494e49545f56414c554560701b604482015290519081900360640190fd5b8251610a359060039060208601906110ad565b508151610a499060049060208501906110ad565b506005805460ff191660ff929092169190911790555050565b6007546001600160a01b03163314610aae576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6007546001600160a01b03163314610b1e576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b600855565b3360009081526006602052604090205460ff16610b74576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b610b7f838383610d1d565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3360009081526006602052604090205460ff16610c00576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b6001600160a01b0382166000908152602081905260409020546002805491909103908190558181011015610c73576040805162461bcd60e51b8152602060048201526015602482015274544f54414c5f535550504c595f4f564552464c4f5760581b604482015290519081900360640190fd5b6001600160a01b039091166000908152602081905260409020819055600280549091019055565b6007546001600160a01b03163314610ce6576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b6001600160a01b03166000818152600660205260409020805460ff19166001179055600780546001600160a01b0319169091179055565b6001600160a01b038316610d625760405162461bcd60e51b81526004018080602001828103825260248152602001806111f26024913960400191505060405180910390fd5b6001600160a01b038216610da75760405162461bcd60e51b81526004018080602001828103825260228152602001806111646022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610e64576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254818101811115610eb0576040805162461bcd60e51b815260206004820152600f60248201526e45524332303a204f766572666c6f7760881b604482015290519081900360640190fd5b8082016002556001600160a01b038316600081815260208181526040808320805487019055805186815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b6001600160a01b038316610f515760405162461bcd60e51b81526004018080602001828103825260258152602001806111cd6025913960400191505060405180910390fd5b6001600160a01b038216610f965760405162461bcd60e51b81526004018080602001828103825260238152602001806111416023913960400191505060405180910390fd5b6001600160a01b0380841660009081526020819052604080822054928516825290205482821015610ff85760405162461bcd60e51b81526004018080602001828103825260268152602001806111a76026913960400191505060405180910390fd5b808382011015611041576040805162461bcd60e51b815260206004820152600f60248201526e45524332303a204f766572666c6f7760881b604482015290519081900360640190fd5b6001600160a01b0380861660008181526020818152604080832080548990039055938816808352918490208054880190558351878152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106110ee57805160ff191683800117855561111b565b8280016001018555821561111b579182015b8281111561111b578251825591602001919060010190611100565b5061112792915061112b565b5090565b5b80821115611127576000815560010161112c56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e73666572206578636565647320616c6c6f77616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a264697066735822122046588aa134fd00567b2a146ed25e0fa3cad8df3a14e80be4f8d271b32704fe2364736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101115760003560e01c806395d89b41116100ad578063c52cac8911610071578063c52cac891461048c578063c700362d146104a9578063dd62ed3e146104df578063e30443bc1461050d578063f2fde38b1461053957610111565b806395d89b41146102d8578063a457c2d7146102e0578063a9059cbb1461030c578063ab25aec614610338578063c38c58131461046657610111565b806306fdde0314610116578063095ea7b3146101935780630d3c69b4146101d35780631785f53c146101f257806318160ddd1461021857806323b872dd14610232578063313ce56714610268578063395093511461028657806370a08231146102b2575b600080fd5b61011e61055f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610158578181015183820152602001610140565b50505050905090810190601f1680156101855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101bf600480360360408110156101a957600080fd5b506001600160a01b0381351690602001356105f5565b604080519115158252519081900360200190f35b6101f0600480360360208110156101e957600080fd5b503561060b565b005b6101f06004803603602081101561020857600080fd5b50356001600160a01b0316610660565b61022061072a565b60408051918252519081900360200190f35b6101bf6004803603606081101561024857600080fd5b506001600160a01b03813581169160208101359091169060400135610730565b6102706107b8565b6040805160ff9092168252519081900360200190f35b6101bf6004803603604081101561029c57600080fd5b506001600160a01b0381351690602001356107c1565b610220600480360360208110156102c857600080fd5b50356001600160a01b0316610845565b61011e610860565b6101bf600480360360408110156102f657600080fd5b506001600160a01b0381351690602001356108c1565b6101bf6004803603604081101561032257600080fd5b506001600160a01b038135169060200135610931565b6101f06004803603606081101561034e57600080fd5b810190602081018135600160201b81111561036857600080fd5b82018360208201111561037a57600080fd5b803590602001918460018302840111600160201b8311171561039b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156103ed57600080fd5b8201836020820111156103ff57600080fd5b803590602001918460018302840111600160201b8311171561042057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061093e9050565b6101f06004803603602081101561047c57600080fd5b50356001600160a01b0316610a62565b6101f0600480360360208110156104a257600080fd5b5035610ad2565b6101f0600480360360608110156104bf57600080fd5b506001600160a01b03813581169160208101359091169060400135610b23565b610220600480360360408110156104f557600080fd5b506001600160a01b0381358116916020013516610b84565b6101f06004803603604081101561052357600080fd5b506001600160a01b038135169060200135610baf565b6101f06004803603602081101561054f57600080fd5b50356001600160a01b0316610c9a565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b6000610602338484610d1d565b50600192915050565b600854811115610653576040805162461bcd60e51b815260206004820152600e60248201526d1253131151d05317d05353d5539560921b604482015290519081900360640190fd5b61065d3382610e09565b50565b6007546001600160a01b031633146106ac576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b6007546001600160a01b0382811691161415610709576040805162461bcd60e51b815260206004820152601760248201527627aba722a92fa6aaa9aa2fa922a6a0a4a72fa0a226a4a760491b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60025490565b600061073d848484610f0c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107a05760405162461bcd60e51b81526004018080602001828103825260218152602001806111866021913960400191505060405180910390fd5b6107ad8533858403610d1d565b506001949350505050565b60055460ff1690565b3360009081526001602090815260408083206001600160a01b038616845290915281205482810181111561082e576040805162461bcd60e51b815260206004820152600f60248201526e45524332303a204f766572666c6f7760881b604482015290519081900360640190fd5b61083b3385858401610d1d565b5060019392505050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105eb5780601f106105c0576101008083540402835291602001916105eb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109245760405162461bcd60e51b81526004018080602001828103825260218152602001806111866021913960400191505060405180910390fd5b61083b3385858403610d1d565b6000610602338484610f0c565b6007546001600160a01b0316331461098a576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b60055460ff16156109d8576040805162461bcd60e51b81526020600482015260136024820152721053149150511657d253925512505312569151606a1b604482015290519081900360640190fd5b60ff8116610a22576040805162461bcd60e51b8152602060048201526012602482015271494c4c4547414c5f494e49545f56414c554560701b604482015290519081900360640190fd5b8251610a359060039060208601906110ad565b508151610a499060049060208501906110ad565b506005805460ff191660ff929092169190911790555050565b6007546001600160a01b03163314610aae576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6007546001600160a01b03163314610b1e576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b600855565b3360009081526006602052604090205460ff16610b74576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b610b7f838383610d1d565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3360009081526006602052604090205460ff16610c00576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b6001600160a01b0382166000908152602081905260409020546002805491909103908190558181011015610c73576040805162461bcd60e51b8152602060048201526015602482015274544f54414c5f535550504c595f4f564552464c4f5760581b604482015290519081900360640190fd5b6001600160a01b039091166000908152602081905260409020819055600280549091019055565b6007546001600160a01b03163314610ce6576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b6001600160a01b03166000818152600660205260409020805460ff19166001179055600780546001600160a01b0319169091179055565b6001600160a01b038316610d625760405162461bcd60e51b81526004018080602001828103825260248152602001806111f26024913960400191505060405180910390fd5b6001600160a01b038216610da75760405162461bcd60e51b81526004018080602001828103825260228152602001806111646022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610e64576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254818101811115610eb0576040805162461bcd60e51b815260206004820152600f60248201526e45524332303a204f766572666c6f7760881b604482015290519081900360640190fd5b8082016002556001600160a01b038316600081815260208181526040808320805487019055805186815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b6001600160a01b038316610f515760405162461bcd60e51b81526004018080602001828103825260258152602001806111cd6025913960400191505060405180910390fd5b6001600160a01b038216610f965760405162461bcd60e51b81526004018080602001828103825260238152602001806111416023913960400191505060405180910390fd5b6001600160a01b0380841660009081526020819052604080822054928516825290205482821015610ff85760405162461bcd60e51b81526004018080602001828103825260268152602001806111a76026913960400191505060405180910390fd5b808382011015611041576040805162461bcd60e51b815260206004820152600f60248201526e45524332303a204f766572666c6f7760881b604482015290519081900360640190fd5b6001600160a01b0380861660008181526020818152604080832080548990039055938816808352918490208054880190558351878152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106110ee57805160ff191683800117855561111b565b8280016001018555821561111b579182015b8281111561111b578251825591602001919060010190611100565b5061112792915061112b565b5090565b5b80821115611127576000815560010161112c56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e73666572206578636565647320616c6c6f77616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a264697066735822122046588aa134fd00567b2a146ed25e0fa3cad8df3a14e80be4f8d271b32704fe2364736f6c634300060c0033

[ 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.