ETH Price: $3,338.49 (-1.15%)

Token

DEcentralized CArbon tokens (DECA)
 

Overview

Max Total Supply

17,768.457441598135719751 DECA

Holders

112

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Binance 17
Balance
3.7125 DECA

Value
$0.00
0x56eddb7aa87536c09ccc2793473599fd21a8b17f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A token that is a commodity and security. By a historical and mathematical background, the semistable token tends to increase the percentages of the commodity, while the security, as a volatile asset, helps to fund DECA currency. The purpose is a full commodity cryptocurrency and its platform.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DECA

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2020-07-05
*/

//file: Context.sol
pragma solidity 0.5.12;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

//file: IERC20.sol

pragma solidity 0.5.12;

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

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

//file: ERC20.sol
pragma solidity 0.5.12;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        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);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

//file: SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

pragma solidity 0.5.12;

// ----------------------------------------------------------------------------
// 'DECA' DEcentralized CArbon tokens - ITDE (initial token distribution event)
//
// Deployed to : 0x3556A5005D5411603e0115efD9B875FdFb3ad7E9
// Network     : MAIN
// Symbol      : DECA
// Name        : DEcentralized CArbon tokens
// Total supply: Gazillion
// Decimals    : 18
// 
// Designed and wrote by D. Perez Negron <[email protected]> A.K.A p1r0
// Test and Migrations to truffle by vitaliykuzmich
// ----------------------------------------------------------------------------
/**
 * @dev The reason using this instead of openzeppelin, because owner are not 'payable'
 */
contract Ownable is Context {
    address payable private _owner;
    using SafeMath for uint256;
    string public _CCDBAddress;


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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address payable) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address payable newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address payable newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    /**
    *Function that updates the official orbitDB address for carbon credits.
    *Can Only be updated by the current owner
    */
    function updateCCDBAddress(string memory newCCDBAddress) public onlyOwner {
       _CCDBAddress = newCCDBAddress;
    }
}

// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ----------------------------------------------------------------------------
contract DECA is ERC20, Ownable {
    using SafeMath for uint256;
    string constant public symbol = "DECA";
    string constant public name = "DEcentralized CArbon tokens";
    uint8 constant public decimals = 18;
    //for testing change weeks for hours...
    uint public preICOEnds = now + 1 weeks;
    uint public bonus1Ends = now + 3 weeks;
    uint public bonus2Ends = now + 6 weeks;
    uint public endDate = now + 11 weeks;
    bool private _pause = false;

    modifier notPaused() {
        require(!_pause, "crowdsale on pause");
        _;
    }
    function getPause() view public returns (bool){
        return _pause;
    }

    function setPause(bool p) external onlyOwner {
        _pause = p;
    }
    // ------------------------------------------------------------------------
    // 100 DECA Tokens per 1 ETH
    // ------------------------------------------------------------------------
    function() notPaused external payable {
        require(now <= endDate);
        uint tokens;
        uint toOwner;
        uint toSender;
        uint divBy;

        divBy = 40;
        //2.5% extra printed to be 2% of the marketcap, please see README.md
        if (now <= preICOEnds) {
            tokens = msg.value * 300;
        } else if (now > preICOEnds && now <= bonus1Ends) {
            tokens = msg.value * 275;
        } else if (now > bonus1Ends && now <= bonus2Ends) {
            tokens = msg.value * 250;
        } else {
            tokens = msg.value * 225;
        }

        toOwner = tokens.div(divBy);
        //created 2.5% extra to the contract owner to approach 2% total marketcap
        toSender = tokens;
        //tokens that goes to the sender

        _mint(owner(), toOwner);
        _mint(msg.sender, toSender);
    }

    //Add weeks in case ICO gets not enough funds
    function appendWeeks(uint addWeeks ) public onlyOwner {
        require(now >= bonus2Ends && now < endDate);
        // Fix Integer Overflow / Underflow
        require(endDate < (endDate + (addWeeks * 1 weeks)));
        // add weeks to the endDate
        endDate += (addWeeks * 1 weeks);
    }
    
    //Close down the ICO and claim the Ether.
    function getETH() public onlyOwner {
        require(now >= endDate);
        // transfer the ETH balance in the contract to the owner
        owner().transfer(address(this).balance);
    }

    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address payable tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return IERC20(tokenAddress).transfer(owner(), tokens);
    }
}

