ETH Price: $2,605.05 (-1.59%)

Token

Yearn Recovery (YFIR)
 

Overview

Max Total Supply

30,000 YFIR

Holders

113

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
bennybalboa.eth
Balance
0.217032689293994258 YFIR

Value
$0.00
0x156fe1286b7d94420dd99a257c8ee09cde8c0176
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

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

Contract Name:
YFIR

Compiler Version
v0.6.0+commit.26b70077

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-09-09
*/

pragma solidity 0.6.0;

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract Ownable {
    address public _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () public {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract YFIR is Ownable {

    using SafeMath for uint256;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);

    modifier validRecipient(address to) {
        require(to != address(this));
        _;
    }

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

    string public constant name = "Yearn Recovery";
    string public constant symbol = "YFIR";
    uint256 public constant decimals = 18;

    uint256 private constant DECIMALS = 18;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 30000 * 10**DECIMALS;

    uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    uint256 private constant MAX_SUPPLY = ~uint128(0);

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;
    mapping(address => uint256) private _gonBalances;

    mapping (address => mapping (address => uint256)) private _allowedFragments;


    function rebase(uint256 epoch, uint256 supplyDelta)
        external
        onlyOwner
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

         _totalSupply = _totalSupply.sub(supplyDelta);


        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        emit LogRebase(epoch, _totalSupply);
        return _totalSupply;
    }

    constructor() public override {
        _owner = msg.sender;

        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[_owner] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        emit Transfer(address(0x0), _owner, _totalSupply);
    }

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

    function balanceOf(address who)
        public
        view
        returns (uint256)
    {
        return _gonBalances[who].div(_gonsPerFragment);
    }

    function transfer(address to, uint256 value)
        public
        validRecipient(to)
        returns (bool)
    {
        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(msg.sender, to, value);
        return true;
    }

    function allowance(address owner_, address spender)
        public
        view
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    function transferFrom(address from, address to, uint256 value)
        public
        validRecipient(to)
        returns (bool)
    {
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);

        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[from] = _gonBalances[from].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(from, to, value);

        return true;
    }

    function approve(address spender, uint256 value)
        public
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] =
            _allowedFragments[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }
}

Contract Security Audit

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":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"supplyDelta","type":"uint256"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"}]

