ETH Price: $2,626.16 (+1.12%)

Token

QAO (🌐)
 

Overview

Max Total Supply

13,084,500,000,000 🌐

Holders

792

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 🌐

Value
$0.00
0xa2a61efb6b3737dacfb94d09c68eb70cd889f354
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:
QAOToken

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-08
*/

// Sources flattened with hardhat v2.2.1 https://hardhat.org

// File openzeppelin-solidity/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 openzeppelin-solidity/contracts/utils/[email protected]



pragma solidity ^0.8.0;

/*
 * @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 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// File contracts/ERC20Customized.sol



pragma solidity ^0.8.0;


/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * 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 {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overloaded;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override 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 virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        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 virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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 virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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 virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += 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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _balances[address(0)] = _balances[address(0)] + amount;

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


// File contracts/ERC20BurnableCustomized.sol



pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}


// File openzeppelin-solidity/contracts/access/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual 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 newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File contracts/QAOToken.sol

pragma solidity 0.8.1;


contract QAOToken is ERC20Burnable, Ownable {

    uint256 private constant DAY_IN_SEC = 86400;
    uint256 private constant DIV_ACCURACY = 1 ether;

    uint256 public constant DAILY_MINT_AMOUNT = 100000000 ether;
    uint256 public constant ANNUAL_TREASURY_MINT_AMOUNT = 1000000000000 ether;
    uint256 private _mintMultiplier = 1 ether;

    uint256 private _mintAirdropShare = 0.45 ether;
    uint256 private _mintLiqPoolShare = 0.45 ether;
    uint256 private _mintApiRewardShare = 0.1 ether;

    /* by default minting will be disabled */
    bool private mintingIsActive = false;

    /* track the total airdrop amount, because we need a stable value to avoid fifo winners on withdrawing airdrops */
    uint256 private _totalAirdropAmount;

    /* timestamp which specifies when the next mint phase should happen */
    uint256 private _nextMintTimestamp;

    /* treasury minting and withdrawing variables */
    uint256 private _annualTreasuryMintCounter = 0; 
    uint256 private _annualTreasuryMintTimestamp = 0;
    address private _treasuryGuard;
    bool private _treasuryLockGuard = false;
    bool private _treasuryLockOwner = false;

    /* pools */
    address private _airdropPool;
    address private _liquidityPool;
    address private _apiRewardPool;

    /* voting engine */
    address private _votingEngine;


    constructor( address swapLiqPool, address treasuryGuard) ERC20("QAO", unicode"🌐") {

        _mint(swapLiqPool, 9000000000000 ether);

        _treasuryGuard = treasuryGuard;
        _annualTreasuryMint();
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _applyMintSchedule();
        _annualTreasuryMint();
        return ERC20.transfer(recipient, amount);
    }

    /*******************************************************************
     * Standard minting functionality
     *******************************************************************/

    /* turn on minting. make sure you specified the addresses of the receiving pools first */
    function activateMinting() public onlyOwner {
        require(!mintingIsActive, "QAO Token: Minting has already been activated");
        require(_airdropPool != address(0), "QAO Token: Please specify the address of the airdrop pool before activating minting.");
        require(_liquidityPool != address(0), "QAO Token: Please specify the address of the liquidity pool before activating minting.");
        require(_apiRewardPool != address(0), "QAO Token: Please specify the address of the api reward pool before activating minting.");

        mintingIsActive = true;
        _mintToPools();
        _nextMintTimestamp = block.timestamp + DAY_IN_SEC;
    }

    /* apply minting for the current day and reprocess any missed day */
    function _applyMintSchedule() private {
        if (mintingIsActive){
            while (block.timestamp >= _nextMintTimestamp){
                _mintToPools();
                _nextMintTimestamp = _nextMintTimestamp + DAY_IN_SEC;
            }
        }
    }

    /* calculate minting supply for each pool and mint tokens to them */
    function _mintToPools() private {
        uint256 totalMintAmount = (DAILY_MINT_AMOUNT * _mintMultiplier) / DIV_ACCURACY;
        uint256 airdropAmount = (totalMintAmount * _mintAirdropShare) / DIV_ACCURACY;
        uint256 liqPoolAmount = (totalMintAmount * _mintLiqPoolShare) / DIV_ACCURACY;
        uint256 apiRewardAmount = (totalMintAmount * _mintApiRewardShare) / DIV_ACCURACY;

        _mint(_airdropPool, airdropAmount);
        _mint(_liquidityPool, liqPoolAmount);
        _mint(_apiRewardPool, apiRewardAmount);
    }

    /* Get amount of days passed since the provided timestamp */
    function _getPassedDays(uint256 timestamp) private view returns (uint256) {
        uint256 secondsDiff = block.timestamp - timestamp;
        return (secondsDiff / DAY_IN_SEC);
    }

    /*******************************************************************
     * Treasury functionality
     *******************************************************************/
    function _annualTreasuryMint() private {
        if (block.timestamp >= _annualTreasuryMintTimestamp && _annualTreasuryMintCounter < 4) {
            _annualTreasuryMintTimestamp = block.timestamp + (365 * DAY_IN_SEC);
            _annualTreasuryMintCounter = _annualTreasuryMintCounter + 1;
            _mint(address(this), ANNUAL_TREASURY_MINT_AMOUNT);
        }
    }

    function unlockTreasuryByGuard() public {
        require(_msgSender() == _treasuryGuard, "QAO Token: You shall not pass!");
        _treasuryLockGuard = true;
    }
    function unlockTreasuryByOwner() public onlyOwner {
        _treasuryLockOwner = true;
    }

    function withdrawFromTreasury(address recipient, uint256 amount) public onlyOwner {
        require(_treasuryLockGuard && _treasuryLockOwner, "QAO Token: Treasury is not unlocked.");
        _transfer(address(this), recipient, amount);
        _treasuryLockGuard = false;
        _treasuryLockOwner = false;
    }

    /*******************************************************************
     * Voting engine support functionality
     *******************************************************************/
    function setVotingEngine(address votingEngineAddr) public onlyOwner {
        _votingEngine = votingEngineAddr;
    }

    function votingEngine() public view returns (address) {
        return _votingEngine;
    }

    function mintVoteStakeReward(uint256 amount) public {
        require(_votingEngine != address(0), "QAO Token: Voting engine not set.");
        require(_msgSender() == _votingEngine, "QAO Token: Only the voting engine can call this function.");
        _mint(_votingEngine, amount);
    }

    /*******************************************************************
     * Getters/ Setters for mint multiplier
     *******************************************************************/ 
    function mintMultiplier() public view returns (uint256) {
        return _mintMultiplier;
    }
    function setMintMultiplier(uint256 newMultiplier) public onlyOwner {
        require(newMultiplier < _mintMultiplier, "QAO Token: Value of new multiplier needs to be lower than the current one.");
        _mintMultiplier = newMultiplier;
    }

    /*******************************************************************
     * Getters/ Setters for minting pools
     *******************************************************************/  
    function airdropPool() public view returns (address){
        return _airdropPool;
    }
    function setAirdropPool(address newAddress) public onlyOwner {
        require(newAddress != address(0), "QAO Token: Address Zero cannot be the airdrop pool.");
        _airdropPool = newAddress;
    }

    function liquidityPool() public view returns (address){
        return _liquidityPool;
    }
    function setLiquidityPool(address newAddress) public onlyOwner {
        require(newAddress != address(0), "QAO Token: Address Zero cannot be the liquidity pool.");
        _liquidityPool = newAddress;
    }

    function apiRewardPool() public view returns (address){
        return _apiRewardPool;
    }
    function setApiRewardPool(address newAddress) public onlyOwner {
        require(newAddress != address(0), "QAO Token: Address Zero cannot be the reward pool.");
        _apiRewardPool = newAddress;
    }

    /*******************************************************************
     * Getters/ Setters for minting distribution shares
     *******************************************************************/
    function mintAirdropShare() public view returns (uint256){
        return _mintAirdropShare;
    }
    function setMintAirdropShare(uint256 newShare) public onlyOwner {
        require((newShare + _mintLiqPoolShare + _mintApiRewardShare) <= 1 ether, "QAO Token: Sum of mint shares is greater than 100%.");
        _mintAirdropShare = newShare;
    }

    function mintLiqPoolShare() public view returns (uint256){
        return _mintLiqPoolShare;
    }
    function setMintLiqPoolShare(uint256 newShare) public onlyOwner {
        require((newShare + _mintAirdropShare + _mintApiRewardShare) <= 1 ether, "QAO Token: Sum of mint shares is greater than 100%.");
        _mintLiqPoolShare = newShare;
    }

    function mintApiRewardShare() public view returns (uint256){
        return _mintApiRewardShare;
    }
    function setMintApiRewardShare(uint256 newShare) public onlyOwner {
        require((newShare + _mintAirdropShare + _mintLiqPoolShare) <= 1 ether, "QAO Token: Sum of mint shares is greater than 100%.");
        _mintApiRewardShare = newShare;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"swapLiqPool","type":"address"},{"internalType":"address","name":"treasuryGuard","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ANNUAL_TREASURY_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAILY_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apiRewardPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintAirdropShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintApiRewardShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLiqPoolShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintVoteStakeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setAirdropPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setApiRewardPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newShare","type":"uint256"}],"name":"setMintAirdropShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newShare","type":"uint256"}],"name":"setMintApiRewardShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newShare","type":"uint256"}],"name":"setMintLiqPoolShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMultiplier","type":"uint256"}],"name":"setMintMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"votingEngineAddr","type":"address"}],"name":"setVotingEngine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockTreasuryByGuard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockTreasuryByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"votingEngine","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052670de0b6b3a764000060065567063eb89da4ed0000600781905560085567016345785d8a0000600955600a805460ff191690556000600d819055600e55600f805461ffff60a01b191690553480156200005c57600080fd5b5060405162002762380380620027628339810160408190526200007f916200038e565b60408051808201825260038082526251414f60e81b6020808401918252845180860190955260048552630f09f8c960e41b908501528251929392620000c6929190620002cb565b508051620000dc906004906020840190620002cb565b5050506000620000f16200018560201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000158826c71989183527a1c5d3c4000000062000189565b600f80546001600160a01b0319166001600160a01b0383161790556200017d6200025d565b505062000495565b3390565b6001600160a01b038216620001bb5760405162461bcd60e51b8152600401620001b290620003c5565b60405180910390fd5b620001c960008383620002c6565b8060026000828254620001dd919062000405565b90915550506001600160a01b038216600090815260208190526040812080548392906200020c90849062000405565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9062000251908590620003fc565b60405180910390a35050565b600e5442101580156200027257506004600d54105b15620002c457620002896201518061016d62000420565b62000295904262000405565b600e55600d54620002a890600162000405565b600d55620002c4306c0c9f2c9cd04674edea4000000062000189565b565b505050565b828054620002d99062000442565b90600052602060002090601f016020900481019282620002fd576000855562000348565b82601f106200031857805160ff191683800117855562000348565b8280016001018555821562000348579182015b82811115620003485782518255916020019190600101906200032b565b50620003569291506200035a565b5090565b5b808211156200035657600081556001016200035b565b80516001600160a01b03811681146200038957600080fd5b919050565b60008060408385031215620003a1578182fd5b620003ac8362000371565b9150620003bc6020840162000371565b90509250929050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200041b576200041b6200047f565b500190565b60008160001904831182151516156200043d576200043d6200047f565b500290565b6002810460018216806200045757607f821691505b602082108114156200047957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6122bd80620004a56000396000f3fe608060405234801561001057600080fd5b50600436106102ad5760003560e01c806358f710c91161017b578063a5ebc844116100d8578063dd62ed3e1161008c578063f2fdd5aa11610071578063f2fdd5aa146104d9578063f2fde38b146104ec578063f5a750c1146104ff576102ad565b8063dd62ed3e146104b3578063eb0eec48146104c6576102ad565b8063ab7873fb116100bd578063ab7873fb1461049b578063b3168d6d146104a3578063c72e8e3b146104ab576102ad565b8063a5ebc84414610480578063a9059cbb14610488576102ad565b80637d596e651161012f57806395d89b411161011457806395d89b411461045d57806398669c2614610465578063a457c2d71461046d576102ad565b80637d596e65146104425780638da5cb5b14610455576102ad565b806370a082311161016057806370a0823114610414578063715018a61461042757806379cc67901461042f576102ad565b806358f710c914610404578063665a11ca1461040c576102ad565b806319c90f6d116102295780633acd81a5116101dd5780633d5aae13116101c25780633d5aae13146103cb57806342966c68146103de5780635729addd146103f1576102ad565b80633acd81a5146103bb5780633cebff9c146103c3576102ad565b806326d762471161020e57806326d7624714610380578063313ce5671461039357806339509351146103a8576102ad565b806319c90f6d1461035857806323b872dd1461036d576102ad565b8063077bd04d11610280578063095ea7b311610265578063095ea7b31461031d5780630fc81c5e1461033d57806318160ddd14610350576102ad565b8063077bd04d1461030d578063085ca44414610315576102ad565b806301877020146102b25780630643e298146102c75780630663af08146102e557806306fdde03146102f8575b600080fd5b6102c56102c03660046116e1565b610512565b005b6102cf6105af565b6040516102dc91906121b1565b60405180910390f35b6102c56102f3366004611768565b6105c0565b610300610697565b6040516102dc91906117c8565b6102cf610729565b6102c561072f565b61033061032b366004611768565b6107b0565b6040516102dc91906117bd565b6102c561034b366004611791565b6107cd565b6102cf610853565b610360610859565b6040516102dc91906117a9565b61033061037b36600461172d565b610868565b6102c561038e366004611791565b6108ff565b61039b61097a565b6040516102dc91906121ba565b6103306103b6366004611768565b61097f565b6102cf6109ce565b6103606109d4565b6102c56103d9366004611791565b6109e3565b6102c56103ec366004611791565b610a69565b6102c56103ff3660046116e1565b610a7a565b6102cf610b0e565b610360610b14565b6102cf6104223660046116e1565b610b23565b6102c5610b42565b6102c561043d366004611768565b610bd8565b6102c5610450366004611791565b610c2d565b610360610cb3565b610300610cc2565b6102c5610cd1565b61033061047b366004611768565b610d4c565b6102cf610dc7565b610330610496366004611768565b610dd6565b6102c5610df9565b6102cf610efa565b610360610f00565b6102cf6104c13660046116fb565b610f0f565b6102c56104d4366004611791565b610f3a565b6102c56104e73660046116e1565b610f9f565b6102c56104fa3660046116e1565b611033565b6102c561050d3660046116e1565b611101565b61051a61116f565b6001600160a01b031661052b610cb3565b6001600160a01b03161461055a5760405162461bcd60e51b815260040161055190611c77565b60405180910390fd5b6001600160a01b0381166105805760405162461bcd60e51b815260040161055190611acc565b6011805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6c0c9f2c9cd04674edea4000000081565b6105c861116f565b6001600160a01b03166105d9610cb3565b6001600160a01b0316146105ff5760405162461bcd60e51b815260040161055190611c77565b600f5474010000000000000000000000000000000000000000900460ff1680156106445750600f547501000000000000000000000000000000000000000000900460ff165b6106605760405162461bcd60e51b8152600401610551906118d5565b61066b308383611173565b5050600f80547fffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff169055565b6060600380546106a690612236565b80601f01602080910402602001604051908101604052809291908181526020018280546106d290612236565b801561071f5780601f106106f45761010080835404028352916020019161071f565b820191906000526020600020905b81548152906001019060200180831161070257829003601f168201915b5050505050905090565b60095490565b61073761116f565b6001600160a01b0316610748610cb3565b6001600160a01b03161461076e5760405162461bcd60e51b815260040161055190611c77565b600f80547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167501000000000000000000000000000000000000000000179055565b60006107c46107bd61116f565b848461129b565b50600192915050565b6107d561116f565b6001600160a01b03166107e6610cb3565b6001600160a01b03161461080c5760405162461bcd60e51b815260040161055190611c77565b670de0b6b3a76400006009546007548361082691906121c8565b61083091906121c8565b111561084e5760405162461bcd60e51b815260040161055190611de9565b600855565b60025490565b6013546001600160a01b031690565b6000610875848484611173565b6001600160a01b03841660009081526001602052604081208161089661116f565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156108d95760405162461bcd60e51b815260040161055190611c1a565b6108f4856108e561116f565b6108ef868561221f565b61129b565b506001949350505050565b6013546001600160a01b03166109275760405162461bcd60e51b8152600401610551906120c0565b6013546001600160a01b031661093b61116f565b6001600160a01b0316146109615760405162461bcd60e51b815260040161055190612006565b601354610977906001600160a01b03168261134f565b50565b601290565b60006107c461098c61116f565b84846001600061099a61116f565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546108ef91906121c8565b60065490565b6010546001600160a01b031690565b6109eb61116f565b6001600160a01b03166109fc610cb3565b6001600160a01b031614610a225760405162461bcd60e51b815260040161055190611c77565b670de0b6b3a764000060095460085483610a3c91906121c8565b610a4691906121c8565b1115610a645760405162461bcd60e51b815260040161055190611de9565b600755565b610977610a7461116f565b8261140f565b610a8261116f565b6001600160a01b0316610a93610cb3565b6001600160a01b031614610ab95760405162461bcd60e51b815260040161055190611c77565b6001600160a01b038116610adf5760405162461bcd60e51b815260040161055190611bbd565b6010805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60085490565b6011546001600160a01b031690565b6001600160a01b0381166000908152602081905260409020545b919050565b610b4a61116f565b6001600160a01b0316610b5b610cb3565b6001600160a01b031614610b815760405162461bcd60e51b815260040161055190611c77565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000610be6836104c161116f565b905081811015610c085760405162461bcd60e51b815260040161055190611cac565b610c1e83610c1461116f565b6108ef858561221f565b610c28838361140f565b505050565b610c3561116f565b6001600160a01b0316610c46610cb3565b6001600160a01b031614610c6c5760405162461bcd60e51b815260040161055190611c77565b670de0b6b3a764000060085460075483610c8691906121c8565b610c9091906121c8565b1115610cae5760405162461bcd60e51b815260040161055190611de9565b600955565b6005546001600160a01b031690565b6060600480546106a690612236565b600f546001600160a01b0316610ce561116f565b6001600160a01b031614610d0b5760405162461bcd60e51b815260040161055190611b86565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b60008060016000610d5b61116f565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610da75760405162461bcd60e51b81526004016105519061211d565b610dbd610db261116f565b856108ef868561221f565b5060019392505050565b6a52b7d2dcc80cd2e400000081565b6000610de0611539565b610de8611571565b610df283836115ce565b9392505050565b610e0161116f565b6001600160a01b0316610e12610cb3565b6001600160a01b031614610e385760405162461bcd60e51b815260040161055190611c77565b600a5460ff1615610e5b5760405162461bcd60e51b815260040161055190611b29565b6010546001600160a01b0316610e835760405162461bcd60e51b815260040161055190611d09565b6011546001600160a01b0316610eab5760405162461bcd60e51b815260040161055190611f83565b6012546001600160a01b0316610ed35760405162461bcd60e51b815260040161055190611ea3565b600a805460ff19166001179055610ee86115e2565b610ef562015180426121c8565b600c55565b60075490565b6012546001600160a01b031690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f4261116f565b6001600160a01b0316610f53610cb3565b6001600160a01b031614610f795760405162461bcd60e51b815260040161055190611c77565b6006548110610f9a5760405162461bcd60e51b815260040161055190611a49565b600655565b610fa761116f565b6001600160a01b0316610fb8610cb3565b6001600160a01b031614610fde5760405162461bcd60e51b815260040161055190611c77565b6001600160a01b0381166110045760405162461bcd60e51b815260040161055190611f26565b6012805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61103b61116f565b6001600160a01b031661104c610cb3565b6001600160a01b0316146110725760405162461bcd60e51b815260040161055190611c77565b6001600160a01b0381166110985760405162461bcd60e51b815260040161055190611932565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61110961116f565b6001600160a01b031661111a610cb3565b6001600160a01b0316146111405760405162461bcd60e51b815260040161055190611c77565b6013805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166111995760405162461bcd60e51b815260040161055190611e46565b6001600160a01b0382166111bf5760405162461bcd60e51b81526004016105519061181b565b6111ca838383610c28565b6001600160a01b038316600090815260208190526040902054818110156112035760405162461bcd60e51b8152600401610551906119ec565b61120d828261221f565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906112439084906121c8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161128d91906121b1565b60405180910390a350505050565b6001600160a01b0383166112c15760405162461bcd60e51b815260040161055190612063565b6001600160a01b0382166112e75760405162461bcd60e51b81526004016105519061198f565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906113429085906121b1565b60405180910390a3505050565b6001600160a01b0382166113755760405162461bcd60e51b81526004016105519061217a565b61138160008383610c28565b806002600082825461139391906121c8565b90915550506001600160a01b038216600090815260208190526040812080548392906113c09084906121c8565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906114039085906121b1565b60405180910390a35050565b6001600160a01b0382166114355760405162461bcd60e51b815260040161055190611d8c565b61144182600083610c28565b6001600160a01b0382166000908152602081905260409020548181101561147a5760405162461bcd60e51b815260040161055190611878565b611484828261221f565b6001600160a01b03841660009081526020819052604081209190915580527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546114cf9083906121c8565b600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5919091556040516001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113429086906121b1565b600a5460ff161561156f575b600c54421061156f576115566115e2565b62015180600c5461156791906121c8565b600c55611545565b565b600e54421015801561158557506004600d54105b1561156f576115996201518061016d612200565b6115a390426121c8565b600e55600d546115b49060016121c8565b600d5561156f306c0c9f2c9cd04674edea4000000061134f565b60006107c46115db61116f565b8484611173565b6000670de0b6b3a76400006006546a52b7d2dcc80cd2e40000006116069190612200565b61161091906121e0565b90506000670de0b6b3a76400006007548361162b9190612200565b61163591906121e0565b90506000670de0b6b3a7640000600854846116509190612200565b61165a91906121e0565b90506000670de0b6b3a7640000600954856116759190612200565b61167f91906121e0565b601054909150611698906001600160a01b03168461134f565b6011546116ae906001600160a01b03168361134f565b6012546116c4906001600160a01b03168261134f565b50505050565b80356001600160a01b0381168114610b3d57600080fd5b6000602082840312156116f2578081fd5b610df2826116ca565b6000806040838503121561170d578081fd5b611716836116ca565b9150611724602084016116ca565b90509250929050565b600080600060608486031215611741578081fd5b61174a846116ca565b9250611758602085016116ca565b9150604084013590509250925092565b6000806040838503121561177a578182fd5b611783836116ca565b946020939093013593505050565b6000602082840312156117a2578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156117f4578581018301518582016040015282016117d8565b818111156118055783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f51414f20546f6b656e3a205472656173757279206973206e6f7420756e6c6f6360408201527f6b65642e00000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252604a908201527f51414f20546f6b656e3a2056616c7565206f66206e6577206d756c7469706c6960408201527f6572206e6565647320746f206265206c6f776572207468616e2074686520637560608201527f7272656e74206f6e652e00000000000000000000000000000000000000000000608082015260a00190565b60208082526035908201527f51414f20546f6b656e3a2041646472657373205a65726f2063616e6e6f74206260408201527f6520746865206c697175696469747920706f6f6c2e0000000000000000000000606082015260800190565b6020808252602d908201527f51414f20546f6b656e3a204d696e74696e672068617320616c7265616479206260408201527f65656e2061637469766174656400000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f51414f20546f6b656e3a20596f75207368616c6c206e6f742070617373210000604082015260600190565b60208082526033908201527f51414f20546f6b656e3a2041646472657373205a65726f2063616e6e6f74206260408201527f65207468652061697264726f7020706f6f6c2e00000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526054908201527f51414f20546f6b656e3a20506c6561736520737065636966792074686520616460408201527f6472657373206f66207468652061697264726f7020706f6f6c206265666f726560608201527f2061637469766174696e67206d696e74696e672e000000000000000000000000608082015260a00190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526033908201527f51414f20546f6b656e3a2053756d206f66206d696e742073686172657320697360408201527f2067726561746572207468616e20313030252e00000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526057908201527f51414f20546f6b656e3a20506c6561736520737065636966792074686520616460408201527f6472657373206f6620746865206170692072657761726420706f6f6c2062656660608201527f6f72652061637469766174696e67206d696e74696e672e000000000000000000608082015260a00190565b60208082526032908201527f51414f20546f6b656e3a2041646472657373205a65726f2063616e6e6f74206260408201527f65207468652072657761726420706f6f6c2e0000000000000000000000000000606082015260800190565b60208082526056908201527f51414f20546f6b656e3a20506c6561736520737065636966792074686520616460408201527f6472657373206f6620746865206c697175696469747920706f6f6c206265666f60608201527f72652061637469766174696e67206d696e74696e672e00000000000000000000608082015260a00190565b60208082526039908201527f51414f20546f6b656e3a204f6e6c792074686520766f74696e6720656e67696e60408201527f652063616e2063616c6c20746869732066756e6374696f6e2e00000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f51414f20546f6b656e3a20566f74696e6720656e67696e65206e6f742073657460408201527f2e00000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156121db576121db612271565b500190565b6000826121fb57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561221a5761221a612271565b500290565b60008282101561223157612231612271565b500390565b60028104600182168061224a57607f821691505b6020821081141561226b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122087555608123fb75f725b832d2085320c31f021cad913f80a05054c37906c404f64736f6c6343000801003300000000000000000000000003d6b5fe025ee2d3f3c08c9d74032259b1374ef20000000000000000000000006db25436e6dc7a91b3c95391b82cf404a91ab7b5

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102ad5760003560e01c806358f710c91161017b578063a5ebc844116100d8578063dd62ed3e1161008c578063f2fdd5aa11610071578063f2fdd5aa146104d9578063f2fde38b146104ec578063f5a750c1146104ff576102ad565b8063dd62ed3e146104b3578063eb0eec48146104c6576102ad565b8063ab7873fb116100bd578063ab7873fb1461049b578063b3168d6d146104a3578063c72e8e3b146104ab576102ad565b8063a5ebc84414610480578063a9059cbb14610488576102ad565b80637d596e651161012f57806395d89b411161011457806395d89b411461045d57806398669c2614610465578063a457c2d71461046d576102ad565b80637d596e65146104425780638da5cb5b14610455576102ad565b806370a082311161016057806370a0823114610414578063715018a61461042757806379cc67901461042f576102ad565b806358f710c914610404578063665a11ca1461040c576102ad565b806319c90f6d116102295780633acd81a5116101dd5780633d5aae13116101c25780633d5aae13146103cb57806342966c68146103de5780635729addd146103f1576102ad565b80633acd81a5146103bb5780633cebff9c146103c3576102ad565b806326d762471161020e57806326d7624714610380578063313ce5671461039357806339509351146103a8576102ad565b806319c90f6d1461035857806323b872dd1461036d576102ad565b8063077bd04d11610280578063095ea7b311610265578063095ea7b31461031d5780630fc81c5e1461033d57806318160ddd14610350576102ad565b8063077bd04d1461030d578063085ca44414610315576102ad565b806301877020146102b25780630643e298146102c75780630663af08146102e557806306fdde03146102f8575b600080fd5b6102c56102c03660046116e1565b610512565b005b6102cf6105af565b6040516102dc91906121b1565b60405180910390f35b6102c56102f3366004611768565b6105c0565b610300610697565b6040516102dc91906117c8565b6102cf610729565b6102c561072f565b61033061032b366004611768565b6107b0565b6040516102dc91906117bd565b6102c561034b366004611791565b6107cd565b6102cf610853565b610360610859565b6040516102dc91906117a9565b61033061037b36600461172d565b610868565b6102c561038e366004611791565b6108ff565b61039b61097a565b6040516102dc91906121ba565b6103306103b6366004611768565b61097f565b6102cf6109ce565b6103606109d4565b6102c56103d9366004611791565b6109e3565b6102c56103ec366004611791565b610a69565b6102c56103ff3660046116e1565b610a7a565b6102cf610b0e565b610360610b14565b6102cf6104223660046116e1565b610b23565b6102c5610b42565b6102c561043d366004611768565b610bd8565b6102c5610450366004611791565b610c2d565b610360610cb3565b610300610cc2565b6102c5610cd1565b61033061047b366004611768565b610d4c565b6102cf610dc7565b610330610496366004611768565b610dd6565b6102c5610df9565b6102cf610efa565b610360610f00565b6102cf6104c13660046116fb565b610f0f565b6102c56104d4366004611791565b610f3a565b6102c56104e73660046116e1565b610f9f565b6102c56104fa3660046116e1565b611033565b6102c561050d3660046116e1565b611101565b61051a61116f565b6001600160a01b031661052b610cb3565b6001600160a01b03161461055a5760405162461bcd60e51b815260040161055190611c77565b60405180910390fd5b6001600160a01b0381166105805760405162461bcd60e51b815260040161055190611acc565b6011805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6c0c9f2c9cd04674edea4000000081565b6105c861116f565b6001600160a01b03166105d9610cb3565b6001600160a01b0316146105ff5760405162461bcd60e51b815260040161055190611c77565b600f5474010000000000000000000000000000000000000000900460ff1680156106445750600f547501000000000000000000000000000000000000000000900460ff165b6106605760405162461bcd60e51b8152600401610551906118d5565b61066b308383611173565b5050600f80547fffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff169055565b6060600380546106a690612236565b80601f01602080910402602001604051908101604052809291908181526020018280546106d290612236565b801561071f5780601f106106f45761010080835404028352916020019161071f565b820191906000526020600020905b81548152906001019060200180831161070257829003601f168201915b5050505050905090565b60095490565b61073761116f565b6001600160a01b0316610748610cb3565b6001600160a01b03161461076e5760405162461bcd60e51b815260040161055190611c77565b600f80547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167501000000000000000000000000000000000000000000179055565b60006107c46107bd61116f565b848461129b565b50600192915050565b6107d561116f565b6001600160a01b03166107e6610cb3565b6001600160a01b03161461080c5760405162461bcd60e51b815260040161055190611c77565b670de0b6b3a76400006009546007548361082691906121c8565b61083091906121c8565b111561084e5760405162461bcd60e51b815260040161055190611de9565b600855565b60025490565b6013546001600160a01b031690565b6000610875848484611173565b6001600160a01b03841660009081526001602052604081208161089661116f565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156108d95760405162461bcd60e51b815260040161055190611c1a565b6108f4856108e561116f565b6108ef868561221f565b61129b565b506001949350505050565b6013546001600160a01b03166109275760405162461bcd60e51b8152600401610551906120c0565b6013546001600160a01b031661093b61116f565b6001600160a01b0316146109615760405162461bcd60e51b815260040161055190612006565b601354610977906001600160a01b03168261134f565b50565b601290565b60006107c461098c61116f565b84846001600061099a61116f565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546108ef91906121c8565b60065490565b6010546001600160a01b031690565b6109eb61116f565b6001600160a01b03166109fc610cb3565b6001600160a01b031614610a225760405162461bcd60e51b815260040161055190611c77565b670de0b6b3a764000060095460085483610a3c91906121c8565b610a4691906121c8565b1115610a645760405162461bcd60e51b815260040161055190611de9565b600755565b610977610a7461116f565b8261140f565b610a8261116f565b6001600160a01b0316610a93610cb3565b6001600160a01b031614610ab95760405162461bcd60e51b815260040161055190611c77565b6001600160a01b038116610adf5760405162461bcd60e51b815260040161055190611bbd565b6010805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60085490565b6011546001600160a01b031690565b6001600160a01b0381166000908152602081905260409020545b919050565b610b4a61116f565b6001600160a01b0316610b5b610cb3565b6001600160a01b031614610b815760405162461bcd60e51b815260040161055190611c77565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000610be6836104c161116f565b905081811015610c085760405162461bcd60e51b815260040161055190611cac565b610c1e83610c1461116f565b6108ef858561221f565b610c28838361140f565b505050565b610c3561116f565b6001600160a01b0316610c46610cb3565b6001600160a01b031614610c6c5760405162461bcd60e51b815260040161055190611c77565b670de0b6b3a764000060085460075483610c8691906121c8565b610c9091906121c8565b1115610cae5760405162461bcd60e51b815260040161055190611de9565b600955565b6005546001600160a01b031690565b6060600480546106a690612236565b600f546001600160a01b0316610ce561116f565b6001600160a01b031614610d0b5760405162461bcd60e51b815260040161055190611b86565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b60008060016000610d5b61116f565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610da75760405162461bcd60e51b81526004016105519061211d565b610dbd610db261116f565b856108ef868561221f565b5060019392505050565b6a52b7d2dcc80cd2e400000081565b6000610de0611539565b610de8611571565b610df283836115ce565b9392505050565b610e0161116f565b6001600160a01b0316610e12610cb3565b6001600160a01b031614610e385760405162461bcd60e51b815260040161055190611c77565b600a5460ff1615610e5b5760405162461bcd60e51b815260040161055190611b29565b6010546001600160a01b0316610e835760405162461bcd60e51b815260040161055190611d09565b6011546001600160a01b0316610eab5760405162461bcd60e51b815260040161055190611f83565b6012546001600160a01b0316610ed35760405162461bcd60e51b815260040161055190611ea3565b600a805460ff19166001179055610ee86115e2565b610ef562015180426121c8565b600c55565b60075490565b6012546001600160a01b031690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f4261116f565b6001600160a01b0316610f53610cb3565b6001600160a01b031614610f795760405162461bcd60e51b815260040161055190611c77565b6006548110610f9a5760405162461bcd60e51b815260040161055190611a49565b600655565b610fa761116f565b6001600160a01b0316610fb8610cb3565b6001600160a01b031614610fde5760405162461bcd60e51b815260040161055190611c77565b6001600160a01b0381166110045760405162461bcd60e51b815260040161055190611f26565b6012805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61103b61116f565b6001600160a01b031661104c610cb3565b6001600160a01b0316146110725760405162461bcd60e51b815260040161055190611c77565b6001600160a01b0381166110985760405162461bcd60e51b815260040161055190611932565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61110961116f565b6001600160a01b031661111a610cb3565b6001600160a01b0316146111405760405162461bcd60e51b815260040161055190611c77565b6013805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166111995760405162461bcd60e51b815260040161055190611e46565b6001600160a01b0382166111bf5760405162461bcd60e51b81526004016105519061181b565b6111ca838383610c28565b6001600160a01b038316600090815260208190526040902054818110156112035760405162461bcd60e51b8152600401610551906119ec565b61120d828261221f565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906112439084906121c8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161128d91906121b1565b60405180910390a350505050565b6001600160a01b0383166112c15760405162461bcd60e51b815260040161055190612063565b6001600160a01b0382166112e75760405162461bcd60e51b81526004016105519061198f565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906113429085906121b1565b60405180910390a3505050565b6001600160a01b0382166113755760405162461bcd60e51b81526004016105519061217a565b61138160008383610c28565b806002600082825461139391906121c8565b90915550506001600160a01b038216600090815260208190526040812080548392906113c09084906121c8565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906114039085906121b1565b60405180910390a35050565b6001600160a01b0382166114355760405162461bcd60e51b815260040161055190611d8c565b61144182600083610c28565b6001600160a01b0382166000908152602081905260409020548181101561147a5760405162461bcd60e51b815260040161055190611878565b611484828261221f565b6001600160a01b03841660009081526020819052604081209190915580527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546114cf9083906121c8565b600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5919091556040516001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113429086906121b1565b600a5460ff161561156f575b600c54421061156f576115566115e2565b62015180600c5461156791906121c8565b600c55611545565b565b600e54421015801561158557506004600d54105b1561156f576115996201518061016d612200565b6115a390426121c8565b600e55600d546115b49060016121c8565b600d5561156f306c0c9f2c9cd04674edea4000000061134f565b60006107c46115db61116f565b8484611173565b6000670de0b6b3a76400006006546a52b7d2dcc80cd2e40000006116069190612200565b61161091906121e0565b90506000670de0b6b3a76400006007548361162b9190612200565b61163591906121e0565b90506000670de0b6b3a7640000600854846116509190612200565b61165a91906121e0565b90506000670de0b6b3a7640000600954856116759190612200565b61167f91906121e0565b601054909150611698906001600160a01b03168461134f565b6011546116ae906001600160a01b03168361134f565b6012546116c4906001600160a01b03168261134f565b50505050565b80356001600160a01b0381168114610b3d57600080fd5b6000602082840312156116f2578081fd5b610df2826116ca565b6000806040838503121561170d578081fd5b611716836116ca565b9150611724602084016116ca565b90509250929050565b600080600060608486031215611741578081fd5b61174a846116ca565b9250611758602085016116ca565b9150604084013590509250925092565b6000806040838503121561177a578182fd5b611783836116ca565b946020939093013593505050565b6000602082840312156117a2578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156117f4578581018301518582016040015282016117d8565b818111156118055783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f51414f20546f6b656e3a205472656173757279206973206e6f7420756e6c6f6360408201527f6b65642e00000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252604a908201527f51414f20546f6b656e3a2056616c7565206f66206e6577206d756c7469706c6960408201527f6572206e6565647320746f206265206c6f776572207468616e2074686520637560608201527f7272656e74206f6e652e00000000000000000000000000000000000000000000608082015260a00190565b60208082526035908201527f51414f20546f6b656e3a2041646472657373205a65726f2063616e6e6f74206260408201527f6520746865206c697175696469747920706f6f6c2e0000000000000000000000606082015260800190565b6020808252602d908201527f51414f20546f6b656e3a204d696e74696e672068617320616c7265616479206260408201527f65656e2061637469766174656400000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f51414f20546f6b656e3a20596f75207368616c6c206e6f742070617373210000604082015260600190565b60208082526033908201527f51414f20546f6b656e3a2041646472657373205a65726f2063616e6e6f74206260408201527f65207468652061697264726f7020706f6f6c2e00000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526054908201527f51414f20546f6b656e3a20506c6561736520737065636966792074686520616460408201527f6472657373206f66207468652061697264726f7020706f6f6c206265666f726560608201527f2061637469766174696e67206d696e74696e672e000000000000000000000000608082015260a00190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526033908201527f51414f20546f6b656e3a2053756d206f66206d696e742073686172657320697360408201527f2067726561746572207468616e20313030252e00000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526057908201527f51414f20546f6b656e3a20506c6561736520737065636966792074686520616460408201527f6472657373206f6620746865206170692072657761726420706f6f6c2062656660608201527f6f72652061637469766174696e67206d696e74696e672e000000000000000000608082015260a00190565b60208082526032908201527f51414f20546f6b656e3a2041646472657373205a65726f2063616e6e6f74206260408201527f65207468652072657761726420706f6f6c2e0000000000000000000000000000606082015260800190565b60208082526056908201527f51414f20546f6b656e3a20506c6561736520737065636966792074686520616460408201527f6472657373206f6620746865206c697175696469747920706f6f6c206265666f60608201527f72652061637469766174696e67206d696e74696e672e00000000000000000000608082015260a00190565b60208082526039908201527f51414f20546f6b656e3a204f6e6c792074686520766f74696e6720656e67696e60408201527f652063616e2063616c6c20746869732066756e6374696f6e2e00000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f51414f20546f6b656e3a20566f74696e6720656e67696e65206e6f742073657460408201527f2e00000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156121db576121db612271565b500190565b6000826121fb57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561221a5761221a612271565b500290565b60008282101561223157612231612271565b500390565b60028104600182168061224a57607f821691505b6020821081141561226b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122087555608123fb75f725b832d2085320c31f021cad913f80a05054c37906c404f64736f6c63430008010033

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