Contract Security Audit

Contract ABI

[{"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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"_CCDBAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"addWeeks","type":"uint256"}],"name":"appendWeeks","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bonus1Ends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bonus2Ends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"endDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getETH","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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 payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"preICOEnds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"p","type":"bool"}],"name":"setPause","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newCCDBAddress","type":"string"}],"name":"updateCCDBAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405262093a804201600555621baf80420160065562375f0042016007556265838042016008556000600960006101000a81548160ff02191690831515021790555061005161011360201b60201c565b600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361011b565b600033905090565b6122db8061012a6000396000f3fe6080604052600436106101815760003560e01c80638f32d59b116100d1578063d76e0c921161008a578063e8294aad11610064578063e8294aad14610ad1578063ef0b44db14610afc578063f2fde38b14610b27578063fc5fc8ae14610b7857610181565b8063d76e0c921461099e578063dc39d06d146109d9578063dd62ed3e14610a4c57610181565b80638f32d59b1461079157806395d89b41146107c0578063a457c2d714610850578063a9059cbb146108c3578063bedb86fb14610936578063c24a0f8b1461097357610181565b806334dc584d1161013e57806370a082311161011857806370a08231146105f6578063715018a61461065b5780637a26788e146106725780638da5cb5b1461073a57610181565b806334dc584d146104c457806339509351146105545780633e3ca9d3146105c757610181565b806306fdde03146102bb578063095ea7b31461034b57806314f6c3be146103be57806318160ddd146103d557806323b872dd14610400578063313ce56714610493575b600960009054906101000a900460ff1615610204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f63726f776473616c65206f6e207061757365000000000000000000000000000081525060200191505060405180910390fd5b60085442111561021357600080fd5b6000806000806028905060055442116102325761012c34029350610282565b6005544211801561024557506006544211155b156102565761011334029350610281565b6006544211801561026957506007544211155b156102795760fa34029350610280565b60e1340293505b5b5b6102958185610ba390919063ffffffff16565b92508391506102ab6102a5610bed565b84610c17565b6102b53383610c17565b50505050005b3480156102c757600080fd5b506102d0610dd2565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103105780820151818401526020810190506102f5565b50505050905090810190601f16801561033d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035757600080fd5b506103a46004803603604081101561036e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e0b565b604051808215151515815260200191505060405180910390f35b3480156103ca57600080fd5b506103d3610e29565b005b3480156103e157600080fd5b506103ea610f19565b6040518082815260200191505060405180910390f35b34801561040c57600080fd5b506104796004803603606081101561042357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f23565b604051808215151515815260200191505060405180910390f35b34801561049f57600080fd5b506104a8610ffc565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104d057600080fd5b506104d9611001565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105195780820151818401526020810190506104fe565b50505050905090810190601f1680156105465780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561056057600080fd5b506105ad6004803603604081101561057757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061109f565b604051808215151515815260200191505060405180910390f35b3480156105d357600080fd5b506105dc611152565b604051808215151515815260200191505060405180910390f35b34801561060257600080fd5b506106456004803603602081101561061957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611169565b6040518082815260200191505060405180910390f35b34801561066757600080fd5b506106706111b1565b005b34801561067e57600080fd5b506107386004803603602081101561069557600080fd5b81019080803590602001906401000000008111156106b257600080fd5b8201836020820111156106c457600080fd5b803590602001918460018302840111640100000000831117156106e657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506112ec565b005b34801561074657600080fd5b5061074f610bed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079d57600080fd5b506107a6611380565b604051808215151515815260200191505060405180910390f35b3480156107cc57600080fd5b506107d56113df565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108155780820151818401526020810190506107fa565b50505050905090810190601f1680156108425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561085c57600080fd5b506108a96004803603604081101561087357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611418565b604051808215151515815260200191505060405180910390f35b3480156108cf57600080fd5b5061091c600480360360408110156108e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114e5565b604051808215151515815260200191505060405180910390f35b34801561094257600080fd5b506109716004803603602081101561095957600080fd5b81019080803515159060200190929190505050611503565b005b34801561097f57600080fd5b5061098861159a565b6040518082815260200191505060405180910390f35b3480156109aa57600080fd5b506109d7600480360360208110156109c157600080fd5b81019080803590602001909291905050506115a0565b005b3480156109e557600080fd5b50610a32600480360360408110156109fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611665565b604051808215151515815260200191505060405180910390f35b348015610a5857600080fd5b50610abb60048036036040811015610a6f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117b2565b6040518082815260200191505060405180910390f35b348015610add57600080fd5b50610ae6611839565b6040518082815260200191505060405180910390f35b348015610b0857600080fd5b50610b1161183f565b6040518082815260200191505060405180910390f35b348015610b3357600080fd5b50610b7660048036036020811015610b4a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611845565b005b348015610b8457600080fd5b50610b8d6118cb565b6040518082815260200191505060405180910390f35b6000610be583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118d1565b905092915050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b610ccf8160025461199790919063ffffffff16565b600281905550610d26816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461199790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6040518060400160405280601b81526020017f444563656e7472616c697a656420434172626f6e20746f6b656e73000000000081525081565b6000610e1f610e18611a1f565b8484611a27565b6001905092915050565b610e31611380565b610ea3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600854421015610eb257600080fd5b610eba610bed565b73ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610f16573d6000803e3d6000fd5b50565b6000600254905090565b6000610f30848484611c1e565b610ff184610f3c611a1f565b610fec8560405180606001604052806028815260200161221160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fa2611a1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed49092919063ffffffff16565b611a27565b600190509392505050565b601281565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110975780601f1061106c57610100808354040283529160200191611097565b820191906000526020600020905b81548152906001019060200180831161107a57829003601f168201915b505050505081565b60006111486110ac611a1f565b8461114385600160006110bd611a1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461199790919063ffffffff16565b611a27565b6001905092915050565b6000600960009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b9611380565b61122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112f4611380565b611366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806004908051906020019061137c9291906120da565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113c3611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6040518060400160405280600481526020017f444543410000000000000000000000000000000000000000000000000000000081525081565b60006114db611425611a1f565b846114d685604051806060016040528060258152602001612282602591396001600061144f611a1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed49092919063ffffffff16565b611a27565b6001905092915050565b60006114f96114f2611a1f565b8484611c1e565b6001905092915050565b61150b611380565b61157d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60085481565b6115a8611380565b61161a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600754421015801561162d575060085442105b61163657600080fd5b62093a808102600854016008541061164d57600080fd5b62093a80810260086000828254019250508190555050565b600061166f611380565b6116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611705610bed565b846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561176f57600080fd5b505af1158015611783573d6000803e3d6000fd5b505050506040513d602081101561179957600080fd5b8101908080519060200190929190505050905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b60075481565b61184d611380565b6118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6118c881611f94565b50565b60055481565b6000808311829061197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611942578082015181840152602081019050611927565b50505050905090810190601f16801561196f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161198957fe5b049050809150509392505050565b600080828401905083811015611a15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061225e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121c96022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ca4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122396025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806121806023913960400191505060405180910390fd5b611d95816040518060600160405280602681526020016121eb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e28816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461199790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611f81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f46578082015181840152602081019050611f2b565b50505050905090810190601f168015611f735780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561201a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806121a36026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061211b57805160ff1916838001178555612149565b82800160010185558215612149579182015b8281111561214857825182559160200191906001019061212d565b5b509050612156919061215a565b5090565b61217c91905b80821115612178576000816000905550600101612160565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820d7952f4b5dbbff4578066b622c3690237b069d558d484d4edc4b5140eb000fd364736f6c634300050c0032

