ETH Price: $2,837.20 (+3.35%)
Gas: 1.1 Gwei
 

Overview

Max Total Supply

1,100,000 EDM

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
6,366.13 EDM

Value
$0.00
0x139f1eb0308aef38e50e7b597a87a2c7a8d42a55
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:
airdrop

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: edmc.sol
/**
 *Submitted for verification at Etherscan.io on 2020-11-16
*/

/**
 *Submitted for verification at Etherscan.io on 2020-11-13
*/

/**
 *Submitted for verification at Etherscan.io on 2020-09-30
*/

pragma solidity ^0.5.2;
import "./edm.sol";


/**
 * @title EternalStorage
 * @dev This contract holds all the necessary state variables to carry out the storage of any contract.
 */
contract EternalStorage {

    mapping(bytes32 => uint256) internal uintStorage;
    mapping(bytes32 => string) internal stringStorage;
    mapping(bytes32 => address) internal addressStorage;
    mapping(bytes32 => bytes) internal bytesStorage;
    mapping(bytes32 => bool) internal boolStorage;
    mapping(bytes32 => int256) internal intStorage;

}
/**
 * @title Ownable
 * @dev This contract has an owner address providing basic authorization control
 */
contract Ownable is EternalStorage {
    /**
    * @dev Event to show ownership has been transferred
    * @param previousOwner representing the address of the previous owner
    * @param newOwner representing the address of the new owner
    */
    event OwnershipTransferred(address previousOwner, address newOwner);
    
    address ownerAddress;
    
    constructor () public{
        ownerAddress = msg.sender;
    }
    
    /**
    * @dev Throws if called by any account other than the owner.
    */
    modifier onlyOwner() {
        require(msg.sender == owner());
        _;
    }

    /**
    * @dev Tells the address of the owner
    * @return the address of the owner
    */
    function owner() public view returns (address) {
        return ownerAddress;
    }

    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner the address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        setOwner(newOwner);
    }

    /**
    * @dev Sets a new owner address
    */
    function setOwner(address newOwner) internal {
        emit OwnershipTransferred(owner(), newOwner);
        ownerAddress = newOwner;
    }
}


contract airdrop is Ownable,EDM{
      using SafeMath for uint256;
   address public erc20token;
   constructor() public{
   }
    event Multisended(uint256 total, address tokenAddress);
     struct User{
        uint256 amount;
        uint256 tokenAmount;
    }
    mapping(address=>User) public Users;
    //  function arrayLimit() public view returns(uint256) {
    //     return uintStorage[keccak256(abi.encodePacked("arrayLimit"))];
    // }
    function setTxCount(address customer, uint256 _txCount) private {
        uintStorage[keccak256(abi.encodePacked("txCount", customer))] = _txCount;
    }

    // function setArrayLimit(uint256 _newLimit) public onlyOwner {
    //     require(_newLimit != 0);
    //     uintStorage[keccak256("arrayLimit")] = _newLimit;
    // }
    
    function txCount(address customer) public view returns(uint256) {
        return uintStorage[keccak256(abi.encodePacked("txCount", customer))];
    }
    function register()public view returns(address){
        return msg.sender;
    }
    function multisendToken( address[] calldata _contributors, uint256[] calldata _balances) external onlyOwner  {
            // require(_contributors.length <= arrayLimit());
            uint8 i = 0;
            for (i; i < _contributors.length; i++) {
            transfer(_contributors[i], _balances[i]);
            Users[_contributors[i]].amount=0;
            }
            setTxCount(msg.sender, txCount(msg.sender).add(1));
        }
    function sendMultiEth(address payable [] calldata userAddress,uint256[] calldata _amount) external  onlyOwner {
     
     uint8 i = 0;
        for (i; i < userAddress.length; i++) {
            userAddress[i].transfer(_amount[i]);
            Users[userAddress[i]].tokenAmount=0;
        }
    }
    function buy()external payable{
        require(msg.value>0,"Select amount first");
        Users[msg.sender].amount=msg.value;
    }
    function sell(uint256 _token)external{
        require(_token>0,"Select amount first");
        transfer(address(this),_token);
        Users[msg.sender].tokenAmount=_token;
    }
    function withDraw(uint256 _amount)onlyOwner payable external{
        msg.sender.transfer(_amount);
    }
        
}