608060405234801561001057600080fd5b50600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600080546001600160a01b031916331780825569065a4da25d3016c0000060019081556001600160a01b03909116825260036020908152604090922069063ce619a63a59bfffff199081905590546100af926100fd811b610b8c17901c565b6002556000805460015460408051918252516001600160a01b0390921692917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36101ee565b600061014583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061014c60201b60201c565b9392505050565b600081836101d85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561019d578181015183820152602001610185565b50505050905090810190601f1680156101ca5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816101e457fe5b0495945050505050565b610dfa806101fd6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102f1578063b2bdfa7b1461031d578063dd62ed3e14610325578063f2fde38b1461035357610100565b8063715018a61461028f5780638da5cb5b1461029957806395d89b41146102bd578063a457c2d7146102c557610100565b806323b872dd116100d357806323b872dd146101ff578063313ce56714610235578063395093511461023d57806370a082311461026957610100565b8063058ecdb41461010557806306fdde031461013a578063095ea7b3146101b757806318160ddd146101f7575b600080fd5b6101286004803603604081101561011b57600080fd5b5080359060200135610379565b60408051918252519081900360200190f35b6101426104b0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017c578181015183820152602001610164565b50505050905090810190601f1680156101a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e3600480360360408110156101cd57600080fd5b506001600160a01b0381351690602001356104da565b604080519115158252519081900360200190f35b610128610540565b6101e36004803603606081101561021557600080fd5b506001600160a01b03813581169160208101359091169060400135610546565b610128610692565b6101e36004803603604081101561025357600080fd5b506001600160a01b038135169060200135610697565b6101286004803603602081101561027f57600080fd5b50356001600160a01b0316610730565b61029761075e565b005b6102a1610807565b604080516001600160a01b039092168252519081900360200190f35b610142610816565b6101e3600480360360408110156102db57600080fd5b506001600160a01b038135169060200135610836565b6101e36004803603604081101561030757600080fd5b506001600160a01b038135169060200135610925565b6102a1610a0a565b6101286004803603604081101561033b57600080fd5b506001600160a01b0381358116916020013516610a19565b6102976004803603602081101561036957600080fd5b50356001600160a01b0316610a44565b600080546001600160a01b031633146103d9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8161041f57600154604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a2506001546104aa565b600154610432908363ffffffff610b4316565b60018190556001600160801b031015610451576001600160801b036001555b60015461046a9069063ce619a63a59bfffff1990610b8c565b600255600154604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a2506001545b92915050565b6040518060400160405280600e81526020016d596561726e205265636f7665727960901b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000826001600160a01b03811630141561055f57600080fd5b6001600160a01b0385166000908152600460209081526040808320338452909152902054610593908463ffffffff610b4316565b6001600160a01b03861660009081526004602090815260408083203384529091528120919091556002546105ce90859063ffffffff610bce16565b6001600160a01b0387166000908152600360205260409020549091506105fa908263ffffffff610b4316565b6001600160a01b03808816600090815260036020526040808220939093559087168152205461062f908263ffffffff610c2716565b6001600160a01b0380871660008181526003602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b601281565b3360009081526004602090815260408083206001600160a01b03861684529091528120546106cb908363ffffffff610c2716565b3360008181526004602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6002546001600160a01b03821660009081526003602052604081205490916104aa919063ffffffff610b8c16565b6000546001600160a01b031633146107bd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604051806040016040528060048152602001632ca324a960e11b81525081565b3360009081526004602090815260408083206001600160a01b038616845290915281205480831061088a573360009081526004602090815260408083206001600160a01b03881684529091528120556108bf565b61089a818463ffffffff610b4316565b3360009081526004602090815260408083206001600160a01b03891684529091529020555b3360008181526004602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b03811630141561093e57600080fd5b600061095560025485610bce90919063ffffffff16565b33600090815260036020526040902054909150610978908263ffffffff610b4316565b33600090815260036020526040808220929092556001600160a01b038716815220546109aa908263ffffffff610c2716565b6001600160a01b0386166000818152600360209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b6000546001600160a01b031681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610aa3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610ae85760405162461bcd60e51b8152600401808060200182810382526026815260200180610d7e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b8583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c81565b9392505050565b6000610b8583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610d18565b600082610bdd575060006104aa565b82820282848281610bea57fe5b0414610b855760405162461bcd60e51b8152600401808060200182810382526021815260200180610da46021913960400191505060405180910390fd5b600082820183811015610b85576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610d105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cd5578181015183820152602001610cbd565b50505050905090810190601f168015610d025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610d675760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610cd5578181015183820152602001610cbd565b506000838581610d7357fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220828d8b0536bfc6efc79b085d2f2967263dbb11a53c8e0ce4178e3a598687449464736f6c63430006000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102f1578063b2bdfa7b1461031d578063dd62ed3e14610325578063f2fde38b1461035357610100565b8063715018a61461028f5780638da5cb5b1461029957806395d89b41146102bd578063a457c2d7146102c557610100565b806323b872dd116100d357806323b872dd146101ff578063313ce56714610235578063395093511461023d57806370a082311461026957610100565b8063058ecdb41461010557806306fdde031461013a578063095ea7b3146101b757806318160ddd146101f7575b600080fd5b6101286004803603604081101561011b57600080fd5b5080359060200135610379565b60408051918252519081900360200190f35b6101426104b0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017c578181015183820152602001610164565b50505050905090810190601f1680156101a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e3600480360360408110156101cd57600080fd5b506001600160a01b0381351690602001356104da565b604080519115158252519081900360200190f35b610128610540565b6101e36004803603606081101561021557600080fd5b506001600160a01b03813581169160208101359091169060400135610546565b610128610692565b6101e36004803603604081101561025357600080fd5b506001600160a01b038135169060200135610697565b6101286004803603602081101561027f57600080fd5b50356001600160a01b0316610730565b61029761075e565b005b6102a1610807565b604080516001600160a01b039092168252519081900360200190f35b610142610816565b6101e3600480360360408110156102db57600080fd5b506001600160a01b038135169060200135610836565b6101e36004803603604081101561030757600080fd5b506001600160a01b038135169060200135610925565b6102a1610a0a565b6101286004803603604081101561033b57600080fd5b506001600160a01b0381358116916020013516610a19565b6102976004803603602081101561036957600080fd5b50356001600160a01b0316610a44565b600080546001600160a01b031633146103d9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8161041f57600154604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a2506001546104aa565b600154610432908363ffffffff610b4316565b60018190556001600160801b031015610451576001600160801b036001555b60015461046a9069063ce619a63a59bfffff1990610b8c565b600255600154604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a2506001545b92915050565b6040518060400160405280600e81526020016d596561726e205265636f7665727960901b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000826001600160a01b03811630141561055f57600080fd5b6001600160a01b0385166000908152600460209081526040808320338452909152902054610593908463ffffffff610b4316565b6001600160a01b03861660009081526004602090815260408083203384529091528120919091556002546105ce90859063ffffffff610bce16565b6001600160a01b0387166000908152600360205260409020549091506105fa908263ffffffff610b4316565b6001600160a01b03808816600090815260036020526040808220939093559087168152205461062f908263ffffffff610c2716565b6001600160a01b0380871660008181526003602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b601281565b3360009081526004602090815260408083206001600160a01b03861684529091528120546106cb908363ffffffff610c2716565b3360008181526004602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6002546001600160a01b03821660009081526003602052604081205490916104aa919063ffffffff610b8c16565b6000546001600160a01b031633146107bd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604051806040016040528060048152602001632ca324a960e11b81525081565b3360009081526004602090815260408083206001600160a01b038616845290915281205480831061088a573360009081526004602090815260408083206001600160a01b03881684529091528120556108bf565b61089a818463ffffffff610b4316565b3360009081526004602090815260408083206001600160a01b03891684529091529020555b3360008181526004602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b03811630141561093e57600080fd5b600061095560025485610bce90919063ffffffff16565b33600090815260036020526040902054909150610978908263ffffffff610b4316565b33600090815260036020526040808220929092556001600160a01b038716815220546109aa908263ffffffff610c2716565b6001600160a01b0386166000818152600360209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b6000546001600160a01b031681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610aa3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610ae85760405162461bcd60e51b8152600401808060200182810382526026815260200180610d7e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b8583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c81565b9392505050565b6000610b8583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610d18565b600082610bdd575060006104aa565b82820282848281610bea57fe5b0414610b855760405162461bcd60e51b8152600401808060200182810382526021815260200180610da46021913960400191505060405180910390fd5b600082820183811015610b85576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610d105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cd5578181015183820152602001610cbd565b50505050905090810190601f168015610d025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610d675760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610cd5578181015183820152602001610cbd565b506000838581610d7357fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220828d8b0536bfc6efc79b085d2f2967263dbb11a53c8e0ce4178e3a598687449464736f6c63430006000033

