ETH Price: $3,452.89 (-0.99%)
Gas: 2 Gwei

Token

Brr Token (BRR)
 

Overview

Max Total Supply

2,199,999,217,698.121401783698510523 BRR

Holders

236

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,714.232834166245564321 BRR

Value
$0.00
0x688aba8b53caeae1ce6ee84700ba996055cb8686
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BrrToken

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-01
*/

pragma solidity ^0.6.0;

/*      

        ___.                    _____.__                                   
        \_ |________________  _/ ____\__| ____ _____    ____   ____  ____  
         | __ \_  __ \_  __ \ \   __\|  |/    \\__  \  /    \_/ ___\/ __ \ 
         | \_\ \  | \/|  | \/  |  |  |  |   |  \/ __ \|   |  \  \__\  ___/ 
         |___  /__|   |__|     |__|  |__|___|  (____  /___|  /\___  >___  >
             \/                              \/     \/     \/     \/    \/ 
            
            
        --------------------------------------------------------------------
                            https://brr.finance
        --------------------------------------------------------------------
        
                         -- March 25, 2020 --
 Senate approves $2.2 trillion coronavirus bill aimed at slowing economic free fall
                        
                        
*/

// 
/*
 * @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;
    }
}

// 
/**
 * @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);
}

// 
/**
 * @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;
    }
}

// 
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// 
/**
 * @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;
    using Address for address;

    mapping (address => uint256) internal _balances;

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

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

// 
/**
 * @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.
 */
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;
    }
}

// 
interface IUniswapV2Pair {
    function sync() external;
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

/*      

    ___.                    _____.__                                   
    \_ |________________  _/ ____\__| ____ _____    ____   ____  ____  
     | __ \_  __ \_  __ \ \   __\|  |/    \\__  \  /    \_/ ___\/ __ \ 
     | \_\ \  | \/|  | \/  |  |  |  |   |  \/ __ \|   |  \  \__\  ___/ 
     |___  /__|   |__|     |__|  |__|___|  (____  /___|  /\___  >___  >
         \/                              \/     \/     \/     \/    \/ 
            
        
    --------------------------------------------------------------------
                        https://www.brr.finance
    --------------------------------------------------------------------
                        
                        
*/
contract BrrToken is ERC20, Ownable {
    using SafeMath for uint256;

    // BRR

    uint256 public lastBrrTime;

    uint256 public totalBrred;

    uint256 public constant BRR_RATE = 4; // brr rate per day (4%)

    uint256 public constant BRR_REWARD = 1;

    // REWARDS

    uint256 public constant POOL_REWARD = 48;

    uint256 public lastRewardTime;

    uint256 public rewardPool;

    mapping (address => uint256) public claimedRewards;

    mapping (address => uint256) public unclaimedRewards;

    // mapping of top holders that owner update before paying out rewards
    mapping (uint256 => address) public topHolder;

    // maximum of top topHolder
    uint256 public constant MAX_TOP_HOLDERS = 50;

    uint256 internal totalTopHolders;

    // Pause for allowing tokens to only become transferable at the end of sale

    address public pauser;

    bool public paused;

    // UNISWAP

    ERC20 internal WETH = ERC20(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);

    IUniswapV2Factory public uniswapFactory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    address public uniswapPool;

    // MODIFIERS

    modifier onlyPauser() {
        require(pauser == _msgSender(), "BrrToken: caller is not the pauser.");
        _;
    }

    modifier whenNotPaused() {
        require(!paused, "BrrToken: paused");
        _;
    }

    modifier when3DaysBetweenLastSnapshot() {
        require((now - lastRewardTime) >= 3 days, "BrrToken: not enough days since last snapshot taken.");
        _;
    }

    // EVENTS

    event PoolBrred(address brrer, uint256 brrAmount, uint256 newTotalSupply, uint256 newUniswapPoolSupply, uint256 userReward, uint256 newPoolReward);

    event PayoutSnapshotTaken(uint256 totalTopHolders, uint256 totalPayout, uint256 snapshot);

    event PayoutClaimed(address indexed topHolderAddress, uint256 claimedReward);

    constructor()
    public
    Ownable()
    ERC20("Brr Token", "BRR")
    {
        /*
        
            -- March 25, 2020 --
            Senate approves $2.2 trillion coronavirus bill aimed at slowing economic free fall
            
        */
        uint256 initialSupply = 2_200_000_000_000 * 1e18;
        _mint(msg.sender, initialSupply);
        setPauser(msg.sender);
        paused = true;
    }

    function setUniswapPool() external onlyOwner {
        require(uniswapPool == address(0), "BrrToken: pool already created");
        uniswapPool = uniswapFactory.createPair(address(WETH), address(this));
    }

    // PAUSE

    function setPauser(address newPauser) public onlyOwner {
        require(newPauser != address(0), "BrrToken: pauser is the zero address.");
        pauser = newPauser;
    }

    function unpause() external onlyPauser {
        paused = false;

        // Start brring
        lastBrrTime = now;
        lastRewardTime = now;
        rewardPool = 0;
    }

    // TOKEN TRANSFER HOOK

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        require(!paused || msg.sender == pauser, "BrrToken: token transfer while paused and not pauser role.");
    }

    // BRRERS