Deployed Bytecode

0x6080604052600436106101815760003560e01c80638f32d59b116100d1578063d76e0c921161008a578063e8294aad11610064578063e8294aad14610ad1578063ef0b44db14610afc578063f2fde38b14610b27578063fc5fc8ae14610b7857610181565b8063d76e0c921461099e578063dc39d06d146109d9578063dd62ed3e14610a4c57610181565b80638f32d59b1461079157806395d89b41146107c0578063a457c2d714610850578063a9059cbb146108c3578063bedb86fb14610936578063c24a0f8b1461097357610181565b806334dc584d1161013e57806370a082311161011857806370a08231146105f6578063715018a61461065b5780637a26788e146106725780638da5cb5b1461073a57610181565b806334dc584d146104c457806339509351146105545780633e3ca9d3146105c757610181565b806306fdde03146102bb578063095ea7b31461034b57806314f6c3be146103be57806318160ddd146103d557806323b872dd14610400578063313ce56714610493575b600960009054906101000a900460ff1615610204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f63726f776473616c65206f6e207061757365000000000000000000000000000081525060200191505060405180910390fd5b60085442111561021357600080fd5b6000806000806028905060055442116102325761012c34029350610282565b6005544211801561024557506006544211155b156102565761011334029350610281565b6006544211801561026957506007544211155b156102795760fa34029350610280565b60e1340293505b5b5b6102958185610ba390919063ffffffff16565b92508391506102ab6102a5610bed565b84610c17565b6102b53383610c17565b50505050005b3480156102c757600080fd5b506102d0610dd2565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103105780820151818401526020810190506102f5565b50505050905090810190601f16801561033d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035757600080fd5b506103a46004803603604081101561036e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e0b565b604051808215151515815260200191505060405180910390f35b3480156103ca57600080fd5b506103d3610e29565b005b3480156103e157600080fd5b506103ea610f19565b6040518082815260200191505060405180910390f35b34801561040c57600080fd5b506104796004803603606081101561042357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f23565b604051808215151515815260200191505060405180910390f35b34801561049f57600080fd5b506104a8610ffc565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104d057600080fd5b506104d9611001565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105195780820151818401526020810190506104fe565b50505050905090810190601f1680156105465780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561056057600080fd5b506105ad6004803603604081101561057757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061109f565b604051808215151515815260200191505060405180910390f35b3480156105d357600080fd5b506105dc611152565b604051808215151515815260200191505060405180910390f35b34801561060257600080fd5b506106456004803603602081101561061957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611169565b6040518082815260200191505060405180910390f35b34801561066757600080fd5b506106706111b1565b005b34801561067e57600080fd5b506107386004803603602081101561069557600080fd5b81019080803590602001906401000000008111156106b257600080fd5b8201836020820111156106c457600080fd5b803590602001918460018302840111640100000000831117156106e657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506112ec565b005b34801561074657600080fd5b5061074f610bed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079d57600080fd5b506107a6611380565b604051808215151515815260200191505060405180910390f35b3480156107cc57600080fd5b506107d56113df565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108155780820151818401526020810190506107fa565b50505050905090810190601f1680156108425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561085c57600080fd5b506108a96004803603604081101561087357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611418565b604051808215151515815260200191505060405180910390f35b3480156108cf57600080fd5b5061091c600480360360408110156108e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114e5565b604051808215151515815260200191505060405180910390f35b34801561094257600080fd5b506109716004803603602081101561095957600080fd5b81019080803515159060200190929190505050611503565b005b34801561097f57600080fd5b5061098861159a565b6040518082815260200191505060405180910390f35b3480156109aa57600080fd5b506109d7600480360360208110156109c157600080fd5b81019080803590602001909291905050506115a0565b005b3480156109e557600080fd5b50610a32600480360360408110156109fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611665565b604051808215151515815260200191505060405180910390f35b348015610a5857600080fd5b50610abb60048036036040811015610a6f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117b2565b6040518082815260200191505060405180910390f35b348015610add57600080fd5b50610ae6611839565b6040518082815260200191505060405180910390f35b348015610b0857600080fd5b50610b1161183f565b6040518082815260200191505060405180910390f35b348015610b3357600080fd5b50610b7660048036036020811015610b4a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611845565b005b348015610b8457600080fd5b50610b8d6118cb565b6040518082815260200191505060405180910390f35b6000610be583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118d1565b905092915050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b610ccf8160025461199790919063ffffffff16565b600281905550610d26816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461199790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6040518060400160405280601b81526020017f444563656e7472616c697a656420434172626f6e20746f6b656e73000000000081525081565b6000610e1f610e18611a1f565b8484611a27565b6001905092915050565b610e31611380565b610ea3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600854421015610eb257600080fd5b610eba610bed565b73ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610f16573d6000803e3d6000fd5b50565b6000600254905090565b6000610f30848484611c1e565b610ff184610f3c611a1f565b610fec8560405180606001604052806028815260200161221160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fa2611a1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed49092919063ffffffff16565b611a27565b600190509392505050565b601281565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110975780601f1061106c57610100808354040283529160200191611097565b820191906000526020600020905b81548152906001019060200180831161107a57829003601f168201915b505050505081565b60006111486110ac611a1f565b8461114385600160006110bd611a1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461199790919063ffffffff16565b611a27565b6001905092915050565b6000600960009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b9611380565b61122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112f4611380565b611366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806004908051906020019061137c9291906120da565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113c3611a1f565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6040518060400160405280600481526020017f444543410000000000000000000000000000000000000000000000000000000081525081565b60006114db611425611a1f565b846114d685604051806060016040528060258152602001612282602591396001600061144f611a1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed49092919063ffffffff16565b611a27565b6001905092915050565b60006114f96114f2611a1f565b8484611c1e565b6001905092915050565b61150b611380565b61157d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60085481565b6115a8611380565b61161a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600754421015801561162d575060085442105b61163657600080fd5b62093a808102600854016008541061164d57600080fd5b62093a80810260086000828254019250508190555050565b600061166f611380565b6116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611705610bed565b846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561176f57600080fd5b505af1158015611783573d6000803e3d6000fd5b505050506040513d602081101561179957600080fd5b8101908080519060200190929190505050905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b60075481565b61184d611380565b6118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6118c881611f94565b50565b60055481565b6000808311829061197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611942578082015181840152602081019050611927565b50505050905090810190601f16801561196f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161198957fe5b049050809150509392505050565b600080828401905083811015611a15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061225e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121c96022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ca4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122396025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806121806023913960400191505060405180910390fd5b611d95816040518060600160405280602681526020016121eb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e28816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461199790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611f81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f46578082015181840152602081019050611f2b565b50505050905090810190601f168015611f735780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561201a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806121a36026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061211b57805160ff1916838001178555612149565b82800160010185558215612149579182015b8281111561214857825182559160200191906001019061212d565b5b509050612156919061215a565b5090565b61217c91905b80821115612178576000816000905550600101612160565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820d7952f4b5dbbff4578066b622c3690237b069d558d484d4edc4b5140eb000fd364736f6c634300050c0032