Deployed Bytecode Sourcemap

2384:4435:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2384:4435:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3491:550;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3491:550:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2788:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;2788:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5712:233;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5712:233:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4341:123;;;:::i;5217:487::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5217:487:0;;;;;;;;;;;;;;;;;:::i;2886:37::-;;;:::i;5953:343::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5953:343:0;;;;;;;;:::i;4472:159::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4472:159:0;-1:-1:-1;;;;;4472:159:0;;:::i;1977:148::-;;;:::i;:::-;;1765:79;;;:::i;:::-;;;;-1:-1:-1;;;;;1765:79:0;;;;;;;;;;;;;;2841:38;;;:::i;6304:512::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6304:512:0;;;;;;;;:::i;4639:388::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4639:388:0;;;;;;;;:::i;1515:21::-;;;:::i;5035:174::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5035:174:0;;;;;;;;;;:::i;2133:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2133:244:0;-1:-1:-1;;;;;2133:244:0;;:::i;3491:550::-;3598:7;1892:6;;-1:-1:-1;;;;;1892:6:0;1902:10;1892:20;1884:65;;;;;-1:-1:-1;;;1884:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3627:16;3623:118:::1;;3682:12;::::0;3665:30:::1;::::0;;;;;;3675:5;;3665:30:::1;::::0;;;;;::::1;::::0;;::::1;-1:-1:-1::0;3717:12:0::1;::::0;3710:19:::1;;3623:118;3769:12;::::0;:29:::1;::::0;3786:11;3769:29:::1;:16;:29;:::i;:::-;3754:12;:44:::0;;;-1:-1:-1;;;;;;3813:83:0::1;;;-1:-1:-1::0;;;;;3859:12:0::1;:25:::0;3813:83:::1;3942:12;::::0;3927:28:::1;::::0;-1:-1:-1;;3153:54:0;3927:14:::1;:28::i;:::-;3908:16;:47:::0;3990:12:::1;::::0;3973:30:::1;::::0;;;;;;3983:5;;3973:30:::1;::::0;;;;;::::1;::::0;;::::1;-1:-1:-1::0;4021:12:0::1;::::0;1960:1:::1;3491:550:::0;;;;:::o;2788:46::-;;;;;;;;;;;;;;-1:-1:-1;;;2788:46:0;;;;:::o;5712:233::-;5835:10;5795:4;5817:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;5817:38:0;;;;;;;;;;;:46;;;5879:36;;;;;;;5795:4;;5817:38;;5835:10;;5879:36;;;;;;;;-1:-1:-1;5933:4:0;5712:233;;;;:::o;4341:123::-;4444:12;;4341:123;:::o;5217:487::-;5342:4;5320:2;-1:-1:-1;;;;;2576:19:0;;2590:4;2576:19;;2568:28;;;;;;-1:-1:-1;;;;;5402:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;5426:10:::1;5402:35:::0;;;;;;;;:46:::1;::::0;5442:5;5402:46:::1;:39;:46;:::i;:::-;-1:-1:-1::0;;;;;5364:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;5388:10:::1;5364:35:::0;;;;;;;:84;;;;5490:16:::1;::::0;5480:27:::1;::::0;:5;;:27:::1;:9;:27;:::i;:::-;-1:-1:-1::0;;;;;5539:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;;5461:46;;-1:-1:-1;5539:32:0::1;::::0;5461:46;5539:32:::1;:22;:32;:::i;:::-;-1:-1:-1::0;;;;;5518:18:0;;::::1;;::::0;;;:12:::1;:18;::::0;;;;;:53;;;;5601:16;;::::1;::::0;;;;:30:::1;::::0;5622:8;5601:30:::1;:20;:30;:::i;:::-;-1:-1:-1::0;;;;;5582:16:0;;::::1;;::::0;;;:12:::1;:16;::::0;;;;;;;;:49;;;;5647:25;;;;;;;5582:16;;5647:25;;::::1;::::0;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;5692:4:0::1;::::0;5217:487;-1:-1:-1;;;;;5217:487:0:o;2886:37::-;2921:2;2886:37;:::o;5953:343::-;6145:10;6051:4;6127:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6127:38:0;;;;;;;;;;:54;;6170:10;6127:54;:42;:54;:::i;:::-;6091:10;6073:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6073:38:0;;;;;;;;;;;;:108;;;6197:69;;;;;;6073:38;;6197:69;;;;;;;;;;;-1:-1:-1;6284:4:0;5953:343;;;;:::o;4472:159::-;4606:16;;-1:-1:-1;;;;;4584:17:0;;4552:7;4584:17;;;:12;:17;;;;;;4552:7;;4584:39;;:17;:39;:21;:39;:::i;1977:148::-;1892:6;;-1:-1:-1;;;;;1892:6:0;1902:10;1892:20;1884:65;;;;;-1:-1:-1;;;1884:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:1:::1;2068:6:::0;;2047:40:::1;::::0;-1:-1:-1;;;;;2068:6:0;;::::1;::::0;2047:40:::1;::::0;2084:1;;2047:40:::1;2115:1;2098:19:::0;;-1:-1:-1;;;;;;2098:19:0::1;::::0;;1977:148::o;1765:79::-;1803:7;1830:6;-1:-1:-1;;;;;1830:6:0;1765:79;:::o;2841:38::-;;;;;;;;;;;;;;-1:-1:-1;;;2841:38:0;;;;:::o;6304:512::-;6466:10;6407:4;6448:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6448:38:0;;;;;;;;;;6501:27;;;6497:205;;6563:10;6586:1;6545:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6545:38:0;;;;;;;;;:42;6497:205;;;6661:29;:8;6674:15;6661:29;:12;:29;:::i;:::-;6638:10;6620:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6620:38:0;;;;;;;;;:70;6497:205;6726:10;6747:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6717:69:0;;6747:38;;;;;;;;;;;6717:69;;;;;;;;;6726:10;6717:69;;;;;;;;;;;-1:-1:-1;6804:4:0;;6304:512;-1:-1:-1;;;6304:512:0:o;4639:388::-;4746:4;4724:2;-1:-1:-1;;;;;2576:19:0;;2590:4;2576:19;;2568:28;;;;;;4768:16:::1;4787:27;4797:16;;4787:5;:9;;:27;;;;:::i;:::-;4865:10;4852:24;::::0;;;:12:::1;:24;::::0;;;;;4768:46;;-1:-1:-1;4852:38:0::1;::::0;4768:46;4852:38:::1;:28;:38;:::i;:::-;4838:10;4825:24;::::0;;;:12:::1;:24;::::0;;;;;:65;;;;-1:-1:-1;;;;;4920:16:0;::::1;::::0;;;;:30:::1;::::0;4941:8;4920:30:::1;:20;:30;:::i;:::-;-1:-1:-1::0;;;;;4901:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;;;;:49;;;;4966:31;;;;;;;4901:16;;4975:10:::1;::::0;4966:31:::1;::::0;;;;;;;;::::1;-1:-1:-1::0;5015:4:0::1;::::0;4639:388;-1:-1:-1;;;;4639:388:0:o;1515:21::-;;;-1:-1:-1;;;;;1515:21:0;;:::o;5035:174::-;-1:-1:-1;;;;;5167:25:0;;;5135:7;5167:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;5035:174::o;2133:244::-;1892:6;;-1:-1:-1;;;;;1892:6:0;1902:10;1892:20;1884:65;;;;;-1:-1:-1;;;1884:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2222:22:0;::::1;2214:73;;;;-1:-1:-1::0;;;2214:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2324:6;::::0;;2303:38:::1;::::0;-1:-1:-1;;;;;2303:38:0;;::::1;::::0;2324:6;::::1;::::0;2303:38:::1;::::0;::::1;2352:6;:17:::0;;-1:-1:-1;;;;;;2352:17:0::1;-1:-1:-1::0;;;;;2352:17:0;;;::::1;::::0;;;::::1;::::0;;2133:244::o;239:136::-;297:7;324:43;328:1;331;324:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;317:50;239:136;-1:-1:-1;;;239:136:0:o;841:132::-;899:7;926:39;930:1;933;926:39;;;;;;;;;;;;;;;;;:3;:39::i;583:250::-;641:7;665:6;661:47;;-1:-1:-1;695:1:0;688:8;;661:47;732:5;;;736:1;732;:5;:1;756:5;;;;;:10;748:56;;;;-1:-1:-1;;;748:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50:181;108:7;140:5;;;164:6;;;;156:46;;;;;-1:-1:-1;;;156:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;383:192;469:7;505:12;497:6;;;;489:29;;;;-1:-1:-1;;;489:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23: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;489:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;541:5:0;;;383:192::o;981:191::-;1067:7;1102:12;1095:5;1087:28;;;;-1:-1:-1;;;1087:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;1087:28:0;;1126:9;1142:1;1138;:5;;;;;;;981:191;-1:-1:-1;;;;;981:191:0:o

Swarm Source

ipfs://828d8b0536bfc6efc79b085d2f2967263dbb11a53c8e0ce4178e3a5986874494
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.