    function getInfoFor(address addr) public view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        return (
            balanceOf(addr),
            claimedRewards[addr],
            balanceOf(uniswapPool),
            _totalSupply,
            totalBrred,
            getBrrAmount(),
            lastBrrTime,
            lastRewardTime,
            rewardPool
        );
    }

    function brrPool() external {
        uint256 brrAmount = getBrrAmount();
        require(brrAmount >= 1 * 1e18, "brrPool: min brr amount not reached.");

        // Reset last brr time
        lastBrrTime = now;

        uint256 userReward = brrAmount.mul(BRR_REWARD).div(100);
        uint256 poolReward = brrAmount.mul(POOL_REWARD).div(100);
        uint256 finalBrr = brrAmount.sub(userReward).sub(poolReward);

        _totalSupply = _totalSupply.sub(finalBrr);
        _balances[uniswapPool] = _balances[uniswapPool].sub(brrAmount);

        totalBrred = totalBrred.add(finalBrr);
        rewardPool = rewardPool.add(poolReward);

        _balances[msg.sender] = _balances[msg.sender].add(userReward);

        IUniswapV2Pair(uniswapPool).sync();

        emit PoolBrred(msg.sender, brrAmount, _totalSupply, balanceOf(uniswapPool), userReward, poolReward);
    }

    function getBrrAmount() public view returns (uint256) {
        if (paused) return 0;
        uint256 timeBetweenLastBrr = now - lastBrrTime;
        uint256 tokensInUniswapPool = balanceOf(uniswapPool);
        uint256 dayInSeconds = 1 days;
        return (tokensInUniswapPool.mul(BRR_RATE)
            .mul(timeBetweenLastBrr))
            .div(dayInSeconds)
            .div(100);
    }

    // Rewards

    function updateTopHolders(address[] calldata holders) external onlyOwner when3DaysBetweenLastSnapshot {
        totalTopHolders = holders.length < MAX_TOP_HOLDERS ? holders.length : MAX_TOP_HOLDERS;

        // Calculate payout and take snapshot
        uint256 toPayout = rewardPool.div(totalTopHolders);
        uint256 totalPayoutSent = rewardPool;
        for (uint256 i = 0; i < totalTopHolders; i++) {
            unclaimedRewards[holders[i]] = unclaimedRewards[holders[i]].add(toPayout);
        }

        // Reset rewards pool
        lastRewardTime = now;
        rewardPool = 0;

        emit PayoutSnapshotTaken(totalTopHolders, totalPayoutSent, now);
    }

    function claimRewards() external {
        require(unclaimedRewards[msg.sender] > 0, "BrrToken: nothing left to claim.");

        uint256 unclaimedReward = unclaimedRewards[msg.sender];
        unclaimedRewards[msg.sender] = 0;
        claimedRewards[msg.sender] = claimedRewards[msg.sender].add(unclaimedReward);
        _balances[msg.sender] = _balances[msg.sender].add(unclaimedReward);

        emit PayoutClaimed(msg.sender, unclaimedReward);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"topHolderAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"claimedReward","type":"uint256"}],"name":"PayoutClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalTopHolders","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalPayout","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"snapshot","type":"uint256"}],"name":"PayoutSnapshotTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"brrer","type":"address"},{"indexed":false,"internalType":"uint256","name":"brrAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUniswapPoolSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"userReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPoolReward","type":"uint256"}],"name":"PoolBrred","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":"BRR_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BRR_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOP_HOLDERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POOL_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"brrPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedRewards","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":[],"name":"getBrrAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getInfoFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"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":[],"name":"lastBrrTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPauser","type":"address"}],"name":"setPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUniswapPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"topHolder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBrred","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"unclaimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"}],"name":"updateTopHolders","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600f80546001600160a01b031990811673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790915560108054909116735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f1790553480156200005957600080fd5b5060405180604001604052806009815260200168213939102a37b5b2b760b91b8152506040518060400160405280600381526020016221292960e91b8152508160039080519060200190620000b092919062000473565b508051620000c690600490602084019062000473565b50506005805460ff19166012179055506000620000eb6001600160e01b036200019216565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506c1bc49558fd67ce0b69c00000006200016433826001600160e01b036200019716565b62000178336001600160e01b03620002af16565b50600e805460ff60a01b1916600160a01b17905562000515565b335b90565b6001600160a01b038216620001f3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200020a600083836001600160e01b036200039316565b62000226816002546200041160201b6200174e1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002599183906200174e62000411821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002c26001600160e01b036200019216565b60055461010090046001600160a01b039081169116146200032a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116620003715760405162461bcd60e51b8152600401808060200182810382526025815260200180620021366025913960400191505060405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b620003ab8383836200040c60201b620018f51760201c565b600e54600160a01b900460ff161580620003cf5750600e546001600160a01b031633145b6200040c5760405162461bcd60e51b815260040180806020018281038252603a815260200180620020fc603a913960400191505060405180910390fd5b505050565b6000828201838110156200046c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004b657805160ff1916838001178555620004e6565b82800160010185558215620004e6579182015b82811115620004e6578251825591602001919060010190620004c9565b50620004f4929150620004f8565b5090565b6200019491905b80821115620004f45760008155600101620004ff565b611bd780620005256000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80637f738da511610130578063a9059cbb116100b8578063dd62ed3e1161007c578063dd62ed3e14610613578063e6f4b7c114610641578063e84657d414610649578063f2fde38b14610651578063f92e09621461067757610227565b8063a9059cbb146105a9578063b2ed8110146105d5578063bd834345146105dd578063bdd3d82514610603578063d64722251461060b57610227565b8063949813b8116100ff578063949813b8146104d757806395d89b41146104fd5780639fd0506d14610505578063a457c2d71461050d578063a85c6d721461053957610227565b80637f738da5146104b75780638bdb2afa146104bf5780638da5cb5b146104c75780639231cf74146104cf57610227565b806339509351116101b35780635c975abb116101825780635c975abb1461040c57806366666aa91461041457806368f414ae1461041c57806370a0823114610489578063715018a6146104af57610227565b806339509351146103975780633f4ba83a146103c3578063440c96e4146103cb5780634add78991461040457610227565b806319fd7886116101fa57806319fd78861461030b57806323b872dd146103135780632d88af4a14610349578063313ce56714610371578063372500ab1461038f57610227565b806306fdde031461022c578063095ea7b3146102a9578063124c96ac146102e957806318160ddd14610303575b600080fd5b61023461067f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026e578181015183820152602001610256565b50505050905090810190601f16801561029b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d5600480360360408110156102bf57600080fd5b506001600160a01b038135169060200135610716565b604080519115158252519081900360200190f35b6102f1610734565b60408051918252519081900360200190f35b6102f1610739565b6102f161073f565b6102d56004803603606081101561032957600080fd5b506001600160a01b03813581169160208101359091169060400135610744565b61036f6004803603602081101561035f57600080fd5b50356001600160a01b03166107d1565b005b610379610895565b6040805160ff9092168252519081900360200190f35b61036f61089e565b6102d5600480360360408110156103ad57600080fd5b506001600160a01b0381351690602001356109a5565b61036f6109f9565b6103e8600480360360208110156103e157600080fd5b5035610a6a565b604080516001600160a01b039092168252519081900360200190f35b6102f1610a85565b6102d5610a8b565b6102f1610a9b565b6104426004803603602081101561043257600080fd5b50356001600160a01b0316610aa1565b60408051998a5260208a0198909852888801969096526060880194909452608087019290925260a086015260c085015260e084015261010083015251908190036101200190f35b6102f16004803603602081101561049f57600080fd5b50356001600160a01b0316610b17565b61036f610b32565b6102f1610bdf565b6103e8610c5f565b6103e8610c6e565b6102f1610c82565b6102f1600480360360208110156104ed57600080fd5b50356001600160a01b0316610c88565b610234610c9a565b6103e8610cfb565b6102d56004803603604081101561052357600080fd5b506001600160a01b038135169060200135610d0a565b61036f6004803603602081101561054f57600080fd5b81019060208101813564010000000081111561056a57600080fd5b82018360208201111561057c57600080fd5b8035906020019184602083028401116401000000008311171561059e57600080fd5b509092509050610d78565b6102d5600480360360408110156105bf57600080fd5b506001600160a01b038135169060200135610f3e565b6102f1610f52565b6102f1600480360360208110156105f357600080fd5b50356001600160a01b0316610f57565b6103e8610f69565b6102f1610f78565b6102f16004803603604081101561062957600080fd5b506001600160a01b0381358116916020013516610f7e565b61036f610fa9565b61036f6111f2565b61036f6004803603602081101561066757600080fd5b50356001600160a01b0316611352565b6102f161145b565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b505050505090505b90565b600061072a610723611460565b8484611464565b5060015b92915050565b600181565b60025490565b603281565b6000610751848484611550565b6107c78461075d611460565b6107c285604051806060016040528060288152602001611ab8602891396001600160a01b038a1660009081526001602052604081209061079b611460565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6116b716565b611464565b5060019392505050565b6107d9611460565b60055461010090046001600160a01b0390811691161461082e576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b6001600160a01b0381166108735760405162461bcd60e51b8152600401808060200182810382526025815260200180611a4e6025913960400191505060405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60055460ff1690565b336000908152600b60205260409020546108ff576040805162461bcd60e51b815260206004820181905260248201527f427272546f6b656e3a206e6f7468696e67206c65667420746f20636c61696d2e604482015290519081900360640190fd5b336000908152600b60209081526040808320805490849055600a90925290912054610930908263ffffffff61174e16565b336000908152600a6020908152604080832093909355819052205461095b908263ffffffff61174e16565b3360008181526020818152604091829020939093558051848152905191927fec68461f5d4cc45c89e914cb8826a966c73dd35e5f97815ece0a01ffa4a025a692918290030190a250565b600061072a6109b2611460565b846107c285600160006109c3611460565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61174e16565b610a01611460565b600e546001600160a01b03908116911614610a4d5760405162461bcd60e51b81526004018080602001828103825260238152602001806119bd6023913960400191505060405180910390fd5b600e805460ff60a01b191690554260068190556008556000600955565b600c602052600090815260409020546001600160a01b031681565b60065481565b600e54600160a01b900460ff1681565b60095481565b6000806000806000806000806000610ab88a610b17565b6001600160a01b03808c166000908152600a60205260409020546011549091610ae19116610b17565b600254600754610aef610bdf565b6006546008546009549850985098509850985098509850985098509193959799909294969850565b6001600160a01b031660009081526020819052604090205490565b610b3a611460565b60055461010090046001600160a01b03908116911614610b8f576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600e54600090600160a01b900460ff1615610bfc57506000610713565b600654601154429190910390600090610c1d906001600160a01b0316610b17565b905062015180610c576064610c4b838187610c3f88600463ffffffff6117af16565b9063ffffffff6117af16565b9063ffffffff61180816565b935050505090565b6010546001600160a01b031681565b60055461010090046001600160a01b031690565b60085481565b600b6020526000908152604090205481565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561070b5780601f106106e05761010080835404028352916020019161070b565b600e546001600160a01b031681565b600061072a610d17611460565b846107c285604051806060016040528060258152602001611b7d6025913960016000610d41611460565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6116b716565b610d80611460565b60055461010090046001600160a01b03908116911614610dd5576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b6203f48060085442031015610e1b5760405162461bcd60e51b8152600401808060200182810382526034815260200180611b006034913960400191505060405180910390fd5b60328110610e2a576032610e2c565b805b600d819055600954600091610e47919063ffffffff61180816565b60095490915060005b600d54811015610ee857610ead83600b6000888886818110610e6e57fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b031681526020019081526020016000205461174e90919063ffffffff16565b600b6000878785818110610ebd57fe5b602090810292909201356001600160a01b031683525081019190915260400160002055600101610e50565b504260088190556000600955600d5460408051918252602082018490528181019290925290517f1f940d966833560298ca6713905ac7f22fed6550884a6c444adb3b1066e0cefd9181900360600190a150505050565b600061072a610f4b611460565b8484611550565b600481565b600a6020526000908152604090205481565b6011546001600160a01b031681565b60075481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610fb3610bdf565b9050670de0b6b3a7640000811015610ffc5760405162461bcd60e51b8152600401808060200182810382526024815260200180611a736024913960400191505060405180910390fd5b4260065560006110186064610c4b84600163ffffffff6117af16565b905060006110326064610c4b85603063ffffffff6117af16565b905060006110568261104a868663ffffffff61184a16565b9063ffffffff61184a16565b60025490915061106c908263ffffffff61184a16565b6002556011546001600160a01b031660009081526020819052604090205461109a908563ffffffff61184a16565b6011546001600160a01b03166000908152602081905260409020556007546110c8908263ffffffff61174e16565b6007556009546110de908363ffffffff61174e16565b60095533600090815260208190526040902054611101908463ffffffff61174e16565b3360009081526020819052604080822092909255601154825160016209351760e01b0319815292516001600160a01b039091169263fff6cae992600480830193919282900301818387803b15801561115857600080fd5b505af115801561116c573d6000803e3d6000fd5b50506002546011547f9046a1b45c599d4b9a401d051a62d1de074bcb6dd28b51f008879d9523a7896f93503392508791906111af906001600160a01b0316610b17565b604080516001600160a01b03909516855260208501939093528383019190915260608301526080820186905260a08201859052519081900360c00190a150505050565b6111fa611460565b60055461010090046001600160a01b0390811691161461124f576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b6011546001600160a01b0316156112ad576040805162461bcd60e51b815260206004820152601e60248201527f427272546f6b656e3a20706f6f6c20616c726561647920637265617465640000604482015290519081900360640190fd5b601054600f54604080516364e329cb60e11b81526001600160a01b0392831660048201523060248201529051919092169163c9c653969160448083019260209291908290030181600087803b15801561130557600080fd5b505af1158015611319573d6000803e3d6000fd5b505050506040513d602081101561132f57600080fd5b5051601180546001600160a01b0319166001600160a01b03909216919091179055565b61135a611460565b60055461010090046001600160a01b039081169116146113af576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b6001600160a01b0381166113f45760405162461bcd60e51b81526004018080602001828103825260268152602001806119e06026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b603081565b3390565b6001600160a01b0383166114a95760405162461bcd60e51b8152600401808060200182810382526024815260200180611b596024913960400191505060405180910390fd5b6001600160a01b0382166114ee5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a066022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166115955760405162461bcd60e51b8152600401808060200182810382526025815260200180611b346025913960400191505060405180910390fd5b6001600160a01b0382166115da5760405162461bcd60e51b81526004018080602001828103825260238152602001806119606023913960400191505060405180910390fd5b6115e583838361188c565b61162881604051806060016040528060268152602001611a28602691396001600160a01b038616600090815260208190526040902054919063ffffffff6116b716565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461165d908263ffffffff61174e16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156117465760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561170b5781810151838201526020016116f3565b50505050905090810190601f1680156117385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156117a8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000826117be5750600061072e565b828202828482816117cb57fe5b04146117a85760405162461bcd60e51b8152600401808060200182810382526021815260200180611a976021913960400191505060405180910390fd5b60006117a883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118fa565b60006117a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116b7565b6118978383836118f5565b600e54600160a01b900460ff1615806118ba5750600e546001600160a01b031633145b6118f55760405162461bcd60e51b815260040180806020018281038252603a815260200180611983603a913960400191505060405180910390fd5b505050565b600081836119495760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600083858161195557fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373427272546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e427272546f6b656e3a2063616c6c6572206973206e6f7420746865207061757365722e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365427272546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e627272506f6f6c3a206d696e2062727220616d6f756e74206e6f7420726561636865642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572427272546f6b656e3a206e6f7420656e6f75676820646179732073696e6365206c61737420736e617073686f742074616b656e2e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208e20303b9bd0da7caf85644efc66719b6434e8c7acce9f1eb1a3c18e663b19cc64736f6c63430006060033427272546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e427272546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c80637f738da511610130578063a9059cbb116100b8578063dd62ed3e1161007c578063dd62ed3e14610613578063e6f4b7c114610641578063e84657d414610649578063f2fde38b14610651578063f92e09621461067757610227565b8063a9059cbb146105a9578063b2ed8110146105d5578063bd834345146105dd578063bdd3d82514610603578063d64722251461060b57610227565b8063949813b8116100ff578063949813b8146104d757806395d89b41146104fd5780639fd0506d14610505578063a457c2d71461050d578063a85c6d721461053957610227565b80637f738da5146104b75780638bdb2afa146104bf5780638da5cb5b146104c75780639231cf74146104cf57610227565b806339509351116101b35780635c975abb116101825780635c975abb1461040c57806366666aa91461041457806368f414ae1461041c57806370a0823114610489578063715018a6146104af57610227565b806339509351146103975780633f4ba83a146103c3578063440c96e4146103cb5780634add78991461040457610227565b806319fd7886116101fa57806319fd78861461030b57806323b872dd146103135780632d88af4a14610349578063313ce56714610371578063372500ab1461038f57610227565b806306fdde031461022c578063095ea7b3146102a9578063124c96ac146102e957806318160ddd14610303575b600080fd5b61023461067f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026e578181015183820152602001610256565b50505050905090810190601f16801561029b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d5600480360360408110156102bf57600080fd5b506001600160a01b038135169060200135610716565b604080519115158252519081900360200190f35b6102f1610734565b60408051918252519081900360200190f35b6102f1610739565b6102f161073f565b6102d56004803603606081101561032957600080fd5b506001600160a01b03813581169160208101359091169060400135610744565b61036f6004803603602081101561035f57600080fd5b50356001600160a01b03166107d1565b005b610379610895565b6040805160ff9092168252519081900360200190f35b61036f61089e565b6102d5600480360360408110156103ad57600080fd5b506001600160a01b0381351690602001356109a5565b61036f6109f9565b6103e8600480360360208110156103e157600080fd5b5035610a6a565b604080516001600160a01b039092168252519081900360200190f35b6102f1610a85565b6102d5610a8b565b6102f1610a9b565b6104426004803603602081101561043257600080fd5b50356001600160a01b0316610aa1565b60408051998a5260208a0198909852888801969096526060880194909452608087019290925260a086015260c085015260e084015261010083015251908190036101200190f35b6102f16004803603602081101561049f57600080fd5b50356001600160a01b0316610b17565b61036f610b32565b6102f1610bdf565b6103e8610c5f565b6103e8610c6e565b6102f1610c82565b6102f1600480360360208110156104ed57600080fd5b50356001600160a01b0316610c88565b610234610c9a565b6103e8610cfb565b6102d56004803603604081101561052357600080fd5b506001600160a01b038135169060200135610d0a565b61036f6004803603602081101561054f57600080fd5b81019060208101813564010000000081111561056a57600080fd5b82018360208201111561057c57600080fd5b8035906020019184602083028401116401000000008311171561059e57600080fd5b509092509050610d78565b6102d5600480360360408110156105bf57600080fd5b506001600160a01b038135169060200135610f3e565b6102f1610f52565b6102f1600480360360208110156105f357600080fd5b50356001600160a01b0316610f57565b6103e8610f69565b6102f1610f78565b6102f16004803603604081101561062957600080fd5b506001600160a01b0381358116916020013516610f7e565b61036f610fa9565b61036f6111f2565b61036f6004803603602081101561066757600080fd5b50356001600160a01b0316611352565b6102f161145b565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b505050505090505b90565b600061072a610723611460565b8484611464565b5060015b92915050565b600181565b60025490565b603281565b6000610751848484611550565b6107c78461075d611460565b6107c285604051806060016040528060288152602001611ab8602891396001600160a01b038a1660009081526001602052604081209061079b611460565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6116b716565b611464565b5060019392505050565b6107d9611460565b60055461010090046001600160a01b0390811691161461082e576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b6001600160a01b0381166108735760405162461bcd60e51b8152600401808060200182810382526025815260200180611a4e6025913960400191505060405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60055460ff1690565b336000908152600b60205260409020546108ff576040805162461bcd60e51b815260206004820181905260248201527f427272546f6b656e3a206e6f7468696e67206c65667420746f20636c61696d2e604482015290519081900360640190fd5b336000908152600b60209081526040808320805490849055600a90925290912054610930908263ffffffff61174e16565b336000908152600a6020908152604080832093909355819052205461095b908263ffffffff61174e16565b3360008181526020818152604091829020939093558051848152905191927fec68461f5d4cc45c89e914cb8826a966c73dd35e5f97815ece0a01ffa4a025a692918290030190a250565b600061072a6109b2611460565b846107c285600160006109c3611460565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61174e16565b610a01611460565b600e546001600160a01b03908116911614610a4d5760405162461bcd60e51b81526004018080602001828103825260238152602001806119bd6023913960400191505060405180910390fd5b600e805460ff60a01b191690554260068190556008556000600955565b600c602052600090815260409020546001600160a01b031681565b60065481565b600e54600160a01b900460ff1681565b60095481565b6000806000806000806000806000610ab88a610b17565b6001600160a01b03808c166000908152600a60205260409020546011549091610ae19116610b17565b600254600754610aef610bdf565b6006546008546009549850985098509850985098509850985098509193959799909294969850565b6001600160a01b031660009081526020819052604090205490565b610b3a611460565b60055461010090046001600160a01b03908116911614610b8f576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600e54600090600160a01b900460ff1615610bfc57506000610713565b600654601154429190910390600090610c1d906001600160a01b0316610b17565b905062015180610c576064610c4b838187610c3f88600463ffffffff6117af16565b9063ffffffff6117af16565b9063ffffffff61180816565b935050505090565b6010546001600160a01b031681565b60055461010090046001600160a01b031690565b60085481565b600b6020526000908152604090205481565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561070b5780601f106106e05761010080835404028352916020019161070b565b600e546001600160a01b031681565b600061072a610d17611460565b846107c285604051806060016040528060258152602001611b7d6025913960016000610d41611460565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6116b716565b610d80611460565b60055461010090046001600160a01b03908116911614610dd5576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b6203f48060085442031015610e1b5760405162461bcd60e51b8152600401808060200182810382526034815260200180611b006034913960400191505060405180910390fd5b60328110610e2a576032610e2c565b805b600d819055600954600091610e47919063ffffffff61180816565b60095490915060005b600d54811015610ee857610ead83600b6000888886818110610e6e57fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b031681526020019081526020016000205461174e90919063ffffffff16565b600b6000878785818110610ebd57fe5b602090810292909201356001600160a01b031683525081019190915260400160002055600101610e50565b504260088190556000600955600d5460408051918252602082018490528181019290925290517f1f940d966833560298ca6713905ac7f22fed6550884a6c444adb3b1066e0cefd9181900360600190a150505050565b600061072a610f4b611460565b8484611550565b600481565b600a6020526000908152604090205481565b6011546001600160a01b031681565b60075481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610fb3610bdf565b9050670de0b6b3a7640000811015610ffc5760405162461bcd60e51b8152600401808060200182810382526024815260200180611a736024913960400191505060405180910390fd5b4260065560006110186064610c4b84600163ffffffff6117af16565b905060006110326064610c4b85603063ffffffff6117af16565b905060006110568261104a868663ffffffff61184a16565b9063ffffffff61184a16565b60025490915061106c908263ffffffff61184a16565b6002556011546001600160a01b031660009081526020819052604090205461109a908563ffffffff61184a16565b6011546001600160a01b03166000908152602081905260409020556007546110c8908263ffffffff61174e16565b6007556009546110de908363ffffffff61174e16565b60095533600090815260208190526040902054611101908463ffffffff61174e16565b3360009081526020819052604080822092909255601154825160016209351760e01b0319815292516001600160a01b039091169263fff6cae992600480830193919282900301818387803b15801561115857600080fd5b505af115801561116c573d6000803e3d6000fd5b50506002546011547f9046a1b45c599d4b9a401d051a62d1de074bcb6dd28b51f008879d9523a7896f93503392508791906111af906001600160a01b0316610b17565b604080516001600160a01b03909516855260208501939093528383019190915260608301526080820186905260a08201859052519081900360c00190a150505050565b6111fa611460565b60055461010090046001600160a01b0390811691161461124f576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b6011546001600160a01b0316156112ad576040805162461bcd60e51b815260206004820152601e60248201527f427272546f6b656e3a20706f6f6c20616c726561647920637265617465640000604482015290519081900360640190fd5b601054600f54604080516364e329cb60e11b81526001600160a01b0392831660048201523060248201529051919092169163c9c653969160448083019260209291908290030181600087803b15801561130557600080fd5b505af1158015611319573d6000803e3d6000fd5b505050506040513d602081101561132f57600080fd5b5051601180546001600160a01b0319166001600160a01b03909216919091179055565b61135a611460565b60055461010090046001600160a01b039081169116146113af576040805162461bcd60e51b81526020600482018190526024820152600080516020611ae0833981519152604482015290519081900360640190fd5b6001600160a01b0381166113f45760405162461bcd60e51b81526004018080602001828103825260268152602001806119e06026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b603081565b3390565b6001600160a01b0383166114a95760405162461bcd60e51b8152600401808060200182810382526024815260200180611b596024913960400191505060405180910390fd5b6001600160a01b0382166114ee5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a066022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166115955760405162461bcd60e51b8152600401808060200182810382526025815260200180611b346025913960400191505060405180910390fd5b6001600160a01b0382166115da5760405162461bcd60e51b81526004018080602001828103825260238152602001806119606023913960400191505060405180910390fd5b6115e583838361188c565b61162881604051806060016040528060268152602001611a28602691396001600160a01b038616600090815260208190526040902054919063ffffffff6116b716565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461165d908263ffffffff61174e16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156117465760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561170b5781810151838201526020016116f3565b50505050905090810190601f1680156117385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156117a8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000826117be5750600061072e565b828202828482816117cb57fe5b04146117a85760405162461bcd60e51b8152600401808060200182810382526021815260200180611a976021913960400191505060405180910390fd5b60006117a883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118fa565b60006117a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116b7565b6118978383836118f5565b600e54600160a01b900460ff1615806118ba5750600e546001600160a01b031633145b6118f55760405162461bcd60e51b815260040180806020018281038252603a815260200180611983603a913960400191505060405180910390fd5b505050565b600081836119495760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600083858161195557fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373427272546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e427272546f6b656e3a2063616c6c6572206973206e6f7420746865207061757365722e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365427272546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e627272506f6f6c3a206d696e2062727220616d6f756e74206e6f7420726561636865642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572427272546f6b656e3a206e6f7420656e6f75676820646179732073696e6365206c61737420736e617073686f742074616b656e2e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208e20303b9bd0da7caf85644efc66719b6434e8c7acce9f1eb1a3c18e663b19cc64736f6c63430006060033

