ETH Price: $2,520.63 (-4.45%)

Token

YGIO (YGIO)
 

Overview

Max Total Supply

1,000,000,000 YGIO

Holders

449

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
52,500 YGIO

Value
$0.00
0x8992804f57658dea7362ca9680d2e46fd62569e2
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:
YGToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-24
*/

pragma solidity ^0.8.0;

interface IERC20 {

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

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

    function totalSupply() external view returns (uint256);

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

    function transfer(address to, 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 from,
        address to,
        uint256 amount
    ) external returns (bool);

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);
}

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

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

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 is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract YGToken is IERC20, Ownable {
    using SafeMath for uint256;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private _totalSupply;
    uint8 private _decimals;
    string private _symbol;
    string private _name;

    constructor(address[5] memory _address){
        _name = "YGIO";
        _symbol = "YGIO";
        _decimals = 18;
        
        uint8[5] memory mintRate = [10, 18, 52, 8, 12];
        uint256 total = 1_000_000_000 * 1e18;
        for (uint256 i = 0; i < _address.length; i++) {
            _mint(_address[i], (total * mintRate[i]) / 100);
        }
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    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 _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[5]","name":"_address","type":"address[5]"}],"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":"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":[{"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":[{"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":[],"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":"amount","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":"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"}]

60806040523480156200001157600080fd5b5060405162001f3638038062001f368339818101604052810190620000379190620005da565b620000576200004b6200023860201b60201c565b6200024060201b60201c565b6040518060400160405280600481526020017f5947494f0000000000000000000000000000000000000000000000000000000081525060069080519060200190620000a49291906200047d565b506040518060400160405280600481526020017f5947494f0000000000000000000000000000000000000000000000000000000081525060059080519060200190620000f29291906200047d565b506012600460006101000a81548160ff021916908360ff16021790555060006040518060a00160405280600a60ff168152602001601260ff168152602001603460ff168152602001600860ff168152602001600c60ff16815250905060006b033b2e3c9fd0803ce8000000905060005b60058110156200022e5762000218848260058110620001aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516064858460058110620001eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160ff16856200020091906200079b565b6200020c919062000763565b6200030460201b60201c565b8080620002259062000870565b91505062000162565b5050505062000994565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e9062000659565b60405180910390fd5b6200038b600083836200047360201b60201c565b80600360008282546200039f919062000706565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200045391906200067b565b60405180910390a36200046f600083836200047860201b60201c565b5050565b505050565b505050565b8280546200048b906200083a565b90600052602060002090601f016020900481019282620004af5760008555620004fb565b82601f10620004ca57805160ff1916838001178555620004fb565b82800160010185558215620004fb579182015b82811115620004fa578251825591602001919060010190620004dd565b5b5090506200050a91906200050e565b5090565b5b80821115620005295760008160009055506001016200050f565b5090565b6000620005446200053e84620006cc565b62000698565b905080828560208602820111156200055b57600080fd5b60005b858110156200058f578162000574888262000599565b8452602084019350602083019250506001810190506200055e565b5050509392505050565b600081519050620005aa816200097a565b92915050565b600082601f830112620005c257600080fd5b6005620005d18482856200052d565b91505092915050565b600060a08284031215620005ed57600080fd5b6000620005fd84828501620005b0565b91505092915050565b600062000615601f83620006f5565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620006538162000830565b82525050565b60006020820190508181036000830152620006748162000606565b9050919050565b600060208201905062000692600083018462000648565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620006c257620006c16200094b565b5b8060405250919050565b600067ffffffffffffffff821115620006ea57620006e96200094b565b5b602082029050919050565b600082825260208201905092915050565b6000620007138262000830565b9150620007208362000830565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007585762000757620008be565b5b828201905092915050565b6000620007708262000830565b91506200077d8362000830565b92508262000790576200078f620008ed565b5b828204905092915050565b6000620007a88262000830565b9150620007b58362000830565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007f157620007f0620008be565b5b828202905092915050565b6000620008098262000810565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200085357607f821691505b602082108114156200086a57620008696200091c565b5b50919050565b60006200087d8262000830565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620008b357620008b2620008be565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200098581620007fc565b81146200099157600080fd5b50565b61159280620009a46000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061121b565b60405180910390f35b61012760048036038101906101229190610dea565b61038d565b6040516101349190611200565b60405180910390f35b6101456103b0565b604051610152919061135d565b60405180910390f35b61017560048036038101906101709190610d9b565b6103ba565b6040516101829190611200565b60405180910390f35b6101936103e9565b6040516101a09190611378565b60405180910390f35b6101c360048036038101906101be9190610dea565b6103f2565b6040516101d09190611200565b60405180910390f35b6101f360048036038101906101ee9190610d36565b610429565b604051610200919061135d565b60405180910390f35b610211610472565b005b61021b610486565b60405161022891906111e5565b60405180910390f35b6102396104af565b604051610246919061121b565b60405180910390f35b61026960048036038101906102649190610dea565b610541565b6040516102769190611200565b60405180910390f35b61029960048036038101906102949190610dea565b6105b8565b6040516102a69190611200565b60405180910390f35b6102c960048036038101906102c49190610d5f565b6105db565b6040516102d6919061135d565b60405180910390f35b6102f960048036038101906102f49190610d36565b610662565b005b60606006805461030a9061148d565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061148d565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986106e6565b90506103a58185856106ee565b600191505092915050565b6000600354905090565b6000806103c56106e6565b90506103d28582856108b9565b6103dd858585610945565b60019150509392505050565b60006012905090565b6000806103fd6106e6565b905061041e81858561040f85896105db565b61041991906113af565b6106ee565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61047a610bc0565b6104846000610c3e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546104be9061148d565b80601f01602080910402602001604051908101604052809291908181526020018280546104ea9061148d565b80156105375780601f1061050c57610100808354040283529160200191610537565b820191906000526020600020905b81548152906001019060200180831161051a57829003601f168201915b5050505050905090565b60008061054c6106e6565b9050600061055a82866105db565b90508381101561059f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105969061133d565b60405180910390fd5b6105ac82868684036106ee565b60019250505092915050565b6000806105c36106e6565b90506105d0818585610945565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61066a610bc0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d19061125d565b60405180910390fd5b6106e381610c3e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561075e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107559061131d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c59061127d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108ac919061135d565b60405180910390a3505050565b60006108c584846105db565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461093f5781811015610931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109289061129d565b60405180910390fd5b61093e84848484036106ee565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906112fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c9061123d565b60405180910390fd5b610a30838383610d02565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906112bd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ba7919061135d565b60405180910390a3610bba848484610d07565b50505050565b610bc86106e6565b73ffffffffffffffffffffffffffffffffffffffff16610be6610486565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906112dd565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610d1b8161152e565b92915050565b600081359050610d3081611545565b92915050565b600060208284031215610d4857600080fd5b6000610d5684828501610d0c565b91505092915050565b60008060408385031215610d7257600080fd5b6000610d8085828601610d0c565b9250506020610d9185828601610d0c565b9150509250929050565b600080600060608486031215610db057600080fd5b6000610dbe86828701610d0c565b9350506020610dcf86828701610d0c565b9250506040610de086828701610d21565b9150509250925092565b60008060408385031215610dfd57600080fd5b6000610e0b85828601610d0c565b9250506020610e1c85828601610d21565b9150509250929050565b610e2f81611405565b82525050565b610e3e81611417565b82525050565b6000610e4f82611393565b610e59818561139e565b9350610e6981856020860161145a565b610e728161151d565b840191505092915050565b6000610e8a60238361139e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ef060268361139e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f5660228361139e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fbc601d8361139e565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000610ffc60268361139e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061106260208361139e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006110a260258361139e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061110860248361139e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061116e60258361139e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6111d081611443565b82525050565b6111df8161144d565b82525050565b60006020820190506111fa6000830184610e26565b92915050565b60006020820190506112156000830184610e35565b92915050565b600060208201905081810360008301526112358184610e44565b905092915050565b6000602082019050818103600083015261125681610e7d565b9050919050565b6000602082019050818103600083015261127681610ee3565b9050919050565b6000602082019050818103600083015261129681610f49565b9050919050565b600060208201905081810360008301526112b681610faf565b9050919050565b600060208201905081810360008301526112d681610fef565b9050919050565b600060208201905081810360008301526112f681611055565b9050919050565b6000602082019050818103600083015261131681611095565b9050919050565b60006020820190508181036000830152611336816110fb565b9050919050565b6000602082019050818103600083015261135681611161565b9050919050565b600060208201905061137260008301846111c7565b92915050565b600060208201905061138d60008301846111d6565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113ba82611443565b91506113c583611443565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113fa576113f96114bf565b5b828201905092915050565b600061141082611423565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561147857808201518184015260208101905061145d565b83811115611487576000848401525b50505050565b600060028204905060018216806114a557607f821691505b602082108114156114b9576114b86114ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61153781611405565b811461154257600080fd5b50565b61154e81611443565b811461155957600080fd5b5056fea264697066735822122021eb5186bd70a1fd3674127d28b1861e5524462cac9cc9aad27a327c73e48efb64736f6c63430008000033000000000000000000000000a41e000d088dc7dc3f8159634ddfd03650789947000000000000000000000000a3add9e906f31a751c21a867b013c690e9e0bf4d00000000000000000000000062c70a2842d516e4456204d681cd17f1ef4bad7f000000000000000000000000b147fbca1a5eb79666124939455d7dd31844f46c0000000000000000000000008e4a378bc178dcfd181f18dac965d7e368812bbf

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061121b565b60405180910390f35b61012760048036038101906101229190610dea565b61038d565b6040516101349190611200565b60405180910390f35b6101456103b0565b604051610152919061135d565b60405180910390f35b61017560048036038101906101709190610d9b565b6103ba565b6040516101829190611200565b60405180910390f35b6101936103e9565b6040516101a09190611378565b60405180910390f35b6101c360048036038101906101be9190610dea565b6103f2565b6040516101d09190611200565b60405180910390f35b6101f360048036038101906101ee9190610d36565b610429565b604051610200919061135d565b60405180910390f35b610211610472565b005b61021b610486565b60405161022891906111e5565b60405180910390f35b6102396104af565b604051610246919061121b565b60405180910390f35b61026960048036038101906102649190610dea565b610541565b6040516102769190611200565b60405180910390f35b61029960048036038101906102949190610dea565b6105b8565b6040516102a69190611200565b60405180910390f35b6102c960048036038101906102c49190610d5f565b6105db565b6040516102d6919061135d565b60405180910390f35b6102f960048036038101906102f49190610d36565b610662565b005b60606006805461030a9061148d565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061148d565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986106e6565b90506103a58185856106ee565b600191505092915050565b6000600354905090565b6000806103c56106e6565b90506103d28582856108b9565b6103dd858585610945565b60019150509392505050565b60006012905090565b6000806103fd6106e6565b905061041e81858561040f85896105db565b61041991906113af565b6106ee565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61047a610bc0565b6104846000610c3e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546104be9061148d565b80601f01602080910402602001604051908101604052809291908181526020018280546104ea9061148d565b80156105375780601f1061050c57610100808354040283529160200191610537565b820191906000526020600020905b81548152906001019060200180831161051a57829003601f168201915b5050505050905090565b60008061054c6106e6565b9050600061055a82866105db565b90508381101561059f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105969061133d565b60405180910390fd5b6105ac82868684036106ee565b60019250505092915050565b6000806105c36106e6565b90506105d0818585610945565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61066a610bc0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d19061125d565b60405180910390fd5b6106e381610c3e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561075e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107559061131d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c59061127d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108ac919061135d565b60405180910390a3505050565b60006108c584846105db565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461093f5781811015610931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109289061129d565b60405180910390fd5b61093e84848484036106ee565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906112fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c9061123d565b60405180910390fd5b610a30838383610d02565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906112bd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ba7919061135d565b60405180910390a3610bba848484610d07565b50505050565b610bc86106e6565b73ffffffffffffffffffffffffffffffffffffffff16610be6610486565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906112dd565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610d1b8161152e565b92915050565b600081359050610d3081611545565b92915050565b600060208284031215610d4857600080fd5b6000610d5684828501610d0c565b91505092915050565b60008060408385031215610d7257600080fd5b6000610d8085828601610d0c565b9250506020610d9185828601610d0c565b9150509250929050565b600080600060608486031215610db057600080fd5b6000610dbe86828701610d0c565b9350506020610dcf86828701610d0c565b9250506040610de086828701610d21565b9150509250925092565b60008060408385031215610dfd57600080fd5b6000610e0b85828601610d0c565b9250506020610e1c85828601610d21565b9150509250929050565b610e2f81611405565b82525050565b610e3e81611417565b82525050565b6000610e4f82611393565b610e59818561139e565b9350610e6981856020860161145a565b610e728161151d565b840191505092915050565b6000610e8a60238361139e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ef060268361139e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f5660228361139e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fbc601d8361139e565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000610ffc60268361139e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061106260208361139e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006110a260258361139e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061110860248361139e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061116e60258361139e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6111d081611443565b82525050565b6111df8161144d565b82525050565b60006020820190506111fa6000830184610e26565b92915050565b60006020820190506112156000830184610e35565b92915050565b600060208201905081810360008301526112358184610e44565b905092915050565b6000602082019050818103600083015261125681610e7d565b9050919050565b6000602082019050818103600083015261127681610ee3565b9050919050565b6000602082019050818103600083015261129681610f49565b9050919050565b600060208201905081810360008301526112b681610faf565b9050919050565b600060208201905081810360008301526112d681610fef565b9050919050565b600060208201905081810360008301526112f681611055565b9050919050565b6000602082019050818103600083015261131681611095565b9050919050565b60006020820190508181036000830152611336816110fb565b9050919050565b6000602082019050818103600083015261135681611161565b9050919050565b600060208201905061137260008301846111c7565b92915050565b600060208201905061138d60008301846111d6565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113ba82611443565b91506113c583611443565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113fa576113f96114bf565b5b828201905092915050565b600061141082611423565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561147857808201518184015260208101905061145d565b83811115611487576000848401525b50505050565b600060028204905060018216806114a557607f821691505b602082108114156114b9576114b86114ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61153781611405565b811461154257600080fd5b50565b61154e81611443565b811461155957600080fd5b5056fea264697066735822122021eb5186bd70a1fd3674127d28b1861e5524462cac9cc9aad27a327c73e48efb64736f6c63430008000033

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

000000000000000000000000a41e000d088dc7dc3f8159634ddfd03650789947000000000000000000000000a3add9e906f31a751c21a867b013c690e9e0bf4d00000000000000000000000062c70a2842d516e4456204d681cd17f1ef4bad7f000000000000000000000000b147fbca1a5eb79666124939455d7dd31844f46c0000000000000000000000008e4a378bc178dcfd181f18dac965d7e368812bbf

-----Decoded View---------------
Arg [0] : _address (address[5]): 0xA41e000D088dc7dC3F8159634dDfD03650789947,0xa3adD9e906F31a751c21a867b013c690E9e0bf4d,0x62C70a2842d516E4456204D681Cd17f1EF4BaD7f,0xb147fbcA1A5Eb79666124939455d7DD31844f46c,0x8e4a378bc178DCfD181F18dAc965d7e368812BBF

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000a41e000d088dc7dc3f8159634ddfd03650789947
Arg [1] : 000000000000000000000000a3add9e906f31a751c21a867b013c690e9e0bf4d
Arg [2] : 00000000000000000000000062c70a2842d516e4456204d681cd17f1ef4bad7f
Arg [3] : 000000000000000000000000b147fbca1a5eb79666124939455d7dd31844f46c
Arg [4] : 0000000000000000000000008e4a378bc178dcfd181f18dac965d7e368812bbf


Deployed Bytecode Sourcemap

3560:6034:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4264:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5196:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4585:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5405:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4484:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5708:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4701:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3042:103;;;:::i;:::-;;2807:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4372:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5954:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4836:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5037:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3153:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4264:100;4318:13;4351:5;4344:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4264:100;:::o;5196:201::-;5279:4;5296:13;5312:12;:10;:12::i;:::-;5296:28;;5335:32;5344:5;5351:7;5360:6;5335:8;:32::i;:::-;5385:4;5378:11;;;5196:201;;;;:::o;4585:108::-;4646:7;4673:12;;4666:19;;4585:108;:::o;5405:295::-;5536:4;5553:15;5571:12;:10;:12::i;:::-;5553:30;;5594:38;5610:4;5616:7;5625:6;5594:15;:38::i;:::-;5643:27;5653:4;5659:2;5663:6;5643:9;:27::i;:::-;5688:4;5681:11;;;5405:295;;;;;:::o;4484:93::-;4542:5;4567:2;4560:9;;4484:93;:::o;5708:238::-;5796:4;5813:13;5829:12;:10;:12::i;:::-;5813:28;;5852:64;5861:5;5868:7;5905:10;5877:25;5887:5;5894:7;5877:9;:25::i;:::-;:38;;;;:::i;:::-;5852:8;:64::i;:::-;5934:4;5927:11;;;5708:238;;;;:::o;4701:127::-;4775:7;4802:9;:18;4812:7;4802:18;;;;;;;;;;;;;;;;4795:25;;4701:127;;;:::o;3042:103::-;2766:13;:11;:13::i;:::-;3107:30:::1;3134:1;3107:18;:30::i;:::-;3042:103::o:0;2807:87::-;2853:7;2880:6;;;;;;;;;;;2873:13;;2807:87;:::o;4372:104::-;4428:13;4461:7;4454:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4372:104;:::o;5954:436::-;6047:4;6064:13;6080:12;:10;:12::i;:::-;6064:28;;6103:24;6130:25;6140:5;6147:7;6130:9;:25::i;:::-;6103:52;;6194:15;6174:16;:35;;6166:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6287:60;6296:5;6303:7;6331:15;6312:16;:34;6287:8;:60::i;:::-;6378:4;6371:11;;;;5954:436;;;;:::o;4836:193::-;4915:4;4932:13;4948:12;:10;:12::i;:::-;4932:28;;4971;4981:5;4988:2;4992:6;4971:9;:28::i;:::-;5017:4;5010:11;;;4836:193;;;;:::o;5037:151::-;5126:7;5153:11;:18;5165:5;5153:18;;;;;;;;;;;;;;;:27;5172:7;5153:27;;;;;;;;;;;;;;;;5146:34;;5037:151;;;;:::o;3153:201::-;2766:13;:11;:13::i;:::-;3262:1:::1;3242:22;;:8;:22;;;;3234:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3318:28;3337:8;3318:18;:28::i;:::-;3153:201:::0;:::o;946:98::-;999:7;1026:10;1019:17;;946:98;:::o;8485:380::-;8638:1;8621:19;;:5;:19;;;;8613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8719:1;8700:21;;:7;:21;;;;8692:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8803:6;8773:11;:18;8785:5;8773:18;;;;;;;;;;;;;;;:27;8792:7;8773:27;;;;;;;;;;;;;;;:36;;;;8841:7;8825:32;;8834:5;8825:32;;;8850:6;8825:32;;;;;;:::i;:::-;;;;;;;;8485:380;;;:::o;8873:453::-;9008:24;9035:25;9045:5;9052:7;9035:9;:25::i;:::-;9008:52;;9095:17;9075:16;:37;9071:248;;9157:6;9137:16;:26;;9129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9241:51;9250:5;9257:7;9285:6;9266:16;:25;9241:8;:51::i;:::-;9071:248;8873:453;;;;:::o;6398:840::-;6545:1;6529:18;;:4;:18;;;;6521:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6622:1;6608:16;;:2;:16;;;;6600:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6677:38;6698:4;6704:2;6708:6;6677:20;:38::i;:::-;6728:19;6750:9;:15;6760:4;6750:15;;;;;;;;;;;;;;;;6728:37;;6799:6;6784:11;:21;;6776:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6916:6;6902:11;:20;6884:9;:15;6894:4;6884:15;;;;;;;;;;;;;;;:38;;;;7119:6;7102:9;:13;7112:2;7102:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;7169:2;7154:26;;7163:4;7154:26;;;7173:6;7154:26;;;;;;:::i;:::-;;;;;;;;7193:37;7213:4;7219:2;7223:6;7193:19;:37::i;:::-;6398:840;;;;:::o;2902:132::-;2977:12;:10;:12::i;:::-;2966:23;;:7;:5;:7::i;:::-;:23;;;2958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2902:132::o;3362:191::-;3436:16;3455:6;;;;;;;;;;;3436:25;;3481:8;3472:6;;:17;;;;;;;;;;;;;;;;;;3536:8;3505:40;;3526:8;3505:40;;;;;;;;;;;;3362:191;;:::o;9334:125::-;;;;:::o;9467:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:327::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:31;3935:1;3930:3;3926:11;3919:52;3997:2;3992:3;3988:12;3981:19;;3825:181;;;:::o;4012:370::-;;4175:67;4239:2;4234:3;4175:67;:::i;:::-;4168:74;;4272:34;4268:1;4263:3;4259:11;4252:55;4338:8;4333:2;4328:3;4324:12;4317:30;4373:2;4368:3;4364:12;4357:19;;4158:224;;;:::o;4388:330::-;;4551:67;4615:2;4610:3;4551:67;:::i;:::-;4544:74;;4648:34;4644:1;4639:3;4635:11;4628:55;4709:2;4704:3;4700:12;4693:19;;4534:184;;;:::o;4724:369::-;;4887:67;4951:2;4946:3;4887:67;:::i;:::-;4880:74;;4984:34;4980:1;4975:3;4971:11;4964:55;5050:7;5045:2;5040:3;5036:12;5029:29;5084:2;5079:3;5075:12;5068:19;;4870:223;;;:::o;5099:368::-;;5262:67;5326:2;5321:3;5262:67;:::i;:::-;5255:74;;5359:34;5355:1;5350:3;5346:11;5339:55;5425:6;5420:2;5415:3;5411:12;5404:28;5458:2;5453:3;5449:12;5442:19;;5245:222;;;:::o;5473:369::-;;5636:67;5700:2;5695:3;5636:67;:::i;:::-;5629:74;;5733:34;5729:1;5724:3;5720:11;5713:55;5799:7;5794:2;5789:3;5785:12;5778:29;5833:2;5828:3;5824:12;5817:19;;5619:223;;;:::o;5848:118::-;5935:24;5953:5;5935:24;:::i;:::-;5930:3;5923:37;5913:53;;:::o;5972:112::-;6055:22;6071:5;6055:22;:::i;:::-;6050:3;6043:35;6033:51;;:::o;6090:222::-;;6221:2;6210:9;6206:18;6198:26;;6234:71;6302:1;6291:9;6287:17;6278:6;6234:71;:::i;:::-;6188:124;;;;:::o;6318:210::-;;6443:2;6432:9;6428:18;6420:26;;6456:65;6518:1;6507:9;6503:17;6494:6;6456:65;:::i;:::-;6410:118;;;;:::o;6534:313::-;;6685:2;6674:9;6670:18;6662:26;;6734:9;6728:4;6724:20;6720:1;6709:9;6705:17;6698:47;6762:78;6835:4;6826:6;6762:78;:::i;:::-;6754:86;;6652:195;;;;:::o;6853:419::-;;7057:2;7046:9;7042:18;7034:26;;7106:9;7100:4;7096:20;7092:1;7081:9;7077:17;7070:47;7134:131;7260:4;7134:131;:::i;:::-;7126:139;;7024:248;;;:::o;7278:419::-;;7482:2;7471:9;7467:18;7459:26;;7531:9;7525:4;7521:20;7517:1;7506:9;7502:17;7495:47;7559:131;7685:4;7559:131;:::i;:::-;7551:139;;7449:248;;;:::o;7703:419::-;;7907:2;7896:9;7892:18;7884:26;;7956:9;7950:4;7946:20;7942:1;7931:9;7927:17;7920:47;7984:131;8110:4;7984:131;:::i;:::-;7976:139;;7874:248;;;:::o;8128:419::-;;8332:2;8321:9;8317:18;8309:26;;8381:9;8375:4;8371:20;8367:1;8356:9;8352:17;8345:47;8409:131;8535:4;8409:131;:::i;:::-;8401:139;;8299:248;;;:::o;8553:419::-;;8757:2;8746:9;8742:18;8734:26;;8806:9;8800:4;8796:20;8792:1;8781:9;8777:17;8770:47;8834:131;8960:4;8834:131;:::i;:::-;8826:139;;8724:248;;;:::o;8978:419::-;;9182:2;9171:9;9167:18;9159:26;;9231:9;9225:4;9221:20;9217:1;9206:9;9202:17;9195:47;9259:131;9385:4;9259:131;:::i;:::-;9251:139;;9149:248;;;:::o;9403:419::-;;9607:2;9596:9;9592:18;9584:26;;9656:9;9650:4;9646:20;9642:1;9631:9;9627:17;9620:47;9684:131;9810:4;9684:131;:::i;:::-;9676:139;;9574:248;;;:::o;9828:419::-;;10032:2;10021:9;10017:18;10009:26;;10081:9;10075:4;10071:20;10067:1;10056:9;10052:17;10045:47;10109:131;10235:4;10109:131;:::i;:::-;10101:139;;9999:248;;;:::o;10253:419::-;;10457:2;10446:9;10442:18;10434:26;;10506:9;10500:4;10496:20;10492:1;10481:9;10477:17;10470:47;10534:131;10660:4;10534:131;:::i;:::-;10526:139;;10424:248;;;:::o;10678:222::-;;10809:2;10798:9;10794:18;10786:26;;10822:71;10890:1;10879:9;10875:17;10866:6;10822:71;:::i;:::-;10776:124;;;;:::o;10906:214::-;;11033:2;11022:9;11018:18;11010:26;;11046:67;11110:1;11099:9;11095:17;11086:6;11046:67;:::i;:::-;11000:120;;;;:::o;11126:99::-;;11212:5;11206:12;11196:22;;11185:40;;;:::o;11231:169::-;;11349:6;11344:3;11337:19;11389:4;11384:3;11380:14;11365:29;;11327:73;;;;:::o;11406:305::-;;11465:20;11483:1;11465:20;:::i;:::-;11460:25;;11499:20;11517:1;11499:20;:::i;:::-;11494:25;;11653:1;11585:66;11581:74;11578:1;11575:81;11572:2;;;11659:18;;:::i;:::-;11572:2;11703:1;11700;11696:9;11689:16;;11450:261;;;;:::o;11717:96::-;;11783:24;11801:5;11783:24;:::i;:::-;11772:35;;11762:51;;;:::o;11819:90::-;;11896:5;11889:13;11882:21;11871:32;;11861:48;;;:::o;11915:126::-;;11992:42;11985:5;11981:54;11970:65;;11960:81;;;:::o;12047:77::-;;12113:5;12102:16;;12092:32;;;:::o;12130:86::-;;12205:4;12198:5;12194:16;12183:27;;12173:43;;;:::o;12222:307::-;12290:1;12300:113;12314:6;12311:1;12308:13;12300:113;;;12399:1;12394:3;12390:11;12384:18;12380:1;12375:3;12371:11;12364:39;12336:2;12333:1;12329:10;12324:15;;12300:113;;;12431:6;12428:1;12425:13;12422:2;;;12511:1;12502:6;12497:3;12493:16;12486:27;12422:2;12271:258;;;;:::o;12535:320::-;;12616:1;12610:4;12606:12;12596:22;;12663:1;12657:4;12653:12;12684:18;12674:2;;12740:4;12732:6;12728:17;12718:27;;12674:2;12802;12794:6;12791:14;12771:18;12768:38;12765:2;;;12821:18;;:::i;:::-;12765:2;12586:269;;;;:::o;12861:180::-;12909:77;12906:1;12899:88;13006:4;13003:1;12996:15;13030:4;13027:1;13020:15;13047:180;13095:77;13092:1;13085:88;13192:4;13189:1;13182:15;13216:4;13213:1;13206:15;13233:102;;13325:2;13321:7;13316:2;13309:5;13305:14;13301:28;13291:38;;13281:54;;;:::o;13341:122::-;13414:24;13432:5;13414:24;:::i;:::-;13407:5;13404:35;13394:2;;13453:1;13450;13443:12;13394:2;13384:79;:::o;13469:122::-;13542:24;13560:5;13542:24;:::i;:::-;13535:5;13532:35;13522:2;;13581:1;13578;13571:12;13522:2;13512:79;:::o

Swarm Source

ipfs://21eb5186bd70a1fd3674127d28b1861e5524462cac9cc9aad27a327c73e48efb
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.