Deployed Bytecode Sourcemap

21086:2859:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21611:6;;;;;;;;;;;21610:7;21602:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22092:7;;22085:3;:14;;22077:23;;;;;;22111:11;22133:12;22156:13;22180:10;22211:2;22203:10;;22313;;22306:3;:17;22302:331;;22361:3;22349:9;:15;22340:24;;22302:331;;;22392:10;;22386:3;:16;:37;;;;;22413:10;;22406:3;:17;;22386:37;22382:251;;;22461:3;22449:9;:15;22440:24;;22382:251;;;22492:10;;22486:3;:16;:37;;;;;22513:10;;22506:3;:17;;22486:37;22482:151;;;22561:3;22549:9;:15;22540:24;;22482:151;;;22618:3;22606:9;:15;22597:24;;22482:151;22382:251;22302:331;22655:17;22666:5;22655:6;:10;;:17;;;;:::i;:::-;22645:27;;22777:6;22766:17;;22838:23;22844:7;:5;:7::i;:::-;22853;22838:5;:23::i;:::-;22872:27;22878:10;22890:8;22872:5;:27::i;:::-;21651:1;;;;21086:2859;21203:59;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21203:59: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;21203:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6513:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6513:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6513:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23327:193;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23327:193:0;;;:::i;:::-;;5534:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5534:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7137:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7137:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7137:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21269:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21269:35:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18547:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18547:26: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;18547:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7850:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7850:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7850:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21666:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21666:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5688:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5688:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5688:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19795:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19795:140:0;;;:::i;:::-;;20699:121;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20699:121:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20699:121:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;20699:121:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20699:121:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;20699:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;20699:121:0;;;;;;;;;;;;;;;:::i;:::-;;18976:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18976:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19350:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19350:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21158:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21158:38: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;21158:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8563:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8563:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8563:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6011:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6011:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6011:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21752:74;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21752:74:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21752:74:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21491:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21491:36:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22966:302;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22966:302:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22966:302:0;;;;;;;;;;;;;;;;;:::i;:::-;;23756:186;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23756:186:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23756:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6232:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6232:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6232:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21401:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21401:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21446;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21446:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20090:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20090:117:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20090:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21356:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21356:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15451:132;15509:7;15536:39;15540:1;15543;15536:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;15529:46;;15451:132;;;;:::o;18976:87::-;19014:15;19049:6;;;;;;;;;;;19042:13;;18976:87;:::o;10066:308::-;10161:1;10142:21;;:7;:21;;;;10134:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10227:24;10244:6;10227:12;;:16;;:24;;;;:::i;:::-;10212:12;:39;;;;10283:30;10306:6;10283:9;:18;10293:7;10283:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;10262:9;:18;10272:7;10262:18;;;;;;;;;;;;;;;:51;;;;10350:7;10329:37;;10346:1;10329:37;;;10359:6;10329:37;;;;;;;;;;;;;;;;;;10066:308;;:::o;21203:59::-;;;;;;;;;;;;;;;;;;;:::o;6513:152::-;6579:4;6596:39;6605:12;:10;:12::i;:::-;6619:7;6628:6;6596:8;:39::i;:::-;6653:4;6646:11;;6513:152;;;;:::o;23327:193::-;19196:9;:7;:9::i;:::-;19188:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23388:7;;23381:3;:14;;23373:23;;;;;;23473:7;:5;:7::i;:::-;:16;;:39;23498:4;23490:21;;;23473:39;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23473:39:0;23327:193::o;5534:91::-;5578:7;5605:12;;5598:19;;5534:91;:::o;7137:304::-;7226:4;7243:36;7253:6;7261:9;7272:6;7243:9;:36::i;:::-;7290:121;7299:6;7307:12;:10;:12::i;:::-;7321:89;7359:6;7321:89;;;;;;;;;;;;;;;;;:11;:19;7333:6;7321:19;;;;;;;;;;;;;;;:33;7341:12;:10;:12::i;:::-;7321:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;7290:8;:121::i;:::-;7429:4;7422:11;;7137:304;;;;;:::o;21269:35::-;21302:2;21269:35;:::o;18547:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7850:210::-;7930:4;7947:83;7956:12;:10;:12::i;:::-;7970:7;7979:50;8018:10;7979:11;:25;7991:12;:10;:12::i;:::-;7979:25;;;;;;;;;;;;;;;:34;8005:7;7979:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;7947:8;:83::i;:::-;8048:4;8041:11;;7850:210;;;;:::o;21666:78::-;21707:4;21730:6;;;;;;;;;;;21723:13;;21666:78;:::o;5688:110::-;5745:7;5772:9;:18;5782:7;5772:18;;;;;;;;;;;;;;;;5765:25;;5688:110;;;:::o;19795:140::-;19196:9;:7;:9::i;:::-;19188:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19894:1;19857:40;;19878:6;;;;;;;;;;;19857:40;;;;;;;;;;;;19925:1;19908:6;;:19;;;;;;;;;;;;;;;;;;19795:140::o;20699:121::-;19196:9;:7;:9::i;:::-;19188:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20798:14;20783:12;:29;;;;;;;;;;;;:::i;:::-;;20699:121;:::o;19350:94::-;19390:4;19430:6;;;;;;;;;;;19414:22;;:12;:10;:12::i;:::-;:22;;;19407:29;;19350:94;:::o;21158:38::-;;;;;;;;;;;;;;;;;;;:::o;8563:261::-;8648:4;8665:129;8674:12;:10;:12::i;:::-;8688:7;8697:96;8736:15;8697:96;;;;;;;;;;;;;;;;;:11;:25;8709:12;:10;:12::i;:::-;8697:25;;;;;;;;;;;;;;;:34;8723:7;8697:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;8665:8;:129::i;:::-;8812:4;8805:11;;8563:261;;;;:::o;6011:158::-;6080:4;6097:42;6107:12;:10;:12::i;:::-;6121:9;6132:6;6097:9;:42::i;:::-;6157:4;6150:11;;6011:158;;;;:::o;21752:74::-;19196:9;:7;:9::i;:::-;19188:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21817:1;21808:6;;:10;;;;;;;;;;;;;;;;;;21752:74;:::o;21491:36::-;;;;:::o;22966:302::-;19196:9;:7;:9::i;:::-;19188:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23046:10;;23039:3;:17;;:34;;;;;23066:7;;23060:3;:13;23039:34;23031:43;;;;;;23171:7;23160:8;:18;23149:7;;:30;23138:7;;:42;23130:51;;;;;;23252:7;23241:8;:18;23229:7;;:31;;;;;;;;;;;22966:302;:::o;23756:186::-;23856:12;19196:9;:7;:9::i;:::-;19188:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23895:12;23888:29;;;23918:7;:5;:7::i;:::-;23927:6;23888:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23888:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23888:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23888:46:0;;;;;;;;;;;;;;;;23881:53;;23756:186;;;;:::o;6232:134::-;6304:7;6331:11;:18;6343:5;6331:18;;;;;;;;;;;;;;;:27;6350:7;6331:27;;;;;;;;;;;;;;;;6324:34;;6232:134;;;;:::o;21401:38::-;;;;:::o;21446:::-;;;;:::o;20090:117::-;19196:9;:7;:9::i;:::-;19188:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20171:28;20190:8;20171:18;:28::i;:::-;20090:117;:::o;21356:38::-;;;;:::o;16113:345::-;16199:7;16298:1;16294;:5;16301:12;16286:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;16286:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16325:9;16341:1;16337;:5;;;;;;16325:17;;16449:1;16442:8;;;16113:345;;;;;:::o;13140:181::-;13198:7;13218:9;13234:1;13230;:5;13218:17;;13259:1;13254;:6;;13246:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13312:1;13305:8;;;13140:181;;;;:::o;827:98::-;872:15;907:10;900:17;;827:98;:::o;11494:338::-;11605:1;11588:19;;:5;:19;;;;11580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11686:1;11667:21;;:7;:21;;;;11659:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11770:6;11740:11;:18;11752:5;11740:18;;;;;;;;;;;;;;;:27;11759:7;11740:27;;;;;;;;;;;;;;;:36;;;;11808:7;11792:32;;11801:5;11792:32;;;11817:6;11792:32;;;;;;;;;;;;;;;;;;11494:338;;;:::o;9314:471::-;9430:1;9412:20;;:6;:20;;;;9404:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9514:1;9493:23;;:9;:23;;;;9485:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9589;9611:6;9589:71;;;;;;;;;;;;;;;;;:9;:17;9599:6;9589:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;9569:9;:17;9579:6;9569:17;;;;;;;;;;;;;;;:91;;;;9694:32;9719:6;9694:9;:20;9704:9;9694:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;9671:9;:20;9681:9;9671:20;;;;;;;;;;;;;;;:55;;;;9759:9;9742:35;;9751:6;9742:35;;;9770:6;9742:35;;;;;;;;;;;;;;;;;;9314:471;;;:::o;14069:192::-;14155:7;14188:1;14183;:6;;14191:12;14175:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;14175:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14215:9;14231:1;14227;:5;14215:17;;14252:1;14245:8;;;14069:192;;;;;:::o;20313:237::-;20415:1;20395:22;;:8;:22;;;;20387:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20505:8;20476:38;;20497:6;;;;;;;;;;;20476:38;;;;;;;;;;;;20534:8;20525:6;;:17;;;;;;;;;;;;;;;;;;20313:237;:::o;21086:2859::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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