00000000000000000000000003d6b5fe025ee2d3f3c08c9d74032259b1374ef20000000000000000000000006db25436e6dc7a91b3c95391b82cf404a91ab7b5

-----Decoded View---------------
Arg [0] : swapLiqPool (address): 0x03D6b5fe025EE2d3F3C08c9d74032259B1374ef2
Arg [1] : treasuryGuard (address): 0x6db25436E6DC7a91B3C95391B82Cf404A91Ab7b5

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000003d6b5fe025ee2d3f3c08c9d74032259b1374ef2
Arg [1] : 0000000000000000000000006db25436e6dc7a91b3c95391b82cf404a91ab7b5


Deployed Bytecode Sourcemap

18299:8889:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25359:210;;;;;;:::i;:::-;;:::i;:::-;;18524:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23157:318;;;;;;:::i;:::-;;:::i;5932:91::-;;;:::i;:::-;;;;;;;:::i;26824:104::-;;;:::i;23055:94::-;;;:::i;8072:169::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26567:249::-;;;;;;:::i;:::-;;:::i;7025:108::-;;;:::i;23803:93::-;;;:::i;:::-;;;;;;;:::i;8723:422::-;;;;;;:::i;:::-;;:::i;23904:293::-;;;;;;:::i;:::-;;:::i;6876:84::-;;;:::i;:::-;;;;;;;:::i;9554:215::-;;;;;;:::i;:::-;;:::i;24400:97::-;;;:::i;24951:90::-;;;:::i;26204:249::-;;;;;;:::i;:::-;;:::i;15171:91::-;;;;;;:::i;:::-;;:::i;25047:204::-;;;;;;:::i;:::-;;:::i;26461:100::-;;;:::i;25259:94::-;;;:::i;7196:127::-;;;;;;:::i;:::-;;:::i;17681:148::-;;;:::i;15581:332::-;;;;;;:::i;:::-;;:::i;26934:251::-;;;;;;:::i;:::-;;:::i;17030:87::-;;;:::i;6142:95::-;;;:::i;22881:168::-;;;:::i;10272:377::-;;;;;;:::i;:::-;;:::i;18458:59::-;;;:::i;19906:214::-;;;;;;:::i;:::-;;:::i;20413:668::-;;;:::i;26098:100::-;;;:::i;25577:94::-;;;:::i;7774:151::-;;;;;;:::i;:::-;;:::i;24503:246::-;;;;;;:::i;:::-;;:::i;25677:207::-;;;;;;:::i;:::-;;:::i;17984:244::-;;;;;;:::i;:::-;;:::i;23676:119::-;;;;;;:::i;:::-;;:::i;25359:210::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;25441:24:0;::::1;25433:90;;;;-1:-1:-1::0;;;25433:90:0::1;;;;;;;:::i;:::-;25534:14;:27:::0;;-1:-1:-1;;25534:27:0::1;-1:-1:-1::0;;;;;25534:27:0;;;::::1;::::0;;;::::1;::::0;;25359:210::o;18524:73::-;18578:19;18524:73;:::o;23157:318::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;23258:18:::1;::::0;;;::::1;;;:40:::0;::::1;;;-1:-1:-1::0;23280:18:0::1;::::0;;;::::1;;;23258:40;23250:89;;;;-1:-1:-1::0;;;23250:89:0::1;;;;;;;:::i;:::-;23350:43;23368:4;23375:9;23386:6;23350:9;:43::i;:::-;-1:-1:-1::0;;23404:18:0::1;:26:::0;;23441;;;;23157:318::o;5932:91::-;5977:13;6010:5;6003:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5932:91;:::o;26824:104::-;26901:19;;26824:104;:::o;23055:94::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;23116:18:::1;:25:::0;;;::::1;::::0;::::1;::::0;;23055:94::o;8072:169::-;8155:4;8172:39;8181:12;:10;:12::i;:::-;8195:7;8204:6;8172:8;:39::i;:::-;-1:-1:-1;8229:4:0;8072:169;;;;:::o;26567:249::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;26706:7:::1;26682:19;;26662:17;;26651:8;:28;;;;:::i;:::-;:50;;;;:::i;:::-;26650:63;;26642:127;;;;-1:-1:-1::0;;;26642:127:0::1;;;;;;;:::i;:::-;26780:17;:28:::0;26567:249::o;7025:108::-;7113:12;;7025:108;:::o;23803:93::-;23875:13;;-1:-1:-1;;;;;23875:13:0;23803:93;:::o;8723:422::-;8829:4;8846:36;8856:6;8864:9;8875:6;8846:9;:36::i;:::-;-1:-1:-1;;;;;8922:19:0;;8895:24;8922:19;;;:11;:19;;;;;8895:24;8942:12;:10;:12::i;:::-;-1:-1:-1;;;;;8922:33:0;-1:-1:-1;;;;;8922:33:0;;;;;;;;;;;;;8895:60;;8994:6;8974:16;:26;;8966:79;;;;-1:-1:-1;;;8966:79:0;;;;;;;:::i;:::-;9056:57;9065:6;9073:12;:10;:12::i;:::-;9087:25;9106:6;9087:16;:25;:::i;:::-;9056:8;:57::i;:::-;-1:-1:-1;9133:4:0;;8723:422;-1:-1:-1;;;;8723:422:0:o;23904:293::-;23975:13;;-1:-1:-1;;;;;23975:13:0;23967:73;;;;-1:-1:-1;;;23967:73:0;;;;;;;:::i;:::-;24075:13;;-1:-1:-1;;;;;24075:13:0;24059:12;:10;:12::i;:::-;-1:-1:-1;;;;;24059:29:0;;24051:99;;;;-1:-1:-1;;;24051:99:0;;;;;;;:::i;:::-;24167:13;;24161:28;;-1:-1:-1;;;;;24167:13:0;24182:6;24161:5;:28::i;:::-;23904:293;:::o;6876:84::-;6950:2;6876:84;:::o;9554:215::-;9642:4;9659:80;9668:12;:10;:12::i;:::-;9682:7;9728:10;9691:11;:25;9703:12;:10;:12::i;:::-;-1:-1:-1;;;;;9691:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;9691:25:0;;;:34;;;;;;;;;;:47;;;;:::i;24400:97::-;24474:15;;24400:97;:::o;24951:90::-;25021:12;;-1:-1:-1;;;;;25021:12:0;24951:90;:::o;26204:249::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;26343:7:::1;26319:19;;26299:17;;26288:8;:28;;;;:::i;:::-;:50;;;;:::i;:::-;26287:63;;26279:127;;;;-1:-1:-1::0;;;26279:127:0::1;;;;;;;:::i;:::-;26417:17;:28:::0;26204:249::o;15171:91::-;15227:27;15233:12;:10;:12::i;:::-;15247:6;15227:5;:27::i;25047:204::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25127:24:0;::::1;25119:88;;;;-1:-1:-1::0;;;25119:88:0::1;;;;;;;:::i;:::-;25218:12;:25:::0;;-1:-1:-1;;25218:25:0::1;-1:-1:-1::0;;;;;25218:25:0;;;::::1;::::0;;;::::1;::::0;;25047:204::o;26461:100::-;26536:17;;26461:100;:::o;25259:94::-;25331:14;;-1:-1:-1;;;;;25331:14:0;25259:94;:::o;7196:127::-;-1:-1:-1;;;;;7297:18:0;;7270:7;7297:18;;;;;;;;;;;7196:127;;;;:::o;17681:148::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;17772:6:::1;::::0;17751:40:::1;::::0;17788:1:::1;::::0;-1:-1:-1;;;;;17772:6:0::1;::::0;17751:40:::1;::::0;17788:1;;17751:40:::1;17802:6;:19:::0;;-1:-1:-1;;17802:19:0::1;::::0;;17681:148::o;15581:332::-;15658:24;15685:32;15695:7;15704:12;:10;:12::i;15685:32::-;15658:59;;15756:6;15736:16;:26;;15728:75;;;;-1:-1:-1;;;15728:75:0;;;;;;;:::i;:::-;15814:58;15823:7;15832:12;:10;:12::i;:::-;15846:25;15865:6;15846:16;:25;:::i;15814:58::-;15883:22;15889:7;15898:6;15883:5;:22::i;:::-;15581:332;;;:::o;26934:251::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;27073:7:::1;27051:17;;27031;;27020:8;:28;;;;:::i;:::-;:48;;;;:::i;:::-;27019:61;;27011:125;;;;-1:-1:-1::0;;;27011:125:0::1;;;;;;;:::i;:::-;27147:19;:30:::0;26934:251::o;17030:87::-;17103:6;;-1:-1:-1;;;;;17103:6:0;17030:87;:::o;6142:95::-;6189:13;6222:7;6215:14;;;;;:::i;22881:168::-;22956:14;;-1:-1:-1;;;;;22956:14:0;22940:12;:10;:12::i;:::-;-1:-1:-1;;;;;22940:30:0;;22932:73;;;;-1:-1:-1;;;22932:73:0;;;;;;;:::i;:::-;23016:18;:25;;;;;;;;22881:168::o;10272:377::-;10365:4;10382:24;10409:11;:25;10421:12;:10;:12::i;:::-;-1:-1:-1;;;;;10409:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10409:25:0;;;:34;;;;;;;;;;;-1:-1:-1;10462:35:0;;;;10454:85;;;;-1:-1:-1;;;10454:85:0;;;;;;;:::i;:::-;10550:67;10559:12;:10;:12::i;:::-;10573:7;10582:34;10601:15;10582:16;:34;:::i;10550:67::-;-1:-1:-1;10637:4:0;;10272:377;-1:-1:-1;;;10272:377:0:o;18458:59::-;18502:15;18458:59;:::o;19906:214::-;19992:4;20009:20;:18;:20::i;:::-;20040:21;:19;:21::i;:::-;20079:33;20094:9;20105:6;20079:14;:33::i;:::-;20072:40;19906:214;-1:-1:-1;;;19906:214:0:o;20413:668::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;20477:15:::1;::::0;::::1;;20476:16;20468:74;;;;-1:-1:-1::0;;;20468:74:0::1;;;;;;;:::i;:::-;20561:12;::::0;-1:-1:-1;;;;;20561:12:0::1;20553:123;;;;-1:-1:-1::0;;;20553:123:0::1;;;;;;;:::i;:::-;20695:14;::::0;-1:-1:-1;;;;;20695:14:0::1;20687:127;;;;-1:-1:-1::0;;;20687:127:0::1;;;;;;;:::i;:::-;20833:14;::::0;-1:-1:-1;;;;;20833:14:0::1;20825:128;;;;-1:-1:-1::0;;;20825:128:0::1;;;;;;;:::i;:::-;20966:15;:22:::0;;-1:-1:-1;;20966:22:0::1;20984:4;20966:22;::::0;;20999:14:::1;:12;:14::i;:::-;21045:28;18390:5;21045:15;:28;:::i;:::-;21024:18;:49:::0;20413:668::o;26098:100::-;26173:17;;26098:100;:::o;25577:94::-;25649:14;;-1:-1:-1;;;;;25649:14:0;25577:94;:::o;7774:151::-;-1:-1:-1;;;;;7890:18:0;;;7863:7;7890:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7774:151::o;24503:246::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;24605:15:::1;;24589:13;:31;24581:118;;;;-1:-1:-1::0;;;24581:118:0::1;;;;;;;:::i;:::-;24710:15;:31:::0;24503:246::o;25677:207::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25759:24:0;::::1;25751:87;;;;-1:-1:-1::0;;;25751:87:0::1;;;;;;;:::i;:::-;25849:14;:27:::0;;-1:-1:-1;;25849:27:0::1;-1:-1:-1::0;;;;;25849:27:0;;;::::1;::::0;;;::::1;::::0;;25677:207::o;17984:244::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18073:22:0;::::1;18065:73;;;;-1:-1:-1::0;;;18065:73:0::1;;;;;;;:::i;:::-;18175:6;::::0;18154:38:::1;::::0;-1:-1:-1;;;;;18154:38:0;;::::1;::::0;18175:6:::1;::::0;18154:38:::1;::::0;18175:6:::1;::::0;18154:38:::1;18203:6;:17:::0;;-1:-1:-1;;18203:17:0::1;-1:-1:-1::0;;;;;18203:17:0;;;::::1;::::0;;;::::1;::::0;;17984:244::o;23676:119::-;17261:12;:10;:12::i;:::-;-1:-1:-1;;;;;17250:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17250:23:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;:::i;:::-;23755:13:::1;:32:::0;;-1:-1:-1;;23755:32:0::1;-1:-1:-1::0;;;;;23755:32:0;;;::::1;::::0;;;::::1;::::0;;23676:119::o;3552:98::-;3632:10;3552:98;:::o;11139:604::-;-1:-1:-1;;;;;11245:20:0;;11237:70;;;;-1:-1:-1;;;11237:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11326:23:0;;11318:71;;;;-1:-1:-1;;;11318:71:0;;;;;;;:::i;:::-;11402:47;11423:6;11431:9;11442:6;11402:20;:47::i;:::-;-1:-1:-1;;;;;11486:17:0;;11462:21;11486:17;;;;;;;;;;;11522:23;;;;11514:74;;;;-1:-1:-1;;;11514:74:0;;;;;;;:::i;:::-;11619:22;11635:6;11619:13;:22;:::i;:::-;-1:-1:-1;;;;;11599:17:0;;;:9;:17;;;;;;;;;;;:42;;;;11652:20;;;;;;;;:30;;11676:6;;11599:9;11652:30;;11676:6;;11652:30;:::i;:::-;;;;;;;;11717:9;-1:-1:-1;;;;;11700:35:0;11709:6;-1:-1:-1;;;;;11700:35:0;;11728:6;11700:35;;;;;;:::i;:::-;;;;;;;;11139:604;;;;:::o;13660:346::-;-1:-1:-1;;;;;13762:19:0;;13754:68;;;;-1:-1:-1;;;13754:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13841:21:0;;13833:68;;;;-1:-1:-1;;;13833:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13914:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;13966:32;;;;;13944:6;;13966:32;:::i;:::-;;;;;;;;13660:346;;;:::o;12025:338::-;-1:-1:-1;;;;;12109:21:0;;12101:65;;;;-1:-1:-1;;;12101:65:0;;;;;;;:::i;:::-;12179:49;12208:1;12212:7;12221:6;12179:20;:49::i;:::-;12257:6;12241:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12274:18:0;;:9;:18;;;;;;;;;;:28;;12296:6;;12274:9;:28;;12296:6;;12274:28;:::i;:::-;;;;-1:-1:-1;;12318:37:0;;-1:-1:-1;;;;;12318:37:0;;;12335:1;;12318:37;;;;12348:6;;12318:37;:::i;:::-;;;;;;;;12025:338;;:::o;12696:526::-;-1:-1:-1;;;;;12780:21:0;;12772:67;;;;-1:-1:-1;;;12772:67:0;;;;;;;:::i;:::-;12852:49;12873:7;12890:1;12894:6;12852:20;:49::i;:::-;-1:-1:-1;;;;;12939:18:0;;12914:22;12939:18;;;;;;;;;;;12976:24;;;;12968:71;;;;-1:-1:-1;;;12968:71:0;;;;;;;:::i;:::-;13071:23;13088:6;13071:14;:23;:::i;:::-;-1:-1:-1;;;;;13050:18:0;;:9;:18;;;;;;;;;;:44;;;;13129:21;;;;:30;;13153:6;;13129:30;:::i;:::-;13105:9;:21;;;;;;;;:54;;;;:21;13177:37;-1:-1:-1;;;;;13177:37:0;;;;;;;13207:6;;13177:37;:::i;21163:267::-;21216:15;;;;21212:211;;;21247:165;21273:18;;21254:15;:37;21247:165;;21311:14;:12;:14::i;:::-;18390:5;21365:18;;:31;;;;:::i;:::-;21344:18;:52;21247:165;;;21163:267::o;22497:376::-;22570:28;;22551:15;:47;;:81;;;;;22631:1;22602:26;;:30;22551:81;22547:319;;;22699:16;18390:5;22699:3;:16;:::i;:::-;22680:36;;:15;:36;:::i;:::-;22649:28;:67;22760:26;;:30;;22789:1;22760:30;:::i;:::-;22731:26;:59;22805:49;22819:4;18578:19;22805:5;:49::i;7536:175::-;7622:4;7639:42;7649:12;:10;:12::i;:::-;7663:9;7674:6;7639:9;:42::i;21512:537::-;21555:23;18442:7;21602:15;;18502;21582:35;;;;:::i;:::-;21581:52;;;;:::i;:::-;21555:78;;21644:21;18442:7;21687:17;;21669:15;:35;;;;:::i;:::-;21668:52;;;;:::i;:::-;21644:76;;21731:21;18442:7;21774:17;;21756:15;:35;;;;:::i;:::-;21755:52;;;;:::i;:::-;21731:76;;21818:23;18442:7;21863:19;;21845:15;:37;;;;:::i;:::-;21844:54;;;;:::i;:::-;21917:12;;21818:80;;-1:-1:-1;21911:34:0;;-1:-1:-1;;;;;21917:12:0;21931:13;21911:5;:34::i;:::-;21962:14;;21956:36;;-1:-1:-1;;;;;21962:14:0;21978:13;21956:5;:36::i;:::-;22009:14;;22003:38;;-1:-1:-1;;;;;22009:14:0;22025:15;22003:5;:38::i;:::-;21512:537;;;;:::o;14:198:1:-;84:20;;-1:-1:-1;;;;;133:54:1;;123:65;;113:2;;202:1;199;192:12;217:198;;329:2;317:9;308:7;304:23;300:32;297:2;;;350:6;342;335:22;297:2;378:31;399:9;378:31;:::i;420:274::-;;;549:2;537:9;528:7;524:23;520:32;517:2;;;570:6;562;555:22;517:2;598:31;619:9;598:31;:::i;:::-;588:41;;648:40;684:2;673:9;669:18;648:40;:::i;:::-;638:50;;507:187;;;;;:::o;699:342::-;;;;845:2;833:9;824:7;820:23;816:32;813:2;;;866:6;858;851:22;813:2;894:31;915:9;894:31;:::i;:::-;884:41;;944:40;980:2;969:9;965:18;944:40;:::i;:::-;934:50;;1031:2;1020:9;1016:18;1003:32;993:42;;803:238;;;;;:::o;1046:266::-;;;1175:2;1163:9;1154:7;1150:23;1146:32;1143:2;;;1196:6;1188;1181:22;1143:2;1224:31;1245:9;1224:31;:::i;:::-;1214:41;1302:2;1287:18;;;;1274:32;;-1:-1:-1;;;1133:179:1:o;1317:190::-;;1429:2;1417:9;1408:7;1404:23;1400:32;1397:2;;;1450:6;1442;1435:22;1397:2;-1:-1:-1;1478:23:1;;1387:120;-1:-1:-1;1387:120:1:o;1512:226::-;-1:-1:-1;;;;;1676:55:1;;;;1658:74;;1646:2;1631:18;;1613:125::o;1743:187::-;1908:14;;1901:22;1883:41;;1871:2;1856:18;;1838:92::o;1935:603::-;;2076:2;2105;2094:9;2087:21;2137:6;2131:13;2180:6;2175:2;2164:9;2160:18;2153:34;2205:4;2218:140;2232:6;2229:1;2226:13;2218:140;;;2327:14;;;2323:23;;2317:30;2293:17;;;2312:2;2289:26;2282:66;2247:10;;2218:140;;;2376:6;2373:1;2370:13;2367:2;;;2446:4;2441:2;2432:6;2421:9;2417:22;2413:31;2406:45;2367:2;-1:-1:-1;2522:2:1;2501:15;-1:-1:-1;;2497:29:1;2482:45;;;;2529:2;2478:54;;2056:482;-1:-1:-1;;;2056:482:1:o;2543:399::-;2745:2;2727:21;;;2784:2;2764:18;;;2757:30;2823:34;2818:2;2803:18;;2796:62;2894:5;2889:2;2874:18;;2867:33;2932:3;2917:19;;2717:225::o;2947:398::-;3149:2;3131:21;;;3188:2;3168:18;;;3161:30;3227:34;3222:2;3207:18;;3200:62;3298:4;3293:2;3278:18;;3271:32;3335:3;3320:19;;3121:224::o;3350:400::-;3552:2;3534:21;;;3591:2;3571:18;;;3564:30;3630:34;3625:2;3610:18;;3603:62;3701:6;3696:2;3681:18;;3674:34;3740:3;3725:19;;3524:226::o;3755:402::-;3957:2;3939:21;;;3996:2;3976:18;;;3969:30;4035:34;4030:2;4015:18;;4008:62;4106:8;4101:2;4086:18;;4079:36;4147:3;4132:19;;3929:228::o;4162:398::-;4364:2;4346:21;;;4403:2;4383:18;;;4376:30;4442:34;4437:2;4422:18;;4415:62;4513:4;4508:2;4493:18;;4486:32;4550:3;4535:19;;4336:224::o;4565:402::-;4767:2;4749:21;;;4806:2;4786:18;;;4779:30;4845:34;4840:2;4825:18;;4818:62;4916:8;4911:2;4896:18;;4889:36;4957:3;4942:19;;4739:228::o;4972:478::-;5174:2;5156:21;;;5213:2;5193:18;;;5186:30;5252:34;5247:2;5232:18;;5225:62;5323:34;5318:2;5303:18;;5296:62;5395:12;5389:3;5374:19;;5367:41;5440:3;5425:19;;5146:304::o;5455:417::-;5657:2;5639:21;;;5696:2;5676:18;;;5669:30;5735:34;5730:2;5715:18;;5708:62;5806:23;5801:2;5786:18;;5779:51;5862:3;5847:19;;5629:243::o;5877:409::-;6079:2;6061:21;;;6118:2;6098:18;;;6091:30;6157:34;6152:2;6137:18;;6130:62;6228:15;6223:2;6208:18;;6201:43;6276:3;6261:19;;6051:235::o;6291:354::-;6493:2;6475:21;;;6532:2;6512:18;;;6505:30;6571:32;6566:2;6551:18;;6544:60;6636:2;6621:18;;6465:180::o;6650:415::-;6852:2;6834:21;;;6891:2;6871:18;;;6864:30;6930:34;6925:2;6910:18;;6903:62;7001:21;6996:2;6981:18;;6974:49;7055:3;7040:19;;6824:241::o;7070:404::-;7272:2;7254:21;;;7311:2;7291:18;;;7284:30;7350:34;7345:2;7330:18;;7323:62;7421:10;7416:2;7401:18;;7394:38;7464:3;7449:19;;7244:230::o;7479:356::-;7681:2;7663:21;;;7700:18;;;7693:30;7759:34;7754:2;7739:18;;7732:62;7826:2;7811:18;;7653:182::o;7840:400::-;8042:2;8024:21;;;8081:2;8061:18;;;8054:30;8120:34;8115:2;8100:18;;8093:62;8191:6;8186:2;8171:18;;8164:34;8230:3;8215:19;;8014:226::o;8245:488::-;8447:2;8429:21;;;8486:2;8466:18;;;8459:30;8525:34;8520:2;8505:18;;8498:62;8596:34;8591:2;8576:18;;8569:62;8668:22;8662:3;8647:19;;8640:51;8723:3;8708:19;;8419:314::o;8738:397::-;8940:2;8922:21;;;8979:2;8959:18;;;8952:30;9018:34;9013:2;8998:18;;8991:62;9089:3;9084:2;9069:18;;9062:31;9125:3;9110:19;;8912:223::o;9140:415::-;9342:2;9324:21;;;9381:2;9361:18;;;9354:30;9420:34;9415:2;9400:18;;9393:62;9491:21;9486:2;9471:18;;9464:49;9545:3;9530:19;;9314:241::o;9560:401::-;9762:2;9744:21;;;9801:2;9781:18;;;9774:30;9840:34;9835:2;9820:18;;9813:62;9911:7;9906:2;9891:18;;9884:35;9951:3;9936:19;;9734:227::o;9966:491::-;10168:2;10150:21;;;10207:2;10187:18;;;10180:30;10246:34;10241:2;10226:18;;10219:62;10317:34;10312:2;10297:18;;10290:62;10389:25;10383:3;10368:19;;10361:54;10447:3;10432:19;;10140:317::o;10462:414::-;10664:2;10646:21;;;10703:2;10683:18;;;10676:30;10742:34;10737:2;10722:18;;10715:62;10813:20;10808:2;10793:18;;10786:48;10866:3;10851:19;;10636:240::o;10881:490::-;11083:2;11065:21;;;11122:2;11102:18;;;11095:30;11161:34;11156:2;11141:18;;11134:62;11232:34;11227:2;11212:18;;11205:62;11304:24;11298:3;11283:19;;11276:53;11361:3;11346:19;;11055:316::o;11376:421::-;11578:2;11560:21;;;11617:2;11597:18;;;11590:30;11656:34;11651:2;11636:18;;11629:62;11727:27;11722:2;11707:18;;11700:55;11787:3;11772:19;;11550:247::o;11802:400::-;12004:2;11986:21;;;12043:2;12023:18;;;12016:30;12082:34;12077:2;12062:18;;12055:62;12153:6;12148:2;12133:18;;12126:34;12192:3;12177:19;;11976:226::o;12207:397::-;12409:2;12391:21;;;12448:2;12428:18;;;12421:30;12487:34;12482:2;12467:18;;12460:62;12558:3;12553:2;12538:18;;12531:31;12594:3;12579:19;;12381:223::o;12609:401::-;12811:2;12793:21;;;12850:2;12830:18;;;12823:30;12889:34;12884:2;12869:18;;12862:62;12960:7;12955:2;12940:18;;12933:35;13000:3;12985:19;;12783:227::o;13015:355::-;13217:2;13199:21;;;13256:2;13236:18;;;13229:30;13295:33;13290:2;13275:18;;13268:61;13361:2;13346:18;;13189:181::o;13375:177::-;13521:25;;;13509:2;13494:18;;13476:76::o;13557:184::-;13729:4;13717:17;;;;13699:36;;13687:2;13672:18;;13654:87::o;13746:128::-;;13817:1;13813:6;13810:1;13807:13;13804:2;;;13823:18;;:::i;:::-;-1:-1:-1;13859:9:1;;13794:80::o;13879:274::-;;13945:1;13935:2;;-1:-1:-1;;;13977:1:1;13970:88;14081:4;14078:1;14071:15;14109:4;14106:1;14099:15;13935:2;-1:-1:-1;14138:9:1;;13925:228::o;14158:168::-;;14264:1;14260;14256:6;14252:14;14249:1;14246:21;14241:1;14234:9;14227:17;14223:45;14220:2;;;14271:18;;:::i;:::-;-1:-1:-1;14311:9:1;;14210:116::o;14331:125::-;;14399:1;14396;14393:8;14390:2;;;14404:18;;:::i;:::-;-1:-1:-1;14441:9:1;;14380:76::o;14461:437::-;14546:1;14536:12;;14593:1;14583:12;;;14604:2;;14658:4;14650:6;14646:17;14636:27;;14604:2;14711;14703:6;14700:14;14680:18;14677:38;14674:2;;;-1:-1:-1;;;14745:1:1;14738:88;14849:4;14846:1;14839:15;14877:4;14874:1;14867:15;14674:2;;14516:382;;;:::o;14903:184::-;-1:-1:-1;;;14952:1:1;14945:88;15052:4;15049:1;15042:15;15076:4;15073:1;15066:15

Swarm Source

ipfs://87555608123fb75f725b832d2085320c31f021cad913f80a05054c37906c404f
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.