ETH Price: $2,941.09 (-6.06%)
Gas: 7 Gwei

Token

DogenToken (DOGEN)
 

Overview

Max Total Supply

332,055,400,146.657758854081411251 DOGEN

Holders

503 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bringing Doges to decentralized finance.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DogenToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-20
*/

// File: @openzeppelin/contracts/GSN/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity >=0.6.0 <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/contracts/math/SafeMath.sol

pragma solidity >=0.6.0 <0.8.0;

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity >=0.6.0 <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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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: @openzeppelin/contracts/access/Ownable.sol

pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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/Authorizable.sol

pragma solidity 0.6.12;


contract Authorizable is Ownable {

    mapping(address => bool) public authorized;

    modifier onlyAuthorized() {
        require(authorized[msg.sender] || owner() == msg.sender);
        _;
    }

    function addAuthorized(address _toAdd) onlyOwner public {
        authorized[_toAdd] = true;
    }

    function removeAuthorized(address _toRemove) onlyOwner public {
        require(_toRemove != msg.sender);
        authorized[_toRemove] = false;
    }


}

// File: contracts/DogenToken.sol

pragma solidity 0.6.12;




// DogenToken with Governance.
contract DogenToken is ERC20("DogenToken", "DOGEN"), Ownable, Authorizable {
    uint256 private _cap = 420000000000e18;
    uint256 private _totalLock;

    uint256 public lockFromBlock;
    uint256 public lockToBlock;
    uint256 public manualMintLimit = 1000000e18;
    uint256 public manualMinted = 0;


    mapping(address => uint256) private _locks;
    mapping(address => uint256) private _lastUnlockBlock;

    event Lock(address indexed to, uint256 value);

    constructor(uint256 _lockFromBlock, uint256 _lockToBlock) public {
        lockFromBlock = _lockFromBlock;
        lockToBlock = _lockToBlock;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    // Update the total cap - can go up or down but wont destroy prevoius tokens.
    function capUpdate(uint256 _newCap) public onlyAuthorized {
        _cap = _newCap;
    }

     // Update the lockFromBlock
    function lockFromUpdate(uint256 _newLockFrom) public onlyAuthorized {
        lockFromBlock = _newLockFrom;
    }

     // Update the lockToBlock
    function lockToUpdate(uint256 _newLockTo) public onlyAuthorized {
        lockToBlock = _newLockTo;
    }

    function unlockedSupply() public view returns (uint256) {
        return totalSupply().sub(_totalLock);
    }

    function lockedSupply() public view returns (uint256) {
        return totalLock();
    }

    function circulatingSupply() public view returns (uint256) {
        return totalSupply();
    }

    function totalLock() public view returns (uint256) {
        return _totalLock;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded");
        }
    }

    /**
     * @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 override {
        super._transfer(sender, recipient, amount);
        _moveDelegates(_delegates[sender], _delegates[recipient], amount);
    }

    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
        _moveDelegates(address(0), _delegates[_to], _amount);
    }

    function manualMint(address _to, uint256 _amount) public onlyAuthorized {
        if(manualMinted < manualMintLimit){
            _mint(_to, _amount);
            _moveDelegates(address(0), _delegates[_to], _amount);
            manualMinted = manualMinted.add(_amount);
        }
    }

    function totalBalanceOf(address _holder) public view returns (uint256) {
        return _locks[_holder].add(balanceOf(_holder));
    }

    function lockOf(address _holder) public view returns (uint256) {
        return _locks[_holder];
    }

    function lastUnlockBlock(address _holder) public view returns (uint256) {
        return _lastUnlockBlock[_holder];
    }

    function lock(address _holder, uint256 _amount) public onlyOwner {
        require(_holder != address(0), "ERC20: lock to the zero address");
        require(_amount <= balanceOf(_holder), "ERC20: lock amount over blance");

        _transfer(_holder, address(this), _amount);

        _locks[_holder] = _locks[_holder].add(_amount);
        _totalLock = _totalLock.add(_amount);
        if (_lastUnlockBlock[_holder] < lockFromBlock) {
            _lastUnlockBlock[_holder] = lockFromBlock;
        }
        emit Lock(_holder, _amount);
    }

    function canUnlockAmount(address _holder) public view returns (uint256) {
        if (block.number < lockFromBlock) {
            return 0;
        }
        else if (block.number >= lockToBlock) {
            return _locks[_holder];
        }
        else {
            uint256 releaseBlock = block.number.sub(_lastUnlockBlock[_holder]);
            uint256 numberLockBlock = lockToBlock.sub(_lastUnlockBlock[_holder]);
            return _locks[_holder].mul(releaseBlock).div(numberLockBlock);
        }
    }

    function unlock() public {
        require(_locks[msg.sender] > 0, "ERC20: cannot unlock");

        uint256 amount = canUnlockAmount(msg.sender);
        // just for sure
        if (amount > balanceOf(address(this))) {
            amount = balanceOf(address(this));
        }
        _transfer(address(this), msg.sender, amount);
        _locks[msg.sender] = _locks[msg.sender].sub(amount);
        _lastUnlockBlock[msg.sender] = block.number;
        _totalLock = _totalLock.sub(amount);
    }

    // This function is for dev address migrate all balance to a multi sig address
    function transferAll(address _to) public {
        _locks[_to] = _locks[_to].add(_locks[msg.sender]);

        if (_lastUnlockBlock[_to] < lockFromBlock) {
            _lastUnlockBlock[_to] = lockFromBlock;
        }

        if (_lastUnlockBlock[_to] < _lastUnlockBlock[msg.sender]) {
            _lastUnlockBlock[_to] = _lastUnlockBlock[msg.sender];
        }

        _locks[msg.sender] = 0;
        _lastUnlockBlock[msg.sender] = 0;

        _transfer(msg.sender, _to, balanceOf(msg.sender));
    }

    // Copied and modified from YAM code:
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
    // Which is copied and modified from COMPOUND:
    // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

    /// @dev A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "DOGEN::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "DOGEN::delegateBySig: invalid nonce");
        require(now <= expiry, "DOGEN::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "DOGEN::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "DOGEN::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_lockFromBlock","type":"uint256"},{"internalType":"uint256","name":"_lockToBlock","type":"uint256"}],"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Lock","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":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAdd","type":"address"}],"name":"addAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"canUnlockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCap","type":"uint256"}],"name":"capUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_holder","type":"address"}],"name":"lastUnlockBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockFromBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLockFrom","type":"uint256"}],"name":"lockFromUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"lockOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockToBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLockTo","type":"uint256"}],"name":"lockToUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"manualMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toRemove","type":"address"}],"name":"removeAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"totalBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_to","type":"address"}],"name":"transferAll","outputs":[],"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":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526c054d17db76321263eca000000060075569d3c21bcecceda1000000600b556000600c553480156200003557600080fd5b50604051620029a4380380620029a4833981810160405260408110156200005b57600080fd5b508051602091820151604080518082018252600a8152692237b3b2b72a37b5b2b760b11b818601908152825180840190935260058352642227a3a2a760d91b958301959095528051939492939092620000b8916003919062000153565b508051620000ce90600490602084019062000153565b50506005805460ff19166012179055506000620000ea6200014f565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600991909155600a55620001ef565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019657805160ff1916838001178555620001c6565b82800160010185558215620001c6579182015b82811115620001c6578251825591602001919060010190620001a9565b50620001d4929150620001d8565b5090565b5b80821115620001d45760008155600101620001d9565b6127a580620001ff6000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c80637ecebe0011610167578063c38533c6116100ce578063e6b2fb4a11610087578063e6b2fb4a14610873578063e7a324dc1461087b578063f1127ed814610883578063f2fde38b146108d5578063f85b84a4146108fb578063fd3d27b814610903576102a0565b8063c38533c614610787578063c3cda520146107a4578063ca5c7b91146107eb578063cf1c316a146107f3578063dd62ed3e14610819578063e4c5ff4614610847576102a0565b8063a3a7e7f311610120578063a3a7e7f3146106b5578063a457c2d7146106db578063a69df4b514610707578063a9059cbb1461070f578063b4b5ea571461073b578063b918161114610761576102a0565b80637ecebe001461064957806389a2867c1461066f5780638da5cb5b146106955780638e875e1a1461069d5780639358928b146106a557806395d89b41146106ad576102a0565b806340346c491161020b5780635c19a95c116101c45780635c19a95c1461058257806366fc237b146105a85780636fcfff45146105b057806370a08231146105ef578063715018a614610615578063782d6fe11461061d576102a0565b806340346c491461048557806340c10f19146104a2578063485d7d94146104ce5780634b0ee02a146104f4578063587cde1e1461051a5780635a46d3b51461055c576102a0565b806323b872dd1161025d57806323b872dd146103c9578063282d3fdf146103ff578063313ce5671461042b578063355274ea1461044957806339509351146104515780633a1aae351461047d576102a0565b806306fdde03146102a5578063095ea7b3146103225780630cb285e21461036257806318160ddd14610381578063202b17601461039b57806320606b70146103c1575b600080fd5b6102ad61090b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b0381351690602001356109a1565b604080519115158252519081900360200190f35b61037f6004803603602081101561037857600080fd5b50356109bf565b005b6103896109fa565b60408051918252519081900360200190f35b610389600480360360208110156103b157600080fd5b50356001600160a01b0316610a00565b610389610ac6565b61034e600480360360608110156103df57600080fd5b506001600160a01b03813581169160208101359091169060400135610aea565b61037f6004803603604081101561041557600080fd5b506001600160a01b038135169060200135610b71565b610433610d5f565b6040805160ff9092168252519081900360200190f35b610389610d68565b61034e6004803603604081101561046757600080fd5b506001600160a01b038135169060200135610d6e565b610389610dbc565b61037f6004803603602081101561049b57600080fd5b5035610dc2565b61037f600480360360408110156104b857600080fd5b506001600160a01b038135169060200135610dfd565b61037f600480360360208110156104e457600080fd5b50356001600160a01b0316610e8d565b6103896004803603602081101561050a57600080fd5b50356001600160a01b0316610f21565b6105406004803603602081101561053057600080fd5b50356001600160a01b0316610f4e565b604080516001600160a01b039092168252519081900360200190f35b6103896004803603602081101561057257600080fd5b50356001600160a01b0316610f6c565b61037f6004803603602081101561059857600080fd5b50356001600160a01b0316610f87565b610389610f94565b6105d6600480360360208110156105c657600080fd5b50356001600160a01b0316610f9a565b6040805163ffffffff9092168252519081900360200190f35b6103896004803603602081101561060557600080fd5b50356001600160a01b0316610fb2565b61037f610fcd565b6103896004803603604081101561063357600080fd5b506001600160a01b03813516906020013561107a565b6103896004803603602081101561065f57600080fd5b50356001600160a01b0316611282565b6103896004803603602081101561068557600080fd5b50356001600160a01b0316611294565b6105406112af565b6103896112c3565b6103896112c9565b6102ad6112d8565b61037f600480360360208110156106cb57600080fd5b50356001600160a01b0316611339565b61034e600480360360408110156106f157600080fd5b506001600160a01b038135169060200135611427565b61037f61148f565b61034e6004803603604081101561072557600080fd5b506001600160a01b038135169060200135611566565b6103896004803603602081101561075157600080fd5b50356001600160a01b031661157a565b61034e6004803603602081101561077757600080fd5b50356001600160a01b03166115de565b61037f6004803603602081101561079d57600080fd5b50356115f3565b61037f600480360360c08110156107ba57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a0013561162e565b6103896118a1565b61037f6004803603602081101561080957600080fd5b50356001600160a01b03166118ab565b6103896004803603604081101561082f57600080fd5b506001600160a01b038135811691602001351661192c565b61037f6004803603604081101561085d57600080fd5b506001600160a01b038135169060200135611957565b6103896119dc565b6103896119e2565b6108b56004803603604081101561089957600080fd5b5080356001600160a01b0316906020013563ffffffff16611a06565b6040805163ffffffff909316835260208301919091528051918290030190f35b61037f600480360360208110156108eb57600080fd5b50356001600160a01b0316611a33565b610389611b3c565b610389611b42565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b60006109b56109ae611b58565b8484611b5c565b5060015b92915050565b3360009081526006602052604090205460ff16806109ec5750336109e16112af565b6001600160a01b0316145b6109f557600080fd5b600a55565b60025490565b6000600954431015610a1457506000610ac1565b600a544310610a3c57506001600160a01b0381166000908152600d6020526040902054610ac1565b6001600160a01b0382166000908152600e6020526040812054610a60904390611c48565b6001600160a01b0384166000908152600e6020526040812054600a549293509091610a8a91611c48565b6001600160a01b0385166000908152600d6020526040902054909150610abc908290610ab69085611c8a565b90611ce3565b925050505b919050565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610af7848484611d25565b610b6784610b03611b58565b610b62856040518060600160405280602881526020016126ba602891396001600160a01b038a16600090815260016020526040812090610b41611b58565b6001600160a01b031681526020810191909152604001600020549190611d67565b611b5c565b5060019392505050565b610b79611b58565b60055461010090046001600160a01b03908116911614610bce576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b6001600160a01b038216610c29576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206c6f636b20746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610c3282610fb2565b811115610c86576040805162461bcd60e51b815260206004820152601e60248201527f45524332303a206c6f636b20616d6f756e74206f76657220626c616e63650000604482015290519081900360640190fd5b610c91823083611d25565b6001600160a01b0382166000908152600d6020526040902054610cb49082611dfe565b6001600160a01b0383166000908152600d6020526040902055600854610cda9082611dfe565b6008556009546001600160a01b0383166000908152600e60205260409020541015610d1c576009546001600160a01b0383166000908152600e60205260409020555b6040805182815290516001600160a01b038416917f625fed9875dada8643f2418b838ae0bc78d9a148a18eee4ee1979ff0f3f5d427919081900360200190a25050565b60055460ff1690565b60075490565b60006109b5610d7b611b58565b84610b628560016000610d8c611b58565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611dfe565b60085490565b3360009081526006602052604090205460ff1680610def575033610de46112af565b6001600160a01b0316145b610df857600080fd5b600755565b610e05611b58565b60055461010090046001600160a01b03908116911614610e5a576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b610e648282611e58565b6001600160a01b038083166000908152600f6020526040812054610e89921683611f48565b5050565b610e95611b58565b60055461010090046001600160a01b03908116911614610eea576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b6001600160a01b038116331415610f0057600080fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60006109b9610f2f83610fb2565b6001600160a01b0384166000908152600d602052604090205490611dfe565b6001600160a01b039081166000908152600f60205260409020541690565b6001600160a01b03166000908152600d602052604090205490565b610f913382612085565b50565b60095481565b60116020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610fd5611b58565b60055461010090046001600160a01b0390811691161461102a576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60004382106110ba5760405162461bcd60e51b81526004018080602001828103825260288152602001806126716028913960400191505060405180910390fd5b6001600160a01b03831660009081526011602052604090205463ffffffff16806110e85760009150506109b9565b6001600160a01b038416600090815260106020908152604080832063ffffffff600019860181168552925290912054168310611157576001600160a01b03841660009081526010602090815260408083206000199490940163ffffffff168352929052206001015490506109b9565b6001600160a01b038416600090815260106020908152604080832083805290915290205463ffffffff168310156111925760009150506109b9565b600060001982015b8163ffffffff168163ffffffff16111561124b57600282820363ffffffff160481036111c4612522565b506001600160a01b038716600090815260106020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415611226576020015194506109b99350505050565b805163ffffffff1687111561123d57819350611244565b6001820392505b505061119a565b506001600160a01b038516600090815260106020908152604080832063ffffffff9094168352929052206001015491505092915050565b60126020526000908152604090205481565b6001600160a01b03166000908152600e602052604090205490565b60055461010090046001600160a01b031690565b600a5481565b60006112d36109fa565b905090565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109975780601f1061096c57610100808354040283529160200191610997565b336000908152600d6020526040808220546001600160a01b038416835291205461136291611dfe565b6001600160a01b0382166000908152600d6020908152604080832093909355600954600e9091529190205410156113b0576009546001600160a01b0382166000908152600e60205260409020555b336000908152600e6020526040808220546001600160a01b038416835291205410156113f757336000908152600e6020526040808220546001600160a01b03841683529120555b336000818152600d60209081526040808320839055600e909152812055610f91908261142282610fb2565b611d25565b60006109b5611434611b58565b84610b628560405180606001604052806025815260200161274b602591396001600061145e611b58565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d67565b336000908152600d60205260409020546114e7576040805162461bcd60e51b815260206004820152601460248201527345524332303a2063616e6e6f7420756e6c6f636b60601b604482015290519081900360640190fd5b60006114f233610a00565b90506114fd30610fb2565b8111156115105761150d30610fb2565b90505b61151b303383611d25565b336000908152600d60205260409020546115359082611c48565b336000908152600d6020908152604080832093909355600e9052204390556008546115609082611c48565b60085550565b60006109b5611573611b58565b8484611d25565b6001600160a01b03811660009081526011602052604081205463ffffffff16806115a55760006115d7565b6001600160a01b038316600090815260106020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60066020526000908152604090205460ff1681565b3360009081526006602052604090205460ff16806116205750336116156112af565b6001600160a01b0316145b61162957600080fd5b600955565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661165961090b565b8051906020012061166861211a565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa15801561179b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166117ed5760405162461bcd60e51b815260040180806020018281038252602781526020018061264a6027913960400191505060405180910390fd5b6001600160a01b0381166000908152601260205260409020805460018101909155891461184b5760405162461bcd60e51b81526004018080602001828103825260238152602001806126016023913960400191505060405180910390fd5b8742111561188a5760405162461bcd60e51b81526004018080602001828103825260278152602001806125926027913960400191505060405180910390fd5b611894818b612085565b505050505b505050505050565b60006112d3610dbc565b6118b3611b58565b60055461010090046001600160a01b03908116911614611908576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3360009081526006602052604090205460ff16806119845750336119796112af565b6001600160a01b0316145b61198d57600080fd5b600b54600c541015610e89576119a38282611e58565b6001600160a01b038083166000908152600f60205260408120546119c8921683611f48565b600c546119d59082611dfe565b600c555050565b600c5481565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60106020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611a3b611b58565b60055461010090046001600160a01b03908116911614611a90576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b6001600160a01b038116611ad55760405162461bcd60e51b81526004018080602001828103825260268152602001806125b96026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600b5481565b60006112d3600854611b526109fa565b90611c48565b3390565b6001600160a01b038316611ba15760405162461bcd60e51b81526004018080602001828103825260248152602001806127276024913960400191505060405180910390fd5b6001600160a01b038216611be65760405162461bcd60e51b81526004018080602001828103825260228152602001806125df6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006115d783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d67565b600082611c99575060006109b9565b82820282848281611ca657fe5b04146115d75760405162461bcd60e51b81526004018080602001828103825260218152602001806126996021913960400191505060405180910390fd5b60006115d783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061211e565b611d30838383612183565b6001600160a01b038084166000908152600f6020526040808220548584168352912054611d6292918216911683611f48565b505050565b60008184841115611df65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611dbb578181015183820152602001611da3565b50505050905090810190601f168015611de85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156115d7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611eb3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611ebf600083836122de565b600254611ecc9082611dfe565b6002556001600160a01b038216600090815260208190526040902054611ef29082611dfe565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b816001600160a01b0316836001600160a01b031614158015611f6a5750600081115b15611d62576001600160a01b03831615611ffc576001600160a01b03831660009081526011602052604081205463ffffffff169081611faa576000611fdc565b6001600160a01b038516600090815260106020908152604080832063ffffffff60001987011684529091529020600101545b90506000611fea8285611c48565b9050611ff88684848461235f565b5050505b6001600160a01b03821615611d62576001600160a01b03821660009081526011602052604081205463ffffffff169081612037576000612069565b6001600160a01b038416600090815260106020908152604080832063ffffffff60001987011684529091529020600101545b905060006120778285611dfe565b90506118998584848461235f565b6001600160a01b038083166000908152600f6020526040812054909116906120ac84610fb2565b6001600160a01b038581166000818152600f602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612114828483611f48565b50505050565b4690565b6000818361216d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611dbb578181015183820152602001611da3565b50600083858161217957fe5b0495945050505050565b6001600160a01b0383166121c85760405162461bcd60e51b81526004018080602001828103825260258152602001806127026025913960400191505060405180910390fd5b6001600160a01b03821661220d5760405162461bcd60e51b815260040180806020018281038252602381526020018061253a6023913960400191505060405180910390fd5b6122188383836122de565b61225581604051806060016040528060268152602001612624602691396001600160a01b0386166000908152602081905260409020549190611d67565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546122849082611dfe565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6122e9838383611d62565b6001600160a01b038316611d625760075461230c826123066109fa565b90611dfe565b1115611d62576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b60006123834360405180606001604052806035815260200161255d603591396124c4565b905060008463ffffffff161180156123cc57506001600160a01b038516600090815260106020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612409576001600160a01b038516600090815260106020908152604080832063ffffffff6000198901168452909152902060010182905561247a565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152601084528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260119092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081640100000000841061251a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611dbb578181015183820152602001611da3565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373444f47454e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473444f47454e3a3a64656c656761746542795369673a207369676e617475726520657870697265644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373444f47454e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365444f47454e3a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265444f47454e3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206e789aeed7975ad4f25c8564795ca4905b306f0db9b2417fd8bdc4627fe22e4964736f6c634300060c00330000000000000000000000000000000000000000000000000000000000bb53710000000000000000000000000000000000000000000000000000000000bb5372

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c80637ecebe0011610167578063c38533c6116100ce578063e6b2fb4a11610087578063e6b2fb4a14610873578063e7a324dc1461087b578063f1127ed814610883578063f2fde38b146108d5578063f85b84a4146108fb578063fd3d27b814610903576102a0565b8063c38533c614610787578063c3cda520146107a4578063ca5c7b91146107eb578063cf1c316a146107f3578063dd62ed3e14610819578063e4c5ff4614610847576102a0565b8063a3a7e7f311610120578063a3a7e7f3146106b5578063a457c2d7146106db578063a69df4b514610707578063a9059cbb1461070f578063b4b5ea571461073b578063b918161114610761576102a0565b80637ecebe001461064957806389a2867c1461066f5780638da5cb5b146106955780638e875e1a1461069d5780639358928b146106a557806395d89b41146106ad576102a0565b806340346c491161020b5780635c19a95c116101c45780635c19a95c1461058257806366fc237b146105a85780636fcfff45146105b057806370a08231146105ef578063715018a614610615578063782d6fe11461061d576102a0565b806340346c491461048557806340c10f19146104a2578063485d7d94146104ce5780634b0ee02a146104f4578063587cde1e1461051a5780635a46d3b51461055c576102a0565b806323b872dd1161025d57806323b872dd146103c9578063282d3fdf146103ff578063313ce5671461042b578063355274ea1461044957806339509351146104515780633a1aae351461047d576102a0565b806306fdde03146102a5578063095ea7b3146103225780630cb285e21461036257806318160ddd14610381578063202b17601461039b57806320606b70146103c1575b600080fd5b6102ad61090b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b0381351690602001356109a1565b604080519115158252519081900360200190f35b61037f6004803603602081101561037857600080fd5b50356109bf565b005b6103896109fa565b60408051918252519081900360200190f35b610389600480360360208110156103b157600080fd5b50356001600160a01b0316610a00565b610389610ac6565b61034e600480360360608110156103df57600080fd5b506001600160a01b03813581169160208101359091169060400135610aea565b61037f6004803603604081101561041557600080fd5b506001600160a01b038135169060200135610b71565b610433610d5f565b6040805160ff9092168252519081900360200190f35b610389610d68565b61034e6004803603604081101561046757600080fd5b506001600160a01b038135169060200135610d6e565b610389610dbc565b61037f6004803603602081101561049b57600080fd5b5035610dc2565b61037f600480360360408110156104b857600080fd5b506001600160a01b038135169060200135610dfd565b61037f600480360360208110156104e457600080fd5b50356001600160a01b0316610e8d565b6103896004803603602081101561050a57600080fd5b50356001600160a01b0316610f21565b6105406004803603602081101561053057600080fd5b50356001600160a01b0316610f4e565b604080516001600160a01b039092168252519081900360200190f35b6103896004803603602081101561057257600080fd5b50356001600160a01b0316610f6c565b61037f6004803603602081101561059857600080fd5b50356001600160a01b0316610f87565b610389610f94565b6105d6600480360360208110156105c657600080fd5b50356001600160a01b0316610f9a565b6040805163ffffffff9092168252519081900360200190f35b6103896004803603602081101561060557600080fd5b50356001600160a01b0316610fb2565b61037f610fcd565b6103896004803603604081101561063357600080fd5b506001600160a01b03813516906020013561107a565b6103896004803603602081101561065f57600080fd5b50356001600160a01b0316611282565b6103896004803603602081101561068557600080fd5b50356001600160a01b0316611294565b6105406112af565b6103896112c3565b6103896112c9565b6102ad6112d8565b61037f600480360360208110156106cb57600080fd5b50356001600160a01b0316611339565b61034e600480360360408110156106f157600080fd5b506001600160a01b038135169060200135611427565b61037f61148f565b61034e6004803603604081101561072557600080fd5b506001600160a01b038135169060200135611566565b6103896004803603602081101561075157600080fd5b50356001600160a01b031661157a565b61034e6004803603602081101561077757600080fd5b50356001600160a01b03166115de565b61037f6004803603602081101561079d57600080fd5b50356115f3565b61037f600480360360c08110156107ba57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a0013561162e565b6103896118a1565b61037f6004803603602081101561080957600080fd5b50356001600160a01b03166118ab565b6103896004803603604081101561082f57600080fd5b506001600160a01b038135811691602001351661192c565b61037f6004803603604081101561085d57600080fd5b506001600160a01b038135169060200135611957565b6103896119dc565b6103896119e2565b6108b56004803603604081101561089957600080fd5b5080356001600160a01b0316906020013563ffffffff16611a06565b6040805163ffffffff909316835260208301919091528051918290030190f35b61037f600480360360208110156108eb57600080fd5b50356001600160a01b0316611a33565b610389611b3c565b610389611b42565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b60006109b56109ae611b58565b8484611b5c565b5060015b92915050565b3360009081526006602052604090205460ff16806109ec5750336109e16112af565b6001600160a01b0316145b6109f557600080fd5b600a55565b60025490565b6000600954431015610a1457506000610ac1565b600a544310610a3c57506001600160a01b0381166000908152600d6020526040902054610ac1565b6001600160a01b0382166000908152600e6020526040812054610a60904390611c48565b6001600160a01b0384166000908152600e6020526040812054600a549293509091610a8a91611c48565b6001600160a01b0385166000908152600d6020526040902054909150610abc908290610ab69085611c8a565b90611ce3565b925050505b919050565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610af7848484611d25565b610b6784610b03611b58565b610b62856040518060600160405280602881526020016126ba602891396001600160a01b038a16600090815260016020526040812090610b41611b58565b6001600160a01b031681526020810191909152604001600020549190611d67565b611b5c565b5060019392505050565b610b79611b58565b60055461010090046001600160a01b03908116911614610bce576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b6001600160a01b038216610c29576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206c6f636b20746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610c3282610fb2565b811115610c86576040805162461bcd60e51b815260206004820152601e60248201527f45524332303a206c6f636b20616d6f756e74206f76657220626c616e63650000604482015290519081900360640190fd5b610c91823083611d25565b6001600160a01b0382166000908152600d6020526040902054610cb49082611dfe565b6001600160a01b0383166000908152600d6020526040902055600854610cda9082611dfe565b6008556009546001600160a01b0383166000908152600e60205260409020541015610d1c576009546001600160a01b0383166000908152600e60205260409020555b6040805182815290516001600160a01b038416917f625fed9875dada8643f2418b838ae0bc78d9a148a18eee4ee1979ff0f3f5d427919081900360200190a25050565b60055460ff1690565b60075490565b60006109b5610d7b611b58565b84610b628560016000610d8c611b58565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611dfe565b60085490565b3360009081526006602052604090205460ff1680610def575033610de46112af565b6001600160a01b0316145b610df857600080fd5b600755565b610e05611b58565b60055461010090046001600160a01b03908116911614610e5a576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b610e648282611e58565b6001600160a01b038083166000908152600f6020526040812054610e89921683611f48565b5050565b610e95611b58565b60055461010090046001600160a01b03908116911614610eea576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b6001600160a01b038116331415610f0057600080fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60006109b9610f2f83610fb2565b6001600160a01b0384166000908152600d602052604090205490611dfe565b6001600160a01b039081166000908152600f60205260409020541690565b6001600160a01b03166000908152600d602052604090205490565b610f913382612085565b50565b60095481565b60116020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610fd5611b58565b60055461010090046001600160a01b0390811691161461102a576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60004382106110ba5760405162461bcd60e51b81526004018080602001828103825260288152602001806126716028913960400191505060405180910390fd5b6001600160a01b03831660009081526011602052604090205463ffffffff16806110e85760009150506109b9565b6001600160a01b038416600090815260106020908152604080832063ffffffff600019860181168552925290912054168310611157576001600160a01b03841660009081526010602090815260408083206000199490940163ffffffff168352929052206001015490506109b9565b6001600160a01b038416600090815260106020908152604080832083805290915290205463ffffffff168310156111925760009150506109b9565b600060001982015b8163ffffffff168163ffffffff16111561124b57600282820363ffffffff160481036111c4612522565b506001600160a01b038716600090815260106020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415611226576020015194506109b99350505050565b805163ffffffff1687111561123d57819350611244565b6001820392505b505061119a565b506001600160a01b038516600090815260106020908152604080832063ffffffff9094168352929052206001015491505092915050565b60126020526000908152604090205481565b6001600160a01b03166000908152600e602052604090205490565b60055461010090046001600160a01b031690565b600a5481565b60006112d36109fa565b905090565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109975780601f1061096c57610100808354040283529160200191610997565b336000908152600d6020526040808220546001600160a01b038416835291205461136291611dfe565b6001600160a01b0382166000908152600d6020908152604080832093909355600954600e9091529190205410156113b0576009546001600160a01b0382166000908152600e60205260409020555b336000908152600e6020526040808220546001600160a01b038416835291205410156113f757336000908152600e6020526040808220546001600160a01b03841683529120555b336000818152600d60209081526040808320839055600e909152812055610f91908261142282610fb2565b611d25565b60006109b5611434611b58565b84610b628560405180606001604052806025815260200161274b602591396001600061145e611b58565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d67565b336000908152600d60205260409020546114e7576040805162461bcd60e51b815260206004820152601460248201527345524332303a2063616e6e6f7420756e6c6f636b60601b604482015290519081900360640190fd5b60006114f233610a00565b90506114fd30610fb2565b8111156115105761150d30610fb2565b90505b61151b303383611d25565b336000908152600d60205260409020546115359082611c48565b336000908152600d6020908152604080832093909355600e9052204390556008546115609082611c48565b60085550565b60006109b5611573611b58565b8484611d25565b6001600160a01b03811660009081526011602052604081205463ffffffff16806115a55760006115d7565b6001600160a01b038316600090815260106020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60066020526000908152604090205460ff1681565b3360009081526006602052604090205460ff16806116205750336116156112af565b6001600160a01b0316145b61162957600080fd5b600955565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661165961090b565b8051906020012061166861211a565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa15801561179b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166117ed5760405162461bcd60e51b815260040180806020018281038252602781526020018061264a6027913960400191505060405180910390fd5b6001600160a01b0381166000908152601260205260409020805460018101909155891461184b5760405162461bcd60e51b81526004018080602001828103825260238152602001806126016023913960400191505060405180910390fd5b8742111561188a5760405162461bcd60e51b81526004018080602001828103825260278152602001806125926027913960400191505060405180910390fd5b611894818b612085565b505050505b505050505050565b60006112d3610dbc565b6118b3611b58565b60055461010090046001600160a01b03908116911614611908576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3360009081526006602052604090205460ff16806119845750336119796112af565b6001600160a01b0316145b61198d57600080fd5b600b54600c541015610e89576119a38282611e58565b6001600160a01b038083166000908152600f60205260408120546119c8921683611f48565b600c546119d59082611dfe565b600c555050565b600c5481565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60106020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611a3b611b58565b60055461010090046001600160a01b03908116911614611a90576040805162461bcd60e51b815260206004820181905260248201526000805160206126e2833981519152604482015290519081900360640190fd5b6001600160a01b038116611ad55760405162461bcd60e51b81526004018080602001828103825260268152602001806125b96026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600b5481565b60006112d3600854611b526109fa565b90611c48565b3390565b6001600160a01b038316611ba15760405162461bcd60e51b81526004018080602001828103825260248152602001806127276024913960400191505060405180910390fd5b6001600160a01b038216611be65760405162461bcd60e51b81526004018080602001828103825260228152602001806125df6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006115d783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d67565b600082611c99575060006109b9565b82820282848281611ca657fe5b04146115d75760405162461bcd60e51b81526004018080602001828103825260218152602001806126996021913960400191505060405180910390fd5b60006115d783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061211e565b611d30838383612183565b6001600160a01b038084166000908152600f6020526040808220548584168352912054611d6292918216911683611f48565b505050565b60008184841115611df65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611dbb578181015183820152602001611da3565b50505050905090810190601f168015611de85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156115d7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611eb3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611ebf600083836122de565b600254611ecc9082611dfe565b6002556001600160a01b038216600090815260208190526040902054611ef29082611dfe565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b816001600160a01b0316836001600160a01b031614158015611f6a5750600081115b15611d62576001600160a01b03831615611ffc576001600160a01b03831660009081526011602052604081205463ffffffff169081611faa576000611fdc565b6001600160a01b038516600090815260106020908152604080832063ffffffff60001987011684529091529020600101545b90506000611fea8285611c48565b9050611ff88684848461235f565b5050505b6001600160a01b03821615611d62576001600160a01b03821660009081526011602052604081205463ffffffff169081612037576000612069565b6001600160a01b038416600090815260106020908152604080832063ffffffff60001987011684529091529020600101545b905060006120778285611dfe565b90506118998584848461235f565b6001600160a01b038083166000908152600f6020526040812054909116906120ac84610fb2565b6001600160a01b038581166000818152600f602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612114828483611f48565b50505050565b4690565b6000818361216d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611dbb578181015183820152602001611da3565b50600083858161217957fe5b0495945050505050565b6001600160a01b0383166121c85760405162461bcd60e51b81526004018080602001828103825260258152602001806127026025913960400191505060405180910390fd5b6001600160a01b03821661220d5760405162461bcd60e51b815260040180806020018281038252602381526020018061253a6023913960400191505060405180910390fd5b6122188383836122de565b61225581604051806060016040528060268152602001612624602691396001600160a01b0386166000908152602081905260409020549190611d67565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546122849082611dfe565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6122e9838383611d62565b6001600160a01b038316611d625760075461230c826123066109fa565b90611dfe565b1115611d62576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b60006123834360405180606001604052806035815260200161255d603591396124c4565b905060008463ffffffff161180156123cc57506001600160a01b038516600090815260106020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612409576001600160a01b038516600090815260106020908152604080832063ffffffff6000198901168452909152902060010182905561247a565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152601084528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260119092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081640100000000841061251a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611dbb578181015183820152602001611da3565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373444f47454e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473444f47454e3a3a64656c656761746542795369673a207369676e617475726520657870697265644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373444f47454e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365444f47454e3a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265444f47454e3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206e789aeed7975ad4f25c8564795ca4905b306f0db9b2417fd8bdc4627fe22e4964736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000bb53710000000000000000000000000000000000000000000000000000000000bb5372

-----Decoded View---------------
Arg [0] : _lockFromBlock (uint256): 12276593
Arg [1] : _lockToBlock (uint256): 12276594

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000bb5371
Arg [1] : 0000000000000000000000000000000000000000000000000000000000bb5372


Deployed Bytecode Sourcemap

23163:14657:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11379:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13485:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13485:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24338:107;;;;;;;;;;;;;;;;-1:-1:-1;24338:107:0;;:::i;:::-;;12454:100;;;:::i;:::-;;;;;;;;;;;;;;;;27619:523;;;;;;;;;;;;;;;;-1:-1:-1;27619:523:0;-1:-1:-1;;;;;27619:523:0;;:::i;30282:122::-;;;:::i;14136:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14136:321:0;;;;;;;;;;;;;;;;;:::i;27055:556::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27055:556:0;;;;;;;;:::i;12306:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23884:75;;;:::i;14866:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14866:218:0;;;;;;;;:::i;24777:87::-;;;:::i;24050:91::-;;;;;;;;;;;;;;;;-1:-1:-1;24050:91:0;;:::i;26198:162::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26198:162:0;;;;;;;;:::i;22897:153::-;;;;;;;;;;;;;;;;-1:-1:-1;22897:153:0;-1:-1:-1;;;;;22897:153:0;;:::i;26668:136::-;;;;;;;;;;;;;;;;-1:-1:-1;26668:136:0;-1:-1:-1;;;;;26668:136:0;;:::i;31265:149::-;;;;;;;;;;;;;;;;-1:-1:-1;31265:149:0;-1:-1:-1;;;;;31265:149:0;;:::i;:::-;;;;-1:-1:-1;;;;;31265:149:0;;;;;;;;;;;;;;26812:104;;;;;;;;;;;;;;;;-1:-1:-1;26812:104:0;-1:-1:-1;;;;;26812:104:0;;:::i;31558:::-;;;;;;;;;;;;;;;;-1:-1:-1;31558:104:0;-1:-1:-1;;;;;31558:104:0;;:::i;23325:28::-;;;:::i;30160:49::-;;;;;;;;;;;;;;;;-1:-1:-1;30160:49:0;-1:-1:-1;;;;;30160:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;12617:119;;;;;;;;;;;;;;;;-1:-1:-1;12617:119:0;-1:-1:-1;;;;;12617:119:0;;:::i;21953:148::-;;;:::i;34164:1254::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34164:1254:0;;;;;;;;:::i;30696:39::-;;;;;;;;;;;;;;;;-1:-1:-1;30696:39:0;-1:-1:-1;;;;;30696:39:0;;:::i;26924:123::-;;;;;;;;;;;;;;;;-1:-1:-1;26924:123:0;-1:-1:-1;;;;;26924:123:0;;:::i;21311:79::-;;;:::i;23360:26::-;;;:::i;24671:98::-;;;:::i;11581:87::-;;;:::i;28750:517::-;;;;;;;;;;;;;;;;-1:-1:-1;28750:517:0;-1:-1:-1;;;;;28750:517:0;;:::i;15587:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15587:269:0;;;;;;;;:::i;28150:508::-;;;:::i;12949:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12949:175:0;;;;;;;;:::i;33478:255::-;;;;;;;;;;;;;;;;-1:-1:-1;33478:255:0;-1:-1:-1;;;;;33478:255:0;;:::i;22617:42::-;;;;;;;;;;;;;;;;-1:-1:-1;22617:42:0;-1:-1:-1;;;;;22617:42:0;;:::i;24183:115::-;;;;;;;;;;;;;;;;-1:-1:-1;24183:115:0;;:::i;32096:1181::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32096:1181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;24572:91::-;;;:::i;22789:100::-;;;;;;;;;;;;;;;;-1:-1:-1;22789:100:0;-1:-1:-1;;;;;22789:100:0;;:::i;13187:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13187:151:0;;;;;;;;;;:::i;26368:292::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26368:292:0;;;;;;;;:::i;23443:31::-;;;:::i;30498:117::-;;;:::i;30021:70::-;;;;;;;;;;;;;;;;-1:-1:-1;30021:70:0;;-1:-1:-1;;;;;30021:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;22256:244;;;;;;;;;;;;;;;;-1:-1:-1;22256:244:0;-1:-1:-1;;;;;22256:244:0;;:::i;23393:43::-;;;:::i;24453:111::-;;;:::i;11379:83::-;11449:5;11442:12;;;;;;;;-1:-1:-1;;11442:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11416:13;;11442:12;;11449:5;;11442:12;;11449:5;11442:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11379:83;:::o;13485:169::-;13568:4;13585:39;13594:12;:10;:12::i;:::-;13608:7;13617:6;13585:8;:39::i;:::-;-1:-1:-1;13642:4:0;13485:169;;;;;:::o;24338:107::-;22724:10;22713:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;22750:10:0;22739:7;:5;:7::i;:::-;-1:-1:-1;;;;;22739:21:0;;22713:47;22705:56;;;;;;24413:11:::1;:24:::0;24338:107::o;12454:100::-;12534:12;;12454:100;:::o;27619:523::-;27682:7;27721:13;;27706:12;:28;27702:433;;;-1:-1:-1;27758:1:0;27751:8;;27702:433;27806:11;;27790:12;:27;27786:349;;-1:-1:-1;;;;;;27841:15:0;;;;;;:6;:15;;;;;;27834:22;;27786:349;-1:-1:-1;;;;;27938:25:0;;27898:20;27938:25;;;:16;:25;;;;;;27921:43;;:12;;:16;:43::i;:::-;-1:-1:-1;;;;;28021:25:0;;27979:23;28021:25;;;:16;:25;;;;;;28005:11;;27898:66;;-1:-1:-1;27979:23:0;;28005:42;;:15;:42::i;:::-;-1:-1:-1;;;;;28069:15:0;;;;;;:6;:15;;;;;;27979:68;;-1:-1:-1;28069:54:0;;27979:68;;28069:33;;28089:12;28069:19;:33::i;:::-;:37;;:54::i;:::-;28062:61;;;;27786:349;27619:523;;;:::o;30282:122::-;30324:80;30282:122;:::o;14136:321::-;14242:4;14259:36;14269:6;14277:9;14288:6;14259:9;:36::i;:::-;14306:121;14315:6;14323:12;:10;:12::i;:::-;14337:89;14375:6;14337:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14337:19:0;;;;;;:11;:19;;;;;;14357:12;:10;:12::i;:::-;-1:-1:-1;;;;;14337:33:0;;;;;;;;;;;;-1:-1:-1;14337:33:0;;;:89;:37;:89::i;:::-;14306:8;:121::i;:::-;-1:-1:-1;14445:4:0;14136:321;;;;;:::o;27055:556::-;21533:12;:10;:12::i;:::-;21523:6;;;;;-1:-1:-1;;;;;21523:6:0;;;:22;;;21515:67;;;;;-1:-1:-1;;;21515:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21515:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27139:21:0;::::1;27131:65;;;::::0;;-1:-1:-1;;;27131:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27226:18;27236:7;27226:9;:18::i;:::-;27215:7;:29;;27207:72;;;::::0;;-1:-1:-1;;;27207:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27292:42;27302:7;27319:4;27326:7;27292:9;:42::i;:::-;-1:-1:-1::0;;;;;27365:15:0;::::1;;::::0;;;:6:::1;:15;::::0;;;;;:28:::1;::::0;27385:7;27365:19:::1;:28::i;:::-;-1:-1:-1::0;;;;;27347:15:0;::::1;;::::0;;;:6:::1;:15;::::0;;;;:46;27417:10:::1;::::0;:23:::1;::::0;27432:7;27417:14:::1;:23::i;:::-;27404:10;:36:::0;27483:13:::1;::::0;-1:-1:-1;;;;;27455:25:0;::::1;;::::0;;;:16:::1;:25;::::0;;;;;:41:::1;27451:115;;;27541:13;::::0;-1:-1:-1;;;;;27513:25:0;::::1;;::::0;;;:16:::1;:25;::::0;;;;:41;27451:115:::1;27581:22;::::0;;;;;;;-1:-1:-1;;;;;27581:22:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;27055:556:::0;;:::o;12306:83::-;12372:9;;;;12306:83;:::o;23884:75::-;23947:4;;23884:75;:::o;14866:218::-;14954:4;14971:83;14980:12;:10;:12::i;:::-;14994:7;15003:50;15042:10;15003:11;:25;15015:12;:10;:12::i;:::-;-1:-1:-1;;;;;15003:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15003:25:0;;;:34;;;;;;;;;;;:38;:50::i;24777:87::-;24846:10;;24777:87;:::o;24050:91::-;22724:10;22713:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;22750:10:0;22739:7;:5;:7::i;:::-;-1:-1:-1;;;;;22739:21:0;;22713:47;22705:56;;;;;;24119:4:::1;:14:::0;24050:91::o;26198:162::-;21533:12;:10;:12::i;:::-;21523:6;;;;;-1:-1:-1;;;;;21523:6:0;;;:22;;;21515:67;;;;;-1:-1:-1;;;21515:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21515:67:0;;;;;;;;;;;;;;;26270:19:::1;26276:3;26281:7;26270:5;:19::i;:::-;-1:-1:-1::0;;;;;26327:15:0;;::::1;26323:1;26327:15:::0;;;:10:::1;:15;::::0;;;;;26300:52:::1;::::0;26327:15:::1;26344:7:::0;26300:14:::1;:52::i;:::-;26198:162:::0;;:::o;22897:153::-;21533:12;:10;:12::i;:::-;21523:6;;;;;-1:-1:-1;;;;;21523:6:0;;;:22;;;21515:67;;;;;-1:-1:-1;;;21515:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21515:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22978:23:0;::::1;22991:10;22978:23;;22970:32;;;::::0;::::1;;-1:-1:-1::0;;;;;23013:21:0::1;23037:5;23013:21:::0;;;:10:::1;:21;::::0;;;;:29;;-1:-1:-1;;23013:29:0::1;::::0;;22897:153::o;26668:136::-;26730:7;26757:39;26777:18;26787:7;26777:9;:18::i;:::-;-1:-1:-1;;;;;26757:15:0;;;;;;:6;:15;;;;;;;:19;:39::i;31265:149::-;-1:-1:-1;;;;;31385:21:0;;;31353:7;31385:21;;;:10;:21;;;;;;;;31265:149::o;26812:104::-;-1:-1:-1;;;;;26893:15:0;26866:7;26893:15;;;:6;:15;;;;;;;26812:104::o;31558:::-;31622:32;31632:10;31644:9;31622;:32::i;:::-;31558:104;:::o;23325:28::-;;;;:::o;30160:49::-;;;;;;;;;;;;;;;:::o;12617:119::-;-1:-1:-1;;;;;12710:18:0;12683:7;12710:18;;;;;;;;;;;;12617:119::o;21953:148::-;21533:12;:10;:12::i;:::-;21523:6;;;;;-1:-1:-1;;;;;21523:6:0;;;:22;;;21515:67;;;;;-1:-1:-1;;;21515:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21515:67:0;;;;;;;;;;;;;;;22044:6:::1;::::0;22023:40:::1;::::0;22060:1:::1;::::0;22044:6:::1;::::0;::::1;-1:-1:-1::0;;;;;22044:6:0::1;::::0;22023:40:::1;::::0;22060:1;;22023:40:::1;22074:6;:19:::0;;-1:-1:-1;;;;;;22074:19:0::1;::::0;;21953:148::o;34164:1254::-;34272:7;34319:12;34305:11;:26;34297:79;;;;-1:-1:-1;;;34297:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34411:23:0;;34389:19;34411:23;;;:14;:23;;;;;;;;34449:17;34445:58;;34490:1;34483:8;;;;;34445:58;-1:-1:-1;;;;;34563:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;34584:16:0;;34563:38;;;;;;;;;:48;;:63;-1:-1:-1;34559:147:0;;-1:-1:-1;;;;;34650:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;34671:16:0;;;;34650:38;;;;;;;;34686:1;34650:44;;;-1:-1:-1;34643:51:0;;34559:147;-1:-1:-1;;;;;34767:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;34763:88:0;;;34838:1;34831:8;;;;;34763:88;34863:12;-1:-1:-1;;34905:16:0;;34932:428;34947:5;34939:13;;:5;:13;;;34932:428;;;35011:1;34994:13;;;34993:19;;;34985:27;;35054:20;;:::i;:::-;-1:-1:-1;;;;;;35077:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;35054:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35124:27;;35120:229;;;35179:8;;;;-1:-1:-1;35172:15:0;;-1:-1:-1;;;;35172:15:0;35120:229;35213:12;;:26;;;-1:-1:-1;35209:140:0;;;35268:6;35260:14;;35209:140;;;35332:1;35323:6;:10;35315:18;;35209:140;34932:428;;;;;-1:-1:-1;;;;;;35377:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;34164:1254:0;;;;:::o;30696:39::-;;;;;;;;;;;;;:::o;26924:123::-;-1:-1:-1;;;;;27014:25:0;26987:7;27014:25;;;:16;:25;;;;;;;26924:123::o;21311:79::-;21376:6;;;;;-1:-1:-1;;;;;21376:6:0;;21311:79::o;23360:26::-;;;;:::o;24671:98::-;24721:7;24748:13;:11;:13::i;:::-;24741:20;;24671:98;:::o;11581:87::-;11653:7;11646:14;;;;;;;;-1:-1:-1;;11646:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11620:13;;11646:14;;11653:7;;11646:14;;11653:7;11646:14;;;;;;;;;;;;;;;;;;;;;;;;28750:517;28839:10;28832:18;;;;:6;:18;;;;;;;-1:-1:-1;;;;;28816:11:0;;;;;;;:35;;:15;:35::i;:::-;-1:-1:-1;;;;;28802:11:0;;;;;;:6;:11;;;;;;;;:49;;;;28892:13;;28868:16;:21;;;;;;;:37;28864:107;;;28946:13;;-1:-1:-1;;;;;28922:21:0;;;;;;:16;:21;;;;;:37;28864:107;29028:10;29011:28;;;;:16;:28;;;;;;;-1:-1:-1;;;;;28987:21:0;;;;;;;:52;28983:137;;;29097:10;29080:28;;;;:16;:28;;;;;;;-1:-1:-1;;;;;29056:21:0;;;;;;:52;28983:137;29139:10;29153:1;29132:18;;;:6;:18;;;;;;;;:22;;;29165:16;:28;;;;;:32;29210:49;;29232:3;29237:21;29139:10;29237:9;:21::i;:::-;29210:9;:49::i;15587:269::-;15680:4;15697:129;15706:12;:10;:12::i;:::-;15720:7;15729:96;15768:15;15729:96;;;;;;;;;;;;;;;;;:11;:25;15741:12;:10;:12::i;:::-;-1:-1:-1;;;;;15729:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15729:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;28150:508::-;28201:10;28215:1;28194:18;;;:6;:18;;;;;;28186:55;;;;;-1:-1:-1;;;28186:55:0;;;;;;;;;;;;-1:-1:-1;;;28186:55:0;;;;;;;;;;;;;;;28254:14;28271:27;28287:10;28271:15;:27::i;:::-;28254:44;;28348:24;28366:4;28348:9;:24::i;:::-;28339:6;:33;28335:99;;;28398:24;28416:4;28398:9;:24::i;:::-;28389:33;;28335:99;28444:44;28462:4;28469:10;28481:6;28444:9;:44::i;:::-;28527:10;28520:18;;;;:6;:18;;;;;;:30;;28543:6;28520:22;:30::i;:::-;28506:10;28499:18;;;;:6;:18;;;;;;;;:51;;;;28561:16;:28;;;28592:12;28561:43;;28628:10;;:22;;28643:6;28628:14;:22::i;:::-;28615:10;:35;-1:-1:-1;28150:508:0:o;12949:175::-;13035:4;13052:42;13062:12;:10;:12::i;:::-;13076:9;13087:6;13052:9;:42::i;33478:255::-;-1:-1:-1;;;;;33617:23:0;;33570:7;33617:23;;;:14;:23;;;;;;;;33658:16;:67;;33724:1;33658:67;;;-1:-1:-1;;;;;33677:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;33698:16:0;;33677:38;;;;;;;;33713:1;33677:44;;33658:67;33651:74;33478:255;-1:-1:-1;;;33478:255:0:o;22617:42::-;;;;;;;;;;;;;;;:::o;24183:115::-;22724:10;22713:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;22750:10:0;22739:7;:5;:7::i;:::-;-1:-1:-1;;;;;22739:21:0;;22713:47;22705:56;;;;;;24262:13:::1;:28:::0;24183:115::o;32096:1181::-;32289:23;30324:80;32418:6;:4;:6::i;:::-;32402:24;;;;;;32445:12;:10;:12::i;:::-;32339:165;;;;;;;;;;;;;;;;;;;;;;;;;32484:4;32339:165;;;;;;;;;;;;;;;;;;;;;;;32315:200;;;;;;30544:71;32573:140;;;;-1:-1:-1;;;;;32573:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32549:175;;;;;;-1:-1:-1;;;32778:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32754:158;;;;;;;;;-1:-1:-1;32945:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32315:200;;-1:-1:-1;32549:175:0;;32754:158;;-1:-1:-1;;32945:26:0;;;;;;;-1:-1:-1;;32945:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32945:26:0;;-1:-1:-1;;32945:26:0;;;-1:-1:-1;;;;;;;32990:23:0;;32982:75;;;;-1:-1:-1;;;32982:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33085:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;33076:28;;33068:76;;;;-1:-1:-1;;;33068:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33170:6;33163:3;:13;;33155:65;;;;-1:-1:-1;;;33155:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33238:31;33248:9;33259;33238;:31::i;:::-;33231:38;;;;32096:1181;;;;;;;:::o;24572:91::-;24617:7;24644:11;:9;:11::i;22789:100::-;21533:12;:10;:12::i;:::-;21523:6;;;;;-1:-1:-1;;;;;21523:6:0;;;:22;;;21515:67;;;;;-1:-1:-1;;;21515:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21515:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22856:18:0::1;;::::0;;;:10:::1;:18;::::0;;;;:25;;-1:-1:-1;;22856:25:0::1;22877:4;22856:25;::::0;;22789:100::o;13187:151::-;-1:-1:-1;;;;;13303:18:0;;;13276:7;13303:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13187:151::o;26368:292::-;22724:10;22713:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;22750:10:0;22739:7;:5;:7::i;:::-;-1:-1:-1;;;;;22739:21:0;;22713:47;22705:56;;;;;;26469:15:::1;;26454:12;;:30;26451:202;;;26500:19;26506:3;26511:7;26500:5;:19::i;:::-;-1:-1:-1::0;;;;;26561:15:0;;::::1;26557:1;26561:15:::0;;;:10:::1;:15;::::0;;;;;26534:52:::1;::::0;26561:15:::1;26578:7:::0;26534:14:::1;:52::i;:::-;26616:12;::::0;:25:::1;::::0;26633:7;26616:16:::1;:25::i;:::-;26601:12;:40:::0;26368:292;;:::o;23443:31::-;;;;:::o;30498:117::-;30544:71;30498:117;:::o;30021:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22256:244::-;21533:12;:10;:12::i;:::-;21523:6;;;;;-1:-1:-1;;;;;21523:6:0;;;:22;;;21515:67;;;;;-1:-1:-1;;;21515:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21515:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22345:22:0;::::1;22337:73;;;;-1:-1:-1::0;;;22337:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22447:6;::::0;22426:38:::1;::::0;-1:-1:-1;;;;;22426:38:0;;::::1;::::0;22447:6:::1;::::0;::::1;;::::0;22426:38:::1;::::0;;;::::1;22475:6;:17:::0;;-1:-1:-1;;;;;22475:17:0;;::::1;;;-1:-1:-1::0;;;;;;22475:17:0;;::::1;::::0;;;::::1;::::0;;22256:244::o;23393:43::-;;;;:::o;24453:111::-;24500:7;24527:29;24545:10;;24527:13;:11;:13::i;:::-;:17;;:29::i;665:106::-;753:10;665:106;:::o;18734:346::-;-1:-1:-1;;;;;18836:19:0;;18828:68;;;;-1:-1:-1;;;18828:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18915:21:0;;18907:68;;;;-1:-1:-1;;;18907:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18988:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19040:32;;;;;;;;;;;;;;;;;18734:346;;;:::o;5219:136::-;5277:7;5304:43;5308:1;5311;5304:43;;;;;;;;;;;;;;;;;:3;:43::i;6109:471::-;6167:7;6412:6;6408:47;;-1:-1:-1;6442:1:0;6435:8;;6408:47;6479:5;;;6483:1;6479;:5;:1;6503:5;;;;;:10;6495:56;;;;-1:-1:-1;;;6495:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7056:132;7114:7;7141:39;7145:1;7148;7141:39;;;;;;;;;;;;;;;;;:3;:39::i;25859:233::-;25966:42;25982:6;25990:9;26001:6;25966:15;:42::i;:::-;-1:-1:-1;;;;;26034:18:0;;;;;;;:10;:18;;;;;;;26054:21;;;;;;;;26019:65;;26034:18;;;;26054:21;26077:6;26019:14;:65::i;:::-;25859:233;;;:::o;5658:192::-;5744:7;5780:12;5772:6;;;;5764:29;;;;-1:-1:-1;;;5764:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5816:5:0;;;5658:192::o;4755:181::-;4813:7;4845:5;;;4869:6;;;;4861:46;;;;;-1:-1:-1;;;4861:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;17167:378;-1:-1:-1;;;;;17251:21:0;;17243:65;;;;;-1:-1:-1;;;17243:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17321:49;17350:1;17354:7;17363:6;17321:20;:49::i;:::-;17398:12;;:24;;17415:6;17398:16;:24::i;:::-;17383:12;:39;-1:-1:-1;;;;;17454:18:0;;:9;:18;;;;;;;;;;;:30;;17477:6;17454:22;:30::i;:::-;-1:-1:-1;;;;;17433:18:0;;:9;:18;;;;;;;;;;;:51;;;;17500:37;;;;;;;17433:18;;:9;;17500:37;;;;;;;;;;17167:378;;:::o;35827:947::-;35933:6;-1:-1:-1;;;;;35923:16:0;:6;-1:-1:-1;;;;;35923:16:0;;;:30;;;;;35952:1;35943:6;:10;35923:30;35919:848;;;-1:-1:-1;;;;;35974:20:0;;;35970:385;;-1:-1:-1;;;;;36082:22:0;;36063:16;36082:22;;;:14;:22;;;;;;;;;36143:13;:60;;36202:1;36143:60;;;-1:-1:-1;;;;;36159:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;36179:13:0;;36159:34;;;;;;;;36191:1;36159:40;;36143:60;36123:80;-1:-1:-1;36222:17:0;36242:21;36123:80;36256:6;36242:13;:21::i;:::-;36222:41;;36282:57;36299:6;36307:9;36318;36329;36282:16;:57::i;:::-;35970:385;;;;-1:-1:-1;;;;;36375:20:0;;;36371:385;;-1:-1:-1;;;;;36483:22:0;;36464:16;36483:22;;;:14;:22;;;;;;;;;36544:13;:60;;36603:1;36544:60;;;-1:-1:-1;;;;;36560:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;36580:13:0;;36560:34;;;;;;;;36592:1;36560:40;;36544:60;36524:80;-1:-1:-1;36623:17:0;36643:21;36524:80;36657:6;36643:13;:21::i;:::-;36623:41;;36683:57;36700:6;36708:9;36719;36730;36683:16;:57::i;35426:393::-;-1:-1:-1;;;;;35543:21:0;;;35517:23;35543:21;;;:10;:21;;;;;;;;;;35602:20;35554:9;35602;:20::i;:::-;-1:-1:-1;;;;;35633:21:0;;;;;;;:10;:21;;;;;;:33;;-1:-1:-1;;;;;;35633:33:0;;;;;;;;;;35684:54;;35575:47;;-1:-1:-1;35633:33:0;35684:54;;;;;;35633:21;35684:54;35751:60;35766:15;35783:9;35794:16;35751:14;:60::i;:::-;35426:393;;;;:::o;37664:153::-;37774:9;37664:153;:::o;7684:278::-;7770:7;7805:12;7798:5;7790:28;;;;-1:-1:-1;;;7790:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7829:9;7845:1;7841;:5;;;;;;;7684:278;-1:-1:-1;;;;;7684:278:0:o;16346:539::-;-1:-1:-1;;;;;16452:20:0;;16444:70;;;;-1:-1:-1;;;16444:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16533:23:0;;16525:71;;;;-1:-1:-1;;;16525:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16609:47;16630:6;16638:9;16649:6;16609:20;:47::i;:::-;16689:71;16711:6;16689:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16689:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16669:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16794:20;;;;;;;:32;;16819:6;16794:24;:32::i;:::-;-1:-1:-1;;;;;16771:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16842:35;;;;;;;16771:20;;16842:35;;;;;;;;;;;;;16346:539;;;:::o;25051:318::-;25160:44;25187:4;25193:2;25197:6;25160:26;:44::i;:::-;-1:-1:-1;;;;;25221:18:0;;25217:145;;25316:4;;25287:25;25305:6;25287:13;:11;:13::i;:::-;:17;;:25::i;:::-;:33;;25279:71;;;;;-1:-1:-1;;;25279:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;36782:705;36961:18;36982:77;36989:12;36982:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;36961:98;;37091:1;37076:12;:16;;;:85;;;;-1:-1:-1;;;;;;37096:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;37119:16:0;;37096:40;;;;;;;;;:50;:65;;;:50;;:65;37076:85;37072:339;;;-1:-1:-1;;;;;37178:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;37201:16:0;;37178:40;;;;;;;;37216:1;37178:46;:57;;;37072:339;;;37307:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37268:22:0;;-1:-1:-1;37268:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;37268:72:0;;;;;;;;;;;;;37355:25;;;:14;:25;;;;;;:44;;37383:16;;;37355:44;;;;;;;;;;37072:339;37428:51;;;;;;;;;;;;;;-1:-1:-1;;;;;37428:51:0;;;;;;;;;;;36782:705;;;;;:::o;37495:161::-;37570:6;37608:12;37601:5;37597:9;;37589:32;;;;-1:-1:-1;;;37589:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37646:1:0;;37495:161;-1:-1:-1;;37495:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://6e789aeed7975ad4f25c8564795ca4905b306f0db9b2417fd8bdc4627fe22e49
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.