File 1 of 2: edm.sol
/**
 *Submitted for verification at Etherscan.io on 2020-11-11
*/

// Educational Decentralized Marchanatized


pragma solidity ^0.5.2;

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

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

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function totalSupply() external view returns (uint256);

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

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

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

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

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.2;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.2;

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    /**
     * @dev Total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
     * @dev Transfer token to a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

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

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.2;


/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.5.2;


/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public {
        _burn(msg.sender, value);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param from address The account whose tokens will be burned.
     * @param value uint256 The amount of token to be burned.
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}

// File: contracts/EDM.sol

pragma solidity ^0.5.2;

contract EDM is ERC20, ERC20Detailed, ERC20Burnable {
    constructor() ERC20Detailed('Educational Decentralized Marchanatized', 'EDM', 6) public {
        _mint(msg.sender, 1100000 * 10 ** 6);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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":false,"internalType":"uint256","name":"total","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"}],"name":"Multisended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":false,"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"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Users","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"erc20token","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_contributors","type":"address[]"},{"internalType":"uint256[]","name":"_balances","type":"uint256[]"}],"name":"multisendToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"register","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_token","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable[]","name":"userAddress","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"sendMultiEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"customer","type":"address"}],"name":"txCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withDraw","outputs":[],"payable":true,"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b5060405180606001604052806027815260200162002037602791396040518060400160405280600381526020017f45444d0000000000000000000000000000000000000000000000000000000000815250600633600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600a9080519060200190620000bd92919062000296565b5081600b9080519060200190620000d692919062000296565b5080600c60006101000a81548160ff021916908360ff1602179055505050506200010d336501001d1bf8006200011360201b60201c565b62000345565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200014e57600080fd5b6200016a816009546200027660201b620019191790919060201c565b600981905550620001c981600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200027660201b620019191790919060201c565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808284019050838110156200028c57600080fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d957805160ff19168380011785556200030a565b828001600101855582156200030a579182015b8281111562000309578251825591602001919060010190620002ec565b5b5090506200031991906200031d565b5090565b6200034291905b808211156200033e57600081600090555060010162000324565b5090565b90565b611ce280620003556000396000f3fe60806040526004361061014b5760003560e01c80638da5cb5b116100b6578063a9059cbb1161006f578063a9059cbb14610837578063c1258f69146108aa578063d2d745b11461090f578063dd62ed3e146109ea578063e4849b3214610a6f578063f2fde38b14610aaa5761014b565b80638da5cb5b1461058c57806395d89b41146105e35780639627633a1461067357806399b956a01461074e578063a457c2d7146107ba578063a6f2ae3a1461082d5761014b565b806323b872dd1161010857806323b872dd1461035a578063313ce567146103ed578063395093511461041e57806342966c681461049157806370a08231146104cc57806379cc6790146105315761014b565b806306fdde0314610150578063095ea7b3146101e057806314174f331461025357806318160ddd146102815780631aa3a008146102ac5780631dcea42714610303575b600080fd5b34801561015c57600080fd5b50610165610afb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ec57600080fd5b506102396004803603604081101561020357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b9d565b604051808215151515815260200191505060405180910390f35b61027f6004803603602081101561026957600080fd5b8101908080359060200190929190505050610bb4565b005b34801561028d57600080fd5b50610296610c3d565b6040518082815260200191505060405180910390f35b3480156102b857600080fd5b506102c1610c47565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561030f57600080fd5b50610318610c4f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561036657600080fd5b506103d36004803603606081101561037d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c75565b604051808215151515815260200191505060405180910390f35b3480156103f957600080fd5b50610402610d26565b604051808260ff1660ff16815260200191505060405180910390f35b34801561042a57600080fd5b506104776004803603604081101561044157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d3d565b604051808215151515815260200191505060405180910390f35b34801561049d57600080fd5b506104ca600480360360208110156104b457600080fd5b8101908080359060200190929190505050610de2565b005b3480156104d857600080fd5b5061051b600480360360208110156104ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610def565b6040518082815260200191505060405180910390f35b34801561053d57600080fd5b5061058a6004803603604081101561055457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e38565b005b34801561059857600080fd5b506105a1610e46565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ef57600080fd5b506105f8610e70565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561063857808201518184015260208101905061061d565b50505050905090810190601f1680156106655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561067f57600080fd5b5061074c6004803603604081101561069657600080fd5b81019080803590602001906401000000008111156106b357600080fd5b8201836020820111156106c557600080fd5b803590602001918460208302840111640100000000831117156106e757600080fd5b90919293919293908035906020019064010000000081111561070857600080fd5b82018360208201111561071a57600080fd5b8035906020019184602083028401116401000000008311171561073c57600080fd5b9091929391929390505050610f12565b005b34801561075a57600080fd5b5061079d6004803603602081101561077157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611073565b604051808381526020018281526020019250505060405180910390f35b3480156107c657600080fd5b50610813600480360360408110156107dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611097565b604051808215151515815260200191505060405180910390f35b61083561113c565b005b34801561084357600080fd5b506108906004803603604081101561085a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111fb565b604051808215151515815260200191505060405180910390f35b3480156108b657600080fd5b506108f9600480360360208110156108cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611212565b6040518082815260200191505060405180910390f35b34801561091b57600080fd5b506109e86004803603604081101561093257600080fd5b810190808035906020019064010000000081111561094f57600080fd5b82018360208201111561096157600080fd5b8035906020019184602083028401116401000000008311171561098357600080fd5b9091929391929390803590602001906401000000008111156109a457600080fd5b8201836020820111156109b657600080fd5b803590602001918460208302840111640100000000831117156109d857600080fd5b90919293919293905050506112ab565b005b3480156109f657600080fd5b50610a5960048036036040811015610a0d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f5565b6040518082815260200191505060405180910390f35b348015610a7b57600080fd5b50610aa860048036036020811015610a9257600080fd5b810190808035906020019092919050505061147c565b005b348015610ab657600080fd5b50610af960048036036020811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611547565b005b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610baa3384846115cc565b6001905092915050565b610bbc610e46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bf357600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c39573d6000803e3d6000fd5b5050565b6000600954905090565b600033905090565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c8284848461172b565b610d1b8433610d1685600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b6115cc565b600190509392505050565b6000600c60009054906101000a900460ff16905090565b6000610dd83384610dd385600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b6115cc565b6001905092915050565b610dec3382611938565b50565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e428282611a8c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f085780601f10610edd57610100808354040283529160200191610f08565b820191906000526020600020905b815481529060010190602001808311610eeb57829003601f168201915b5050505050905090565b610f1a610e46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f5157600080fd5b60008090505b848490508160ff16101561106c5784848260ff16818110610f7457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc84848460ff16818110610fb957fe5b905060200201359081150290604051600060405180830381858888f19350505050158015610feb573d6000803e3d6000fd5b506000600d600087878560ff1681811061100157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508080600101915050610f57565b5050505050565b600d6020528060005260406000206000915090508060000154908060010154905082565b6000611132338461112d85600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b6115cc565b6001905092915050565b600034116111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53656c65637420616d6f756e742066697273740000000000000000000000000081525060200191505060405180910390fd5b34600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550565b600061120833848461172b565b6001905092915050565b60008060008360405160200180807f7478436f756e74000000000000000000000000000000000000000000000000008152506007018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401915050604051602081830303815290604052805190602001208152602001908152602001600020549050919050565b6112b3610e46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112ea57600080fd5b60008090505b848490508160ff1610156113c95761134885858360ff1681811061131057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1684848460ff1681811061133c57fe5b905060200201356111fb565b506000600d600087878560ff1681811061135e57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555080806001019150506112f0565b6113ee336113e960016113db33611212565b61191990919063ffffffff16565b611b33565b5050505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600081116114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53656c65637420616d6f756e742066697273740000000000000000000000000081525060200191505060405180910390fd5b6114fc30826111fb565b5080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555050565b61154f610e46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461158657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c057600080fd5b6115c981611bcb565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561164057600080fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176557600080fd5b6117b781600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061184c81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008282111561190857600080fd5b600082840390508091505092915050565b60008082840190508381101561192e57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561197257600080fd5b611987816009546118f990919063ffffffff16565b6009819055506119df81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611a968282611938565b611b2f8233611b2a84600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b6115cc565b5050565b806000808460405160200180807f7478436f756e74000000000000000000000000000000000000000000000000008152506007018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401915050604051602081830303815290604052805190602001208152602001908152602001600020819055505050565b7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0611bf4610e46565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a180600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fea265627a7a723158200c6659f447415e4437b17dc3e75f1ec28384c12fe114b05f4f2d7ac4690723da64736f6c63430005110032456475636174696f6e616c20446563656e7472616c697a6564204d61726368616e6174697a6564

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80638da5cb5b116100b6578063a9059cbb1161006f578063a9059cbb14610837578063c1258f69146108aa578063d2d745b11461090f578063dd62ed3e146109ea578063e4849b3214610a6f578063f2fde38b14610aaa5761014b565b80638da5cb5b1461058c57806395d89b41146105e35780639627633a1461067357806399b956a01461074e578063a457c2d7146107ba578063a6f2ae3a1461082d5761014b565b806323b872dd1161010857806323b872dd1461035a578063313ce567146103ed578063395093511461041e57806342966c681461049157806370a08231146104cc57806379cc6790146105315761014b565b806306fdde0314610150578063095ea7b3146101e057806314174f331461025357806318160ddd146102815780631aa3a008146102ac5780631dcea42714610303575b600080fd5b34801561015c57600080fd5b50610165610afb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ec57600080fd5b506102396004803603604081101561020357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b9d565b604051808215151515815260200191505060405180910390f35b61027f6004803603602081101561026957600080fd5b8101908080359060200190929190505050610bb4565b005b34801561028d57600080fd5b50610296610c3d565b6040518082815260200191505060405180910390f35b3480156102b857600080fd5b506102c1610c47565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561030f57600080fd5b50610318610c4f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561036657600080fd5b506103d36004803603606081101561037d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c75565b604051808215151515815260200191505060405180910390f35b3480156103f957600080fd5b50610402610d26565b604051808260ff1660ff16815260200191505060405180910390f35b34801561042a57600080fd5b506104776004803603604081101561044157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d3d565b604051808215151515815260200191505060405180910390f35b34801561049d57600080fd5b506104ca600480360360208110156104b457600080fd5b8101908080359060200190929190505050610de2565b005b3480156104d857600080fd5b5061051b600480360360208110156104ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610def565b6040518082815260200191505060405180910390f35b34801561053d57600080fd5b5061058a6004803603604081101561055457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e38565b005b34801561059857600080fd5b506105a1610e46565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ef57600080fd5b506105f8610e70565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561063857808201518184015260208101905061061d565b50505050905090810190601f1680156106655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561067f57600080fd5b5061074c6004803603604081101561069657600080fd5b81019080803590602001906401000000008111156106b357600080fd5b8201836020820111156106c557600080fd5b803590602001918460208302840111640100000000831117156106e757600080fd5b90919293919293908035906020019064010000000081111561070857600080fd5b82018360208201111561071a57600080fd5b8035906020019184602083028401116401000000008311171561073c57600080fd5b9091929391929390505050610f12565b005b34801561075a57600080fd5b5061079d6004803603602081101561077157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611073565b604051808381526020018281526020019250505060405180910390f35b3480156107c657600080fd5b50610813600480360360408110156107dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611097565b604051808215151515815260200191505060405180910390f35b61083561113c565b005b34801561084357600080fd5b506108906004803603604081101561085a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111fb565b604051808215151515815260200191505060405180910390f35b3480156108b657600080fd5b506108f9600480360360208110156108cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611212565b6040518082815260200191505060405180910390f35b34801561091b57600080fd5b506109e86004803603604081101561093257600080fd5b810190808035906020019064010000000081111561094f57600080fd5b82018360208201111561096157600080fd5b8035906020019184602083028401116401000000008311171561098357600080fd5b9091929391929390803590602001906401000000008111156109a457600080fd5b8201836020820111156109b657600080fd5b803590602001918460208302840111640100000000831117156109d857600080fd5b90919293919293905050506112ab565b005b3480156109f657600080fd5b50610a5960048036036040811015610a0d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f5565b6040518082815260200191505060405180910390f35b348015610a7b57600080fd5b50610aa860048036036020811015610a9257600080fd5b810190808035906020019092919050505061147c565b005b348015610ab657600080fd5b50610af960048036036020811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611547565b005b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610baa3384846115cc565b6001905092915050565b610bbc610e46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bf357600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c39573d6000803e3d6000fd5b5050565b6000600954905090565b600033905090565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c8284848461172b565b610d1b8433610d1685600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b6115cc565b600190509392505050565b6000600c60009054906101000a900460ff16905090565b6000610dd83384610dd385600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b6115cc565b6001905092915050565b610dec3382611938565b50565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e428282611a8c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f085780601f10610edd57610100808354040283529160200191610f08565b820191906000526020600020905b815481529060010190602001808311610eeb57829003601f168201915b5050505050905090565b610f1a610e46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f5157600080fd5b60008090505b848490508160ff16101561106c5784848260ff16818110610f7457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc84848460ff16818110610fb957fe5b905060200201359081150290604051600060405180830381858888f19350505050158015610feb573d6000803e3d6000fd5b506000600d600087878560ff1681811061100157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508080600101915050610f57565b5050505050565b600d6020528060005260406000206000915090508060000154908060010154905082565b6000611132338461112d85600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b6115cc565b6001905092915050565b600034116111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53656c65637420616d6f756e742066697273740000000000000000000000000081525060200191505060405180910390fd5b34600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550565b600061120833848461172b565b6001905092915050565b60008060008360405160200180807f7478436f756e74000000000000000000000000000000000000000000000000008152506007018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401915050604051602081830303815290604052805190602001208152602001908152602001600020549050919050565b6112b3610e46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112ea57600080fd5b60008090505b848490508160ff1610156113c95761134885858360ff1681811061131057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1684848460ff1681811061133c57fe5b905060200201356111fb565b506000600d600087878560ff1681811061135e57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555080806001019150506112f0565b6113ee336113e960016113db33611212565b61191990919063ffffffff16565b611b33565b5050505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600081116114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53656c65637420616d6f756e742066697273740000000000000000000000000081525060200191505060405180910390fd5b6114fc30826111fb565b5080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555050565b61154f610e46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461158657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c057600080fd5b6115c981611bcb565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561164057600080fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176557600080fd5b6117b781600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061184c81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191990919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008282111561190857600080fd5b600082840390508091505092915050565b60008082840190508381101561192e57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561197257600080fd5b611987816009546118f990919063ffffffff16565b6009819055506119df81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611a968282611938565b611b2f8233611b2a84600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f990919063ffffffff16565b6115cc565b5050565b806000808460405160200180807f7478436f756e74000000000000000000000000000000000000000000000000008152506007018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401915050604051602081830303815290604052805190602001208152602001908152602001600020819055505050565b7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0611bf4610e46565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a180600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fea265627a7a723158200c6659f447415e4437b17dc3e75f1ec28384c12fe114b05f4f2d7ac4690723da64736f6c63430005110032

Deployed Bytecode Sourcemap

2209:2272:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11377:83:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11377:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11377:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5625:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5625:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5625:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4361:107:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4361:107:1;;;;;;;;;;;;;;;;;:::i;:::-;;3778:91:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3778:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3180:83:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3180:83:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2281:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2281:25:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6246:228:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6246:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6246:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11693:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11693:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7000:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7000:203:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7000:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12142:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12142:79:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12142:79:0;;;;;;;;;;;;;;;;;:::i;:::-;;4088:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4088:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4088:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12475:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12475:95:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12475:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1596:85:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1596:85:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11527:87:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11527:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11527:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3721:303:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3721:303:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3721:303:1;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;3721:303:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;3721:303:1;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3721:303:1;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;3721:303:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;3721:303:1;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3721:303:1;;;;;;;;;;;;:::i;:::-;;2487:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2487:35:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2487:35:1;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;7734:213:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7734:213:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7734:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4030:136:1;;;:::i;:::-;;4838:140:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4838:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4838:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3023:151:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3023:151:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3023:151:1;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3269:446;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3269:446:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3269:446:1;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;3269:446:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;3269:446:1;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3269:446:1;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;3269:446:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;3269:446:1;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3269:446:1;;;;;;;;;;;;:::i;:::-;;4533:131:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4533:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4533:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4172:183:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4172:183:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4172:183:1;;;;;;;;;;;;;;;;;:::i;:::-;;1855:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1855:141:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1855:141:1;;;;;;;;;;;;;;;;;;;:::i;:::-;;11377:83:0;11414:13;11447:5;11440:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11377:83;:::o;5625:148::-;5690:4;5707:36;5716:10;5728:7;5737:5;5707:8;:36::i;:::-;5761:4;5754:11;;5625:148;;;;:::o;4361:107:1:-;1460:7;:5;:7::i;:::-;1446:21;;:10;:21;;;1438:30;;;;;;4432:10;:19;;:28;4452:7;4432:28;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4432:28:1;4361:107;:::o;3778:91:0:-;3822:7;3849:12;;3842:19;;3778:91;:::o;3180:83:1:-;3219:7;3245:10;3238:17;;3180:83;:::o;2281:25::-;;;;;;;;;;;;;:::o;6246:228:0:-;6325:4;6342:26;6352:4;6358:2;6362:5;6342:9;:26::i;:::-;6379:65;6388:4;6394:10;6406:37;6437:5;6406:8;:14;6415:4;6406:14;;;;;;;;;;;;;;;:26;6421:10;6406:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6379:8;:65::i;:::-;6462:4;6455:11;;6246:228;;;;;:::o;11693:83::-;11734:5;11759:9;;;;;;;;;;;11752:16;;11693:83;:::o;7000:203::-;7080:4;7097:76;7106:10;7118:7;7127:45;7161:10;7127:8;:20;7136:10;7127:20;;;;;;;;;;;;;;;:29;7148:7;7127:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;7097:8;:76::i;:::-;7191:4;7184:11;;7000:203;;;;:::o;12142:79::-;12189:24;12195:10;12207:5;12189;:24::i;:::-;12142:79;:::o;4088:106::-;4143:7;4170:9;:16;4180:5;4170:16;;;;;;;;;;;;;;;;4163:23;;4088:106;;;:::o;12475:95::-;12540:22;12550:4;12556:5;12540:9;:22::i;:::-;12475:95;;:::o;1596:85:1:-;1634:7;1661:12;;;;;;;;;;;1654:19;;1596:85;:::o;11527:87:0:-;11566:13;11599:7;11592:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11527:87;:::o;3721:303:1:-;1460:7;:5;:7::i;:::-;1446:21;;:10;:21;;;1438:30;;;;;;3846:7;3856:1;3846:11;;3868:149;3880:11;;:18;;3876:1;:22;;;3868:149;;;3920:11;;3932:1;3920:14;;;;;;;;;;;;;;;;;:23;;:35;3944:7;;3952:1;3944:10;;;;;;;;;;;;;;;3920:35;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3920:35:1;4004:1;3970:5;:21;3976:11;;3988:1;3976:14;;;;;;;;;;;;;;;;;3970:21;;;;;;;;;;;;;;;:33;;:35;;;;3900:3;;;;;;;3868:149;;;1479:1;3721:303;;;;:::o;2487:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7734:213:0:-;7819:4;7836:81;7845:10;7857:7;7866:50;7900:15;7866:8;:20;7875:10;7866:20;;;;;;;;;;;;;;;:29;7887:7;7866:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;7836:8;:81::i;:::-;7935:4;7928:11;;7734:213;;;;:::o;4030:136:1:-;4089:1;4079:9;:11;4071:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4149:9;4124:5;:17;4130:10;4124:17;;;;;;;;;;;;;;;:24;;:34;;;;4030:136::o;4838:140:0:-;4899:4;4916:32;4926:10;4938:2;4942:5;4916:9;:32::i;:::-;4966:4;4959:11;;4838:140;;;;:::o;3023:151:1:-;3078:7;3105:11;:61;3155:8;3127:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;3127:37:1;;;3117:48;;;;;;3105:61;;;;;;;;;;;;3098:68;;3023:151;;;:::o;3269:446::-;1460:7;:5;:7::i;:::-;1446:21;;:10;:21;;;1438:30;;;;;;3456:7;3466:1;3456:11;;3482:157;3494:13;;:20;;3490:1;:24;;;3482:157;;;3536:40;3545:13;;3559:1;3545:16;;;;;;;;;;;;;;;;;3563:9;;3573:1;3563:12;;;;;;;;;;;;;;;3536:8;:40::i;:::-;;3622:1;3591:5;:23;3597:13;;3611:1;3597:16;;;;;;;;;;;;;;;;;3591:23;;;;;;;;;;;;;;;:30;;:32;;;;3516:3;;;;;;;3482:157;;;3653:50;3664:10;3676:26;3700:1;3676:19;3684:10;3676:7;:19::i;:::-;:23;;:26;;;;:::i;:::-;3653:10;:50::i;:::-;1479:1;3269:446;;;;:::o;4533:131:0:-;4605:7;4632:8;:15;4641:5;4632:15;;;;;;;;;;;;;;;:24;4648:7;4632:24;;;;;;;;;;;;;;;;4625:31;;4533:131;;;;:::o;4172:183:1:-;4235:1;4228:6;:8;4220:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4270:30;4287:4;4293:6;4270:8;:30::i;:::-;;4341:6;4311:5;:17;4317:10;4311:17;;;;;;;;;;;;;;;:29;;:36;;;;4172:183;:::o;1855:141::-;1460:7;:5;:7::i;:::-;1446:21;;:10;:21;;;1438:30;;;;;;1956:1;1936:22;;:8;:22;;;;1928:31;;;;;;1970:18;1979:8;1970;:18::i;:::-;1855:141;:::o;9833:254:0:-;9945:1;9926:21;;:7;:21;;;;9918:30;;;;;;9984:1;9967:19;;:5;:19;;;;9959:28;;;;;;10027:5;10000:8;:15;10009:5;10000:15;;;;;;;;;;;;;;;:24;10016:7;10000:24;;;;;;;;;;;;;;;:32;;;;10064:7;10048:31;;10057:5;10048:31;;;10073:5;10048:31;;;;;;;;;;;;;;;;;;9833:254;;;:::o;8174:262::-;8276:1;8262:16;;:2;:16;;;;8254:25;;;;;;8310:26;8330:5;8310:9;:15;8320:4;8310:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;8292:9;:15;8302:4;8292:15;;;;;;;;;;;;;;;:44;;;;8363:24;8381:5;8363:9;:13;8373:2;8363:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;8347:9;:13;8357:2;8347:13;;;;;;;;;;;;;;;:40;;;;8418:2;8403:25;;8412:4;8403:25;;;8422:5;8403:25;;;;;;;;;;;;;;;;;;8174:262;;;:::o;2281:150::-;2339:7;2372:1;2367;:6;;2359:15;;;;;;2385:9;2401:1;2397;:5;2385:17;;2422:1;2415:8;;;2281:150;;;;:::o;2519:::-;2577:7;2597:9;2613:1;2609;:5;2597:17;;2638:1;2633;:6;;2625:15;;;;;;2660:1;2653:8;;;2519:150;;;;:::o;9291:269::-;9385:1;9366:21;;:7;:21;;;;9358:30;;;;;;9416:23;9433:5;9416:12;;:16;;:23;;;;:::i;:::-;9401:12;:38;;;;9471:29;9494:5;9471:9;:18;9481:7;9471:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;9450:9;:18;9460:7;9450:18;;;;;;;;;;;;;;;:50;;;;9542:1;9516:36;;9525:7;9516:36;;;9546:5;9516:36;;;;;;;;;;;;;;;;;;9291:269;;:::o;10486:182::-;10557:21;10563:7;10572:5;10557;:21::i;:::-;10589:71;10598:7;10607:10;10619:40;10653:5;10619:8;:17;10628:7;10619:17;;;;;;;;;;;;;;;:29;10637:10;10619:29;;;;;;;;;;;;;;;;:33;;:40;;;;:::i;:::-;10589:8;:71::i;:::-;10486:182;;:::o;2676:155:1:-;2815:8;2751:11;:61;2801:8;2773:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;2773:37:1;;;2763:48;;;;;;2751:61;;;;;;;;;;;:72;;;;2676:155;;:::o;2058:142::-;2119:39;2140:7;:5;:7::i;:::-;2149:8;2119:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2184:8;2169:12;;:23;;;;;;;;;;;;;;;;;;2058:142;:::o

Swarm Source

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