Deployed Bytecode Sourcemap

30071:6254:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30071:6254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;18123:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18123:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20229:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20229:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30302:38;;;:::i;:::-;;;;;;;;;;;;;;;;19198:100;;;:::i;30770:44::-;;;:::i;20872:321::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20872:321:0;;;;;;;;;;;;;;;;;:::i;32696:176::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32696:176:0;-1:-1:-1;;;;;32696:176:0;;:::i;:::-;;19050:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35859:463;;;:::i;21602:218::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21602:218:0;;;;;;;;:::i;32880:183::-;;;:::i;30683:45::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30683:45:0;;:::i;:::-;;;;-1:-1:-1;;;;;30683:45:0;;;;;;;;;;;;;;30163:26;;;:::i;30977:18::-;;;:::i;30454:25::-;;;:::i;33400:436::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33400:436:0;-1:-1:-1;;;;;33400:436:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19361:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19361:119:0;-1:-1:-1;;;;;19361:119:0;;:::i;28595:148::-;;;:::i;34742:399::-;;;:::i;31102:103::-;;;:::i;27953:79::-;;;:::i;30416:29::-;;;:::i;30547:52::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30547:52:0;-1:-1:-1;;;;;30547:52:0;;:::i;18325:87::-;;;:::i;30947:21::-;;;:::i;22323:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;22323:269:0;;;;;;;;:::i;35167:684::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;35167:684:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;35167:684:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;35167:684:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;35167:684:0;;-1:-1:-1;35167:684:0;-1:-1:-1;35167:684:0;:::i;19693:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19693:175:0;;;;;;;;:::i;30232:36::-;;;:::i;30488:50::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30488:50:0;-1:-1:-1;;;;;30488:50:0;;:::i;31214:26::-;;;:::i;30198:25::-;;;:::i;19931:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19931:151:0;;;;;;;;;;:::i;33844:890::-;;;:::i;32460:212::-;;;:::i;28898:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28898:244:0;-1:-1:-1;;;;;28898:244:0;;:::i;30367:40::-;;;:::i;18123:83::-;18193:5;18186:12;;;;;;;;-1:-1:-1;;18186:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18160:13;;18186:12;;18193:5;;18186:12;;18193:5;18186:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18123:83;;:::o;20229:169::-;20312:4;20329:39;20338:12;:10;:12::i;:::-;20352:7;20361:6;20329:8;:39::i;:::-;-1:-1:-1;20386:4:0;20229:169;;;;;:::o;30302:38::-;30339:1;30302:38;:::o;19198:100::-;19278:12;;19198:100;:::o;30770:44::-;30812:2;30770:44;:::o;20872:321::-;20978:4;20995:36;21005:6;21013:9;21024:6;20995:9;:36::i;:::-;21042:121;21051:6;21059:12;:10;:12::i;:::-;21073:89;21111:6;21073:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21073:19:0;;;;;;:11;:19;;;;;;21093:12;:10;:12::i;:::-;-1:-1:-1;;;;;21073:33:0;;;;;;;;;;;;-1:-1:-1;21073:33:0;;;:89;;:37;:89;:::i;:::-;21042:8;:121::i;:::-;-1:-1:-1;21181:4:0;20872:321;;;;;:::o;32696:176::-;28175:12;:10;:12::i;:::-;28165:6;;;;;-1:-1:-1;;;;;28165:6:0;;;:22;;;28157:67;;;;;-1:-1:-1;;;28157:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28157:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32770:23:0;::::1;32762:73;;;;-1:-1:-1::0;;;32762:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32846:6;:18:::0;;-1:-1:-1;;;;;;32846:18:0::1;-1:-1:-1::0;;;;;32846:18:0;;;::::1;::::0;;;::::1;::::0;;32696:176::o;19050:83::-;19116:9;;;;19050:83;:::o;35859:463::-;35928:10;35942:1;35911:28;;;:16;:28;;;;;;35903:77;;;;;-1:-1:-1;;;35903:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36036:10;35993:23;36019:28;;;:16;:28;;;;;;;;;;36058:32;;;;36130:14;:26;;;;;;;:47;;36019:28;36130:47;:30;:47;:::i;:::-;36116:10;36101:26;;;;:14;:26;;;;;;;;:76;;;;36212:21;;;;;:42;;36238:15;36212:42;:25;:42;:::i;:::-;36198:10;36188:9;:21;;;;;;;;;;;;:66;;;;36272:42;;;;;;;36198:10;;36272:42;;;;;;;;;35859:463;:::o;21602:218::-;21690:4;21707:83;21716:12;:10;:12::i;:::-;21730:7;21739:50;21778:10;21739:11;:25;21751:12;:10;:12::i;:::-;-1:-1:-1;;;;;21739:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21739:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;32880:183::-;31320:12;:10;:12::i;:::-;31310:6;;-1:-1:-1;;;;;31310:6:0;;;:22;;;31302:70;;;;-1:-1:-1;;;31302:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32930:6:::1;:14:::0;;-1:-1:-1;;;;32930:14:0::1;::::0;;32996:3:::1;32982:11;:17:::0;;;-1:-1:-1;33010:20:0;32939:5:::1;33041:10;:14:::0;32880:183::o;30683:45::-;;;;;;;;;;;;-1:-1:-1;;;;;30683:45:0;;:::o;30163:26::-;;;;:::o;30977:18::-;;;-1:-1:-1;;;30977:18:0;;;;;:::o;30454:25::-;;;;:::o;33400:436::-;33455:7;33464;33473;33482;33491;33500;33509;33518;33527;33569:15;33579:4;33569:9;:15::i;:::-;-1:-1:-1;;;;;33599:20:0;;;;;;;:14;:20;;;;;;33644:11;;33599:20;;33634:22;;33644:11;33634:9;:22::i;:::-;33671:12;;33698:10;;33723:14;:12;:14::i;:::-;33752:11;;33778:14;;33807:10;;33547:281;;;;;;;;;;;;;;;;;;33400:436;;;;;;;;;;;:::o;19361:119::-;-1:-1:-1;;;;;19454:18:0;19427:7;19454:18;;;;;;;;;;;;19361:119::o;28595:148::-;28175:12;:10;:12::i;:::-;28165:6;;;;;-1:-1:-1;;;;;28165:6:0;;;:22;;;28157:67;;;;;-1:-1:-1;;;28157:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28157:67:0;;;;;;;;;;;;;;;28686:6:::1;::::0;28665:40:::1;::::0;28702:1:::1;::::0;28686:6:::1;::::0;::::1;-1:-1:-1::0;;;;;28686:6:0::1;::::0;28665:40:::1;::::0;28702:1;;28665:40:::1;28716:6;:19:::0;;-1:-1:-1;;;;;;28716:19:0::1;::::0;;28595:148::o;34742:399::-;34811:6;;34787:7;;-1:-1:-1;;;34811:6:0;;;;34807:20;;;-1:-1:-1;34826:1:0;34819:8;;34807:20;34873:11;;34935;;34867:3;:17;;;;;34838:26;;34925:22;;-1:-1:-1;;;;;34935:11:0;34925:9;:22::i;:::-;34895:52;-1:-1:-1;34981:6:0;35005:128;35129:3;35005:105;34981:6;35005:105;35058:18;35006:33;34895:52;30267:1;35006:33;:23;:33;:::i;:::-;:51;:71;:51;:71;:::i;:::-;35005:91;:105;:91;:105;:::i;:128::-;34998:135;;;;;34742:399;:::o;31102:103::-;;;-1:-1:-1;;;;;31102:103:0;;:::o;27953:79::-;28018:6;;;;;-1:-1:-1;;;;;28018:6:0;;27953:79::o;30416:29::-;;;;:::o;30547:52::-;;;;;;;;;;;;;:::o;18325:87::-;18397:7;18390:14;;;;;;;;-1:-1:-1;;18390:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18364:13;;18390:14;;18397:7;;18390:14;;18397:7;18390:14;;;;;;;;;;;;;;;;;;;;;;;;30947:21;;;-1:-1:-1;;;;;30947:21:0;;:::o;22323:269::-;22416:4;22433:129;22442:12;:10;:12::i;:::-;22456:7;22465:96;22504:15;22465:96;;;;;;;;;;;;;;;;;:11;:25;22477:12;:10;:12::i;:::-;-1:-1:-1;;;;;22465:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22465:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;35167:684::-;28175:12;:10;:12::i;:::-;28165:6;;;;;-1:-1:-1;;;;;28165:6:0;;;:22;;;28157:67;;;;;-1:-1:-1;;;28157:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28157:67:0;;;;;;;;;;;;;;;31585:6:::1;31566:14;;31560:3;:20;31559:32;;31551:97;;;;-1:-1:-1::0;;;31551:97:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30812:2:::2;35298:32:::0;::::2;:67;;30812:2;35298:67;;;35333:7:::0;35298:67:::2;35280:15;:85:::0;;;35444:10:::2;::::0;35425:16:::2;::::0;35444:31:::2;::::0;:10;:31:::2;:14;:31;:::i;:::-;35512:10;::::0;35425:50;;-1:-1:-1;35486:23:0::2;35533:146;35557:15;;35553:1;:19;35533:146;;;35625:42;35658:8;35625:16;:28;35642:7;;35650:1;35642:10;;;;;;;;;;;;;-1:-1:-1::0;;;;;35642:10:0::2;-1:-1:-1::0;;;;;35625:28:0::2;-1:-1:-1::0;;;;;35625:28:0::2;;;;;;;;;;;;;:32;;:42;;;;:::i;:::-;35594:16;:28;35611:7;;35619:1;35611:10;;;;;;;;::::0;;::::2;::::0;;;::::2;;-1:-1:-1::0;;;;;35611:10:0::2;35594:28:::0;;-1:-1:-1;35594:28:0;::::2;::::0;;;;;;-1:-1:-1;35594:28:0;:73;35574:3:::2;;35533:146;;;-1:-1:-1::0;35739:3:0::2;35722:14;:20:::0;;;35766:1:::2;35753:10;:14:::0;35805:15:::2;::::0;35785:58:::2;::::0;;;;;::::2;::::0;::::2;::::0;;;;;;;;;;;;::::2;::::0;;;;;;;::::2;31659:1;;35167:684:::0;;:::o;19693:175::-;19779:4;19796:42;19806:12;:10;:12::i;:::-;19820:9;19831:6;19796:9;:42::i;30232:36::-;30267:1;30232:36;:::o;30488:50::-;;;;;;;;;;;;;:::o;31214:26::-;;;-1:-1:-1;;;;;31214:26:0;;:::o;30198:25::-;;;;:::o;19931:151::-;-1:-1:-1;;;;;20047:18:0;;;20020:7;20047:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19931:151::o;33844:890::-;33883:17;33903:14;:12;:14::i;:::-;33883:34;;33949:8;33936:9;:21;;33928:70;;;;-1:-1:-1;;;33928:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34057:3;34043:11;:17;34073:18;34094:34;34124:3;34094:25;:9;30339:1;34094:25;:13;:25;:::i;:34::-;34073:55;-1:-1:-1;34139:18:0;34160:35;34191:3;34160:26;:9;30405:2;34160:26;:13;:26;:::i;:35::-;34139:56;-1:-1:-1;34206:16:0;34225:41;34139:56;34225:25;:9;34239:10;34225:25;:13;:25;:::i;:::-;:29;:41;:29;:41;:::i;:::-;34294:12;;34206:60;;-1:-1:-1;34294:26:0;;34206:60;34294:26;:16;:26;:::i;:::-;34279:12;:41;34366:11;;-1:-1:-1;;;;;34366:11:0;34356:9;:22;;;;;;;;;;;:37;;34383:9;34356:37;:26;:37;:::i;:::-;34341:11;;-1:-1:-1;;;;;34341:11:0;34331:9;:22;;;;;;;;;;:62;34419:10;;:24;;34434:8;34419:24;:14;:24;:::i;:::-;34406:10;:37;34467:10;;:26;;34482:10;34467:26;:14;:26;:::i;:::-;34454:10;:39;34540:10;34530:9;:21;;;;;;;;;;;:37;;34556:10;34530:37;:25;:37;:::i;:::-;34516:10;34506:9;:21;;;;;;;;;;;:61;;;;34595:11;;34580:34;;-1:-1:-1;;;;;;34580:34:0;;;;-1:-1:-1;;;;;34595:11:0;;;;34580:32;;:34;;;;;34506:9;;34580:34;;;;;34506:9;34595:11;34580:34;;;2:2:-1;;;;27:1;24;17:12;2:2;34580:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;34665:12:0;;34689:11;;34632:94;;-1:-1:-1;34642:10:0;;-1:-1:-1;34654:9:0;;34665:12;34679:22;;-1:-1:-1;;;;;34689:11:0;34679:9;:22::i;:::-;34632:94;;;-1:-1:-1;;;;;34632:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33844:890;;;;:::o;32460:212::-;28175:12;:10;:12::i;:::-;28165:6;;;;;-1:-1:-1;;;;;28165:6:0;;;:22;;;28157:67;;;;;-1:-1:-1;;;28157:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28157:67:0;;;;;;;;;;;;;;;32524:11:::1;::::0;-1:-1:-1;;;;;32524:11:0::1;:25:::0;32516:68:::1;;;::::0;;-1:-1:-1;;;32516:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32609:14;::::0;32643:4:::1;::::0;32609:55:::1;::::0;;-1:-1:-1;;;32609:55:0;;-1:-1:-1;;;;;32643:4:0;;::::1;32609:55;::::0;::::1;::::0;32658:4:::1;32609:55:::0;;;;;;:14;;;::::1;::::0;:25:::1;::::0;:55;;;;;::::1;::::0;;;;;;;;:14:::1;::::0;:55;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;32609:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;32609:55:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;32609:55:0;32595:11:::1;:69:::0;;-1:-1:-1;;;;;;32595:69:0::1;-1:-1:-1::0;;;;;32595:69:0;;::::1;::::0;;;::::1;::::0;;32460:212::o;28898:244::-;28175:12;:10;:12::i;:::-;28165:6;;;;;-1:-1:-1;;;;;28165:6:0;;;:22;;;28157:67;;;;;-1:-1:-1;;;28157:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28157:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28987:22:0;::::1;28979:73;;;;-1:-1:-1::0;;;28979:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29089:6;::::0;29068:38:::1;::::0;-1:-1:-1;;;;;29068:38:0;;::::1;::::0;29089:6:::1;::::0;::::1;;::::0;29068:38:::1;::::0;;;::::1;29117:6;:17:::0;;-1:-1:-1;;;;;29117:17:0;;::::1;;;-1:-1:-1::0;;;;;;29117:17:0;;::::1;::::0;;;::::1;::::0;;28898:244::o;30367:40::-;30405:2;30367:40;:::o;1482:106::-;1570:10;1482:106;:::o;25470:346::-;-1:-1:-1;;;;;25572:19:0;;25564:68;;;;-1:-1:-1;;;25564:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25651:21:0;;25643:68;;;;-1:-1:-1;;;25643:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25724:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25776:32;;;;;;;;;;;;;;;;;25470:346;;;:::o;23082:539::-;-1:-1:-1;;;;;23188:20:0;;23180:70;;;;-1:-1:-1;;;23180:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23269:23:0;;23261:71;;;;-1:-1:-1;;;23261:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23345:47;23366:6;23374:9;23385:6;23345:20;:47::i;:::-;23425:71;23447:6;23425:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23425:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;23405:17:0;;;:9;:17;;;;;;;;;;;:91;;;;23530:20;;;;;;;:32;;23555:6;23530:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23507:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;23578:35;;;;;;;23507:20;;23578:35;;;;;;;;;;;;;23082:539;;;:::o;6302:192::-;6388:7;6424:12;6416:6;;;;6408:29;;;;-1:-1:-1;;;6408:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6408:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6460:5:0;;;6302:192::o;5399:181::-;5457:7;5489:5;;;5513:6;;;;5505:46;;;;;-1:-1:-1;;;5505:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5571:1;5399:181;-1:-1:-1;;;5399:181:0:o;6753:471::-;6811:7;7056:6;7052:47;;-1:-1:-1;7086:1:0;7079:8;;7052:47;7123:5;;;7127:1;7123;:5;:1;7147:5;;;;;:10;7139:56;;;;-1:-1:-1;;;7139:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7700:132;7758:7;7785:39;7789:1;7792;7785:39;;;;;;;;;;;;;;;;;:3;:39::i;5863:136::-;5921:7;5948:43;5952:1;5955;5948:43;;;;;;;;;;;;;;;;;:3;:43::i;33101:274::-;33210:44;33237:4;33243:2;33247:6;33210:26;:44::i;:::-;33274:6;;-1:-1:-1;;;33274:6:0;;;;33273:7;;:31;;-1:-1:-1;33298:6:0;;-1:-1:-1;;;;;33298:6:0;33284:10;:20;33273:31;33265:102;;;;-1:-1:-1;;;33265:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33101:274;;;:::o;8328:278::-;8414:7;8449:12;8442:5;8434:28;;;;-1:-1:-1;;;8434:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;8434:28:0;;8473:9;8489:1;8485;:5;;;;;;;8328:278;-1:-1:-1;;;;;8328:278:0:o

Swarm Source

ipfs://8e20303b9bd0da7caf85644efc66719b6434e8c7acce9f1eb1a3c18e663b19cc
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.