ETH Price: $3,326.77 (+0.51%)
 

Overview

Max Total Supply

13,779,573.497016780221522584 PIZZAA

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,000 PIZZAA

Value
$0.00
0xc4ccf20a08d0d141c86a60a7c69bb06abdb59557
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:
PizzaaToken

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

//Slice the Pizza! 
//Missed Tend and Taco? Don't miss Slice the Pizza!

pragma solidity ^0.6.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;
    }
}

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

/*                                        _
And how about a slice?
                        ___
                        |  ~~--.
                        |%=@%%/
                        |o%%%/
                     __ |%%o/
               _,--~~ | |(_/ ._
            ,/'  m%%%%| |o/ /  `\.
           /' m%%o(_)%| |/ /o%%m `\
         /' %%@=%o%%%o|   /(_)o%%% `\
        /  %o%%%%%=@%%|  /%%o%%@=%%  \
       |  (_)%(_)%%o%%| /%%%=@(_)%%%  |
       | %%o%%%%o%%%(_|/%o%%o%%%%o%%% |
       | %%o%(_)%%%%%o%(_)%%%o%%o%o%% |
       |  (_)%%=@%(_)%o%o%%(_)%o(_)%  |
        \ ~%%o%%%%%o%o%=@%%o%%@%%o%~ /
         \. ~o%%(_)%%%o%(_)%%(_)o~ ,/
           \_ ~o%=@%(_)%o%%(_)%~ _/
             `\_~~o%%%o%%%%%~~_/'
                `--..____,,--'


Choose your own fillings...


*/
contract PizzaaToken is ERC20, Ownable {
    using SafeMath for uint256;

    // GRILL

    uint256 public lastGrillTime;

    uint256 public totalGrilled;

    uint256 public constant GRILL_RATE = 4; // grill rate per day (4%)

    uint256 public constant GRILL_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(), "PizzaaToken: caller is not the pauser.");
        _;
    }

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

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

    // EVENTS

    event PoolGrilled(address tender, uint256 grillAmount, 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("Pizzaa Token", "PIZZAA")
    {
        uint256 initialSupply = 15000000000000000000000000;
        _mint(msg.sender, initialSupply);
        setPauser(msg.sender);
        paused = true;
    }

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

    // PAUSE

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

    function unpause() external onlyPauser {
        paused = false;

        // Start grilling
        lastGrillTime = 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, "PizzaaToken: token transfer while paused and not pauser role.");
    }

    // GRILLERS

    function getInfoFor(address addr) public view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        return (
            balanceOf(addr),
            claimedRewards[addr],
            balanceOf(uniswapPool),
            _totalSupply,
            totalGrilled,
            getGrillAmount(),
            lastGrillTime,
            lastRewardTime,
            rewardPool
        );
    }

    function grillPool() external {
        uint256 grillAmount = getGrillAmount();
        require(grillAmount >= 1 * 1e18, "grillPool: min grill amount not reached.");

        // Reset last grill time
        lastGrillTime = now;

        uint256 userReward = grillAmount.mul(GRILL_REWARD).div(100);
        uint256 poolReward = grillAmount.mul(POOL_REWARD).div(100);
        uint256 finalGrill = grillAmount.sub(userReward).sub(poolReward);

        _totalSupply = _totalSupply.sub(finalGrill);
        _balances[uniswapPool] = _balances[uniswapPool].sub(grillAmount);

        totalGrilled = totalGrilled.add(finalGrill);
        rewardPool = rewardPool.add(poolReward);

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

        IUniswapV2Pair(uniswapPool).sync();

        emit PoolGrilled(msg.sender, grillAmount, _totalSupply, balanceOf(uniswapPool), userReward, poolReward);
    }

    function getGrillAmount() public view returns (uint256) {
        if (paused) return 0;
        uint256 timeBetweenLastGrill = now - lastGrillTime;
        uint256 tokensInUniswapPool = balanceOf(uniswapPool);
        uint256 dayInSeconds = 1 days;
        return (tokensInUniswapPool.mul(GRILL_RATE)
            .mul(timeBetweenLastGrill))
            .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, "PizzaaToken: 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":"tender","type":"address"},{"indexed":false,"internalType":"uint256","name":"grillAmount","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":"PoolGrilled","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":"GRILL_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GRILL_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":"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":"getGrillAmount","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":[],"name":"grillPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastGrillTime","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":"totalGrilled","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"}]

608060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bb57600080fd5b506040518060400160405280600c81526020017f50697a7a616120546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600681526020017f50495a5a414100000000000000000000000000000000000000000000000000008152508160039080519060200190620001409291906200076f565b508060049080519060200190620001599291906200076f565b506012600560006101000a81548160ff021916908360ff160217905550505060006200018a6200027e60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060006a0c685fa11e01ec6f00000090506200024b33826200028660201b60201c565b6200025c336200046460201b60201c565b6001600e60146101000a81548160ff021916908315150217905550506200081e565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200032a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200033e600083836200060360201b60201c565b6200035a81600254620006e160201b62002ad31790919060201c565b600281905550620003b8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620006e160201b62002ad31790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004746200027e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620005bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180620039256028913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6200061b8383836200076a60201b62002e091760201c565b600e60149054906101000a900460ff161580620006855750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b620006dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180620038e8603d913960400191505060405180910390fd5b505050565b60008082840190508381101562000760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007b257805160ff1916838001178555620007e3565b82800160010185558215620007e3579182015b82811115620007e2578251825591602001919060010190620007c5565b5b509050620007f29190620007f6565b5090565b6200081b91905b8082111562000817576000816000905550600101620007fd565b5090565b90565b6130ba806200082e6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806373aa990511610130578063a9059cbb116100b8578063d55ef7211161007c578063d55ef72114610a99578063dd62ed3e14610ab7578063e84657d414610b2f578063f2fde38b14610b39578063f92e096214610b7d57610227565b8063a9059cbb14610955578063bd834345146109bb578063bdd3d82514610a13578063c62c292014610a5d578063cb57bcd014610a7b57610227565b8063949813b8116100ff578063949813b81461075157806395d89b41146107a95780639fd0506d1461082c578063a457c2d714610876578063a85c6d72146108dc57610227565b806373aa9905146106815780638bdb2afa1461069f5780638da5cb5b146106e95780639231cf741461073357610227565b806339509351116101b357806366666aa91161018257806366666aa91461056757806368f414ae1461058557806370a082311461061557806370ed27a51461066d578063715018a61461067757610227565b806339509351146104675780633f4ba83a146104cd578063440c96e4146104d75780635c975abb1461054557610227565b806323b872dd116101fa57806323b872dd14610351578063298ead8b146103d75780632d88af4a146103f5578063313ce56714610439578063372500ab1461045d57610227565b806306fdde031461022c578063095ea7b3146102af57806318160ddd1461031557806319fd788614610333575b600080fd5b610234610b9b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fb600480360360408110156102c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c3d565b604051808215151515815260200191505060405180910390f35b61031d610c5b565b6040518082815260200191505060405180910390f35b61033b610c65565b6040518082815260200191505060405180910390f35b6103bd6004803603606081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c6a565b604051808215151515815260200191505060405180910390f35b6103df610d43565b6040518082815260200191505060405180910390f35b6104376004803603602081101561040b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d48565b005b610441610edc565b604051808260ff1660ff16815260200191505060405180910390f35b610465610ef3565b005b6104b36004803603604081101561047d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061118d565b604051808215151515815260200191505060405180910390f35b6104d5611240565b005b610503600480360360208110156104ed57600080fd5b8101908080359060200190929190505050611320565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054d611353565b604051808215151515815260200191505060405180910390f35b61056f611366565b6040518082815260200191505060405180910390f35b6105c76004803603602081101561059b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061136c565b604051808a8152602001898152602001888152602001878152602001868152602001858152602001848152602001838152602001828152602001995050505050505050505060405180910390f35b6106576004803603602081101561062b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611424565b6040518082815260200191505060405180910390f35b61067561146c565b005b61067f611859565b005b6106896119e4565b6040518082815260200191505060405180910390f35b6106a76119ea565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106f1611a10565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61073b611a3a565b6040518082815260200191505060405180910390f35b6107936004803603602081101561076757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a40565b6040518082815260200191505060405180910390f35b6107b1611a58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107f15780820151818401526020810190506107d6565b50505050905090810190601f16801561081e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610834611afa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108c26004803603604081101561088c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b20565b604051808215151515815260200191505060405180910390f35b610953600480360360208110156108f257600080fd5b810190808035906020019064010000000081111561090f57600080fd5b82018360208201111561092157600080fd5b8035906020019184602083028401116401000000008311171561094357600080fd5b9091929391929390505050611bed565b005b6109a16004803603604081101561096b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611eb7565b604051808215151515815260200191505060405180910390f35b6109fd600480360360208110156109d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ed5565b6040518082815260200191505060405180910390f35b610a1b611eed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a65611f13565b6040518082815260200191505060405180910390f35b610a83611f19565b6040518082815260200191505060405180910390f35b610aa1611fcd565b6040518082815260200191505060405180910390f35b610b1960048036036040811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fd2565b6040518082815260200191505060405180910390f35b610b37612059565b005b610b7b60048036036020811015610b4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061233e565b005b610b8561254e565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610c51610c4a612553565b848461255b565b6001905092915050565b6000600254905090565b603281565b6000610c77848484612752565b610d3884610c83612553565b610d3385604051806060016040528060288152602001612f9060289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ce9612553565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a139092919063ffffffff16565b61255b565b600190509392505050565b600481565b610d50612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806130146028913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900460ff16905090565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612eee6023913960400191505060405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061106681600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110fa816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167fec68461f5d4cc45c89e914cb8826a966c73dd35e5f97815ece0a01ffa4a025a6826040518082815260200191505060405180910390a250565b600061123661119a612553565b8461123185600160006111ab612553565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b61255b565b6001905092915050565b611248612553565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612e7a6026913960400191505060405180910390fd5b6000600e60146101000a81548160ff02191690831515021790555042600681905550426008819055506000600981905550565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60149054906101000a900460ff1681565b60095481565b60008060008060008060008060006113838a611424565b600a60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ee601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611424565b6002546007546113fc611f19565b6006546008546009549850985098509850985098509850985098509193959799909294969850565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611476611f19565b9050670de0b6b3a76400008110156114d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612ea06028913960400191505060405180910390fd5b42600681905550600061150960646114fb600185612b5b90919063ffffffff16565b612be190919063ffffffff16565b905060006115346064611526603086612b5b90919063ffffffff16565b612be190919063ffffffff16565b9050600061155d8261154f8587612c2b90919063ffffffff16565b612c2b90919063ffffffff16565b905061157481600254612c2b90919063ffffffff16565b6002819055506115ed84600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c2b90919063ffffffff16565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061166681600754612ad390919063ffffffff16565b60078190555061168182600954612ad390919063ffffffff16565b6009819055506116d8836000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561178457600080fd5b505af1158015611798573d6000803e3d6000fd5b505050507fecc79e9f378231dfe8156db06424b8a2836b3b6818f5b205ec3070ba6351be2e33856002546117ed601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611424565b8787604051808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390a150505050565b611861612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611923576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b600b6020528060005260406000206000915090505481565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611af05780601f10611ac557610100808354040283529160200191611af0565b820191906000526020600020905b815481529060010190602001808311611ad357829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611be3611b2d612553565b84611bde856040518060600160405280602581526020016130606025913960016000611b57612553565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a139092919063ffffffff16565b61255b565b6001905092915050565b611bf5612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6203f48060085442031015611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612fdd6037913960400191505060405180910390fd5b60328282905010611d29576032611d2e565b818190505b600d819055506000611d4d600d54600954612be190919063ffffffff16565b90506000600954905060008090505b600d54811015611e5857611de083600b6000888886818110611d7a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b600b6000878785818110611df057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050611d5c565b504260088190555060006009819055507f1f940d966833560298ca6713905ac7f22fed6550884a6c444adb3b1066e0cefd600d54824260405180848152602001838152602001828152602001935050505060405180910390a150505050565b6000611ecb611ec4612553565b8484612752565b6001905092915050565b600a6020528060005260406000206000915090505481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b6000600e60149054906101000a900460ff1615611f395760009050611fca565b6000600654420390506000611f6f601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611424565b90506000620151809050611fc46064611fb683611fa887611f9a600489612b5b90919063ffffffff16565b612b5b90919063ffffffff16565b612be190919063ffffffff16565b612be190919063ffffffff16565b93505050505b90565b600181565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612061612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612123576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612f116021913960400191505060405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c65396600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156122c157600080fd5b505af11580156122d5573d6000803e3d6000fd5b505050506040513d60208110156122eb57600080fd5b8101908080519060200190929190505050601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612346612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561248e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612e326026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b603081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061303c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612667576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612e586022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612fb86025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561285e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612e0f6023913960400191505060405180910390fd5b612869838383612c75565b6128d481604051806060016040528060268152602001612ec8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a139092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612967816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612ac0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a85578082015181840152602081019050612a6a565b50505050905090810190601f168015612ab25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612b51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415612b6e5760009050612bdb565b6000828402905082848281612b7f57fe5b0414612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612f6f6021913960400191505060405180910390fd5b809150505b92915050565b6000612c2383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d43565b905092915050565b6000612c6d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a13565b905092915050565b612c80838383612e09565b600e60149054906101000a900460ff161580612ce95750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612d3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180612f32603d913960400191505060405180910390fd5b505050565b60008083118290612def576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612db4578082015181840152602081019050612d99565b50505050905090810190601f168015612de15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612dfb57fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737350697a7a6161546f6b656e3a2063616c6c6572206973206e6f7420746865207061757365722e6772696c6c506f6f6c3a206d696e206772696c6c20616d6f756e74206e6f7420726561636865642e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636550697a7a6161546f6b656e3a206e6f7468696e67206c65667420746f20636c61696d2e50697a7a6161546f6b656e3a20706f6f6c20616c7265616479206372656174656450697a7a6161546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737350697a7a6161546f6b656e3a206e6f7420656e6f75676820646179732073696e6365206c61737420736e617073686f742074616b656e2e50697a7a6161546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e45524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220607790ceff27f32d08c3f7c2789046e7f590974f8d14142ce3de1ba26515320d64736f6c6343000606003350697a7a6161546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e50697a7a6161546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c806373aa990511610130578063a9059cbb116100b8578063d55ef7211161007c578063d55ef72114610a99578063dd62ed3e14610ab7578063e84657d414610b2f578063f2fde38b14610b39578063f92e096214610b7d57610227565b8063a9059cbb14610955578063bd834345146109bb578063bdd3d82514610a13578063c62c292014610a5d578063cb57bcd014610a7b57610227565b8063949813b8116100ff578063949813b81461075157806395d89b41146107a95780639fd0506d1461082c578063a457c2d714610876578063a85c6d72146108dc57610227565b806373aa9905146106815780638bdb2afa1461069f5780638da5cb5b146106e95780639231cf741461073357610227565b806339509351116101b357806366666aa91161018257806366666aa91461056757806368f414ae1461058557806370a082311461061557806370ed27a51461066d578063715018a61461067757610227565b806339509351146104675780633f4ba83a146104cd578063440c96e4146104d75780635c975abb1461054557610227565b806323b872dd116101fa57806323b872dd14610351578063298ead8b146103d75780632d88af4a146103f5578063313ce56714610439578063372500ab1461045d57610227565b806306fdde031461022c578063095ea7b3146102af57806318160ddd1461031557806319fd788614610333575b600080fd5b610234610b9b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fb600480360360408110156102c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c3d565b604051808215151515815260200191505060405180910390f35b61031d610c5b565b6040518082815260200191505060405180910390f35b61033b610c65565b6040518082815260200191505060405180910390f35b6103bd6004803603606081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c6a565b604051808215151515815260200191505060405180910390f35b6103df610d43565b6040518082815260200191505060405180910390f35b6104376004803603602081101561040b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d48565b005b610441610edc565b604051808260ff1660ff16815260200191505060405180910390f35b610465610ef3565b005b6104b36004803603604081101561047d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061118d565b604051808215151515815260200191505060405180910390f35b6104d5611240565b005b610503600480360360208110156104ed57600080fd5b8101908080359060200190929190505050611320565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054d611353565b604051808215151515815260200191505060405180910390f35b61056f611366565b6040518082815260200191505060405180910390f35b6105c76004803603602081101561059b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061136c565b604051808a8152602001898152602001888152602001878152602001868152602001858152602001848152602001838152602001828152602001995050505050505050505060405180910390f35b6106576004803603602081101561062b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611424565b6040518082815260200191505060405180910390f35b61067561146c565b005b61067f611859565b005b6106896119e4565b6040518082815260200191505060405180910390f35b6106a76119ea565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106f1611a10565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61073b611a3a565b6040518082815260200191505060405180910390f35b6107936004803603602081101561076757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a40565b6040518082815260200191505060405180910390f35b6107b1611a58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107f15780820151818401526020810190506107d6565b50505050905090810190601f16801561081e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610834611afa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108c26004803603604081101561088c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b20565b604051808215151515815260200191505060405180910390f35b610953600480360360208110156108f257600080fd5b810190808035906020019064010000000081111561090f57600080fd5b82018360208201111561092157600080fd5b8035906020019184602083028401116401000000008311171561094357600080fd5b9091929391929390505050611bed565b005b6109a16004803603604081101561096b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611eb7565b604051808215151515815260200191505060405180910390f35b6109fd600480360360208110156109d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ed5565b6040518082815260200191505060405180910390f35b610a1b611eed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a65611f13565b6040518082815260200191505060405180910390f35b610a83611f19565b6040518082815260200191505060405180910390f35b610aa1611fcd565b6040518082815260200191505060405180910390f35b610b1960048036036040811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fd2565b6040518082815260200191505060405180910390f35b610b37612059565b005b610b7b60048036036020811015610b4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061233e565b005b610b8561254e565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610c51610c4a612553565b848461255b565b6001905092915050565b6000600254905090565b603281565b6000610c77848484612752565b610d3884610c83612553565b610d3385604051806060016040528060288152602001612f9060289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ce9612553565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a139092919063ffffffff16565b61255b565b600190509392505050565b600481565b610d50612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806130146028913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900460ff16905090565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612eee6023913960400191505060405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061106681600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110fa816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167fec68461f5d4cc45c89e914cb8826a966c73dd35e5f97815ece0a01ffa4a025a6826040518082815260200191505060405180910390a250565b600061123661119a612553565b8461123185600160006111ab612553565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b61255b565b6001905092915050565b611248612553565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612e7a6026913960400191505060405180910390fd5b6000600e60146101000a81548160ff02191690831515021790555042600681905550426008819055506000600981905550565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60149054906101000a900460ff1681565b60095481565b60008060008060008060008060006113838a611424565b600a60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ee601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611424565b6002546007546113fc611f19565b6006546008546009549850985098509850985098509850985098509193959799909294969850565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611476611f19565b9050670de0b6b3a76400008110156114d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612ea06028913960400191505060405180910390fd5b42600681905550600061150960646114fb600185612b5b90919063ffffffff16565b612be190919063ffffffff16565b905060006115346064611526603086612b5b90919063ffffffff16565b612be190919063ffffffff16565b9050600061155d8261154f8587612c2b90919063ffffffff16565b612c2b90919063ffffffff16565b905061157481600254612c2b90919063ffffffff16565b6002819055506115ed84600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c2b90919063ffffffff16565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061166681600754612ad390919063ffffffff16565b60078190555061168182600954612ad390919063ffffffff16565b6009819055506116d8836000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561178457600080fd5b505af1158015611798573d6000803e3d6000fd5b505050507fecc79e9f378231dfe8156db06424b8a2836b3b6818f5b205ec3070ba6351be2e33856002546117ed601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611424565b8787604051808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390a150505050565b611861612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611923576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b600b6020528060005260406000206000915090505481565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611af05780601f10611ac557610100808354040283529160200191611af0565b820191906000526020600020905b815481529060010190602001808311611ad357829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611be3611b2d612553565b84611bde856040518060600160405280602581526020016130606025913960016000611b57612553565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a139092919063ffffffff16565b61255b565b6001905092915050565b611bf5612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6203f48060085442031015611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612fdd6037913960400191505060405180910390fd5b60328282905010611d29576032611d2e565b818190505b600d819055506000611d4d600d54600954612be190919063ffffffff16565b90506000600954905060008090505b600d54811015611e5857611de083600b6000888886818110611d7a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b600b6000878785818110611df057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050611d5c565b504260088190555060006009819055507f1f940d966833560298ca6713905ac7f22fed6550884a6c444adb3b1066e0cefd600d54824260405180848152602001838152602001828152602001935050505060405180910390a150505050565b6000611ecb611ec4612553565b8484612752565b6001905092915050565b600a6020528060005260406000206000915090505481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b6000600e60149054906101000a900460ff1615611f395760009050611fca565b6000600654420390506000611f6f601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611424565b90506000620151809050611fc46064611fb683611fa887611f9a600489612b5b90919063ffffffff16565b612b5b90919063ffffffff16565b612be190919063ffffffff16565b612be190919063ffffffff16565b93505050505b90565b600181565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612061612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612123576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612f116021913960400191505060405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c65396600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156122c157600080fd5b505af11580156122d5573d6000803e3d6000fd5b505050506040513d60208110156122eb57600080fd5b8101908080519060200190929190505050601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612346612553565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561248e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612e326026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b603081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061303c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612667576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612e586022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612fb86025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561285e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612e0f6023913960400191505060405180910390fd5b612869838383612c75565b6128d481604051806060016040528060268152602001612ec8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a139092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612967816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612ac0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a85578082015181840152602081019050612a6a565b50505050905090810190601f168015612ab25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612b51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415612b6e5760009050612bdb565b6000828402905082848281612b7f57fe5b0414612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612f6f6021913960400191505060405180910390fd5b809150505b92915050565b6000612c2383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d43565b905092915050565b6000612c6d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a13565b905092915050565b612c80838383612e09565b600e60149054906101000a900460ff161580612ce95750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612d3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180612f32603d913960400191505060405180910390fd5b505050565b60008083118290612def576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612db4578082015181840152602081019050612d99565b50505050905090810190601f168015612de15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612dfb57fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737350697a7a6161546f6b656e3a2063616c6c6572206973206e6f7420746865207061757365722e6772696c6c506f6f6c3a206d696e206772696c6c20616d6f756e74206e6f7420726561636865642e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636550697a7a6161546f6b656e3a206e6f7468696e67206c65667420746f20636c61696d2e50697a7a6161546f6b656e3a20706f6f6c20616c7265616479206372656174656450697a7a6161546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737350697a7a6161546f6b656e3a206e6f7420656e6f75676820646179732073696e6365206c61737420736e617073686f742074616b656e2e50697a7a6161546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e45524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220607790ceff27f32d08c3f7c2789046e7f590974f8d14142ce3de1ba26515320d64736f6c63430006060033

Deployed Bytecode Sourcemap

29316:6187:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29316:6187:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17294:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17294:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19400:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19400:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18369:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30030:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20043:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20043:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29486:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31803:179;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31803:179:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18221:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35034:466;;;:::i;:::-;;20773:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20773:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31990:187;;;:::i;:::-;;29943:45;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29943:45:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30237:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29714:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32519:442;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;32519:442:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18532:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18532:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32969:930;;;:::i;:::-;;27766:148;;;:::i;:::-;;29450:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30362:103;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27124:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29676:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29807:52;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29807:52:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17496:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17496:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30207:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21494:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21494:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34342:684;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;34342:684:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;34342:684:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;34342: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;34342:684:0;;;;;;;;;;;;:::i;:::-;;18864:175;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18864:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29748:50;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29748:50:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30474:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29413:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33907:409;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29560:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19102:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19102:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31564:215;;;:::i;:::-;;28069:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28069:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;29627:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17294:83;17331:13;17364:5;17357:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17294:83;:::o;19400:169::-;19483:4;19500:39;19509:12;:10;:12::i;:::-;19523:7;19532:6;19500:8;:39::i;:::-;19557:4;19550:11;;19400:169;;;;:::o;18369:100::-;18422:7;18449:12;;18442:19;;18369:100;:::o;30030:44::-;30072:2;30030:44;:::o;20043:321::-;20149:4;20166:36;20176:6;20184:9;20195:6;20166:9;:36::i;:::-;20213:121;20222:6;20230:12;:10;:12::i;:::-;20244:89;20282:6;20244:89;;;;;;;;;;;;;;;;;:11;:19;20256:6;20244:19;;;;;;;;;;;;;;;:33;20264:12;:10;:12::i;:::-;20244:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20213:8;:121::i;:::-;20352:4;20345:11;;20043:321;;;;;:::o;29486:38::-;29523:1;29486:38;:::o;31803:179::-;27346:12;:10;:12::i;:::-;27336:22;;:6;;;;;;;;;;;:22;;;27328:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31898:1:::1;31877:23;;:9;:23;;;;31869:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31965:9;31956:6;;:18;;;;;;;;;;;;;;;;;;31803:179:::0;:::o;18221:83::-;18262:5;18287:9;;;;;;;;;;;18280:16;;18221:83;:::o;35034:466::-;35117:1;35086:16;:28;35103:10;35086:28;;;;;;;;;;;;;;;;:32;35078:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35171:23;35197:16;:28;35214:10;35197:28;;;;;;;;;;;;;;;;35171:54;;35267:1;35236:16;:28;35253:10;35236:28;;;;;;;;;;;;;;;:32;;;;35308:47;35339:15;35308:14;:26;35323:10;35308:26;;;;;;;;;;;;;;;;:30;;:47;;;;:::i;:::-;35279:14;:26;35294:10;35279:26;;;;;;;;;;;;;;;:76;;;;35390:42;35416:15;35390:9;:21;35400:10;35390:21;;;;;;;;;;;;;;;;:25;;:42;;;;:::i;:::-;35366:9;:21;35376:10;35366:21;;;;;;;;;;;;;;;:66;;;;35464:10;35450:42;;;35476:15;35450:42;;;;;;;;;;;;;;;;;;35034:466;:::o;20773:218::-;20861:4;20878:83;20887:12;:10;:12::i;:::-;20901:7;20910:50;20949:10;20910:11;:25;20922:12;:10;:12::i;:::-;20910:25;;;;;;;;;;;;;;;:34;20936:7;20910:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;20878:8;:83::i;:::-;20979:4;20972:11;;20773:218;;;;:::o;31990:187::-;30580:12;:10;:12::i;:::-;30570:22;;:6;;;;;;;;;;;:22;;;30562:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32049:5:::1;32040:6;;:14;;;;;;;;;;;;;;;;;;32110:3;32094:13;:19;;;;32141:3;32124:14;:20;;;;32168:1;32155:10;:14;;;;31990:187::o:0;29943:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;30237:18::-;;;;;;;;;;;;;:::o;29714:25::-;;;;:::o;32519:442::-;32574:7;32583;32592;32601;32610;32619;32628;32637;32646;32688:15;32698:4;32688:9;:15::i;:::-;32718:14;:20;32733:4;32718:20;;;;;;;;;;;;;;;;32753:22;32763:11;;;;;;;;;;;32753:9;:22::i;:::-;32790:12;;32817;;32844:16;:14;:16::i;:::-;32875:13;;32903:14;;32932:10;;32666:287;;;;;;;;;;;;;;;;;;32519:442;;;;;;;;;;;:::o;18532:119::-;18598:7;18625:9;:18;18635:7;18625:18;;;;;;;;;;;;;;;;18618:25;;18532:119;;;:::o;32969:930::-;33010:19;33032:16;:14;:16::i;:::-;33010:38;;33082:8;33067:11;:23;;33059:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33198:3;33182:13;:19;;;;33214:18;33235:38;33269:3;33235:29;29599:1;33235:11;:15;;:29;;;;:::i;:::-;:33;;:38;;;;:::i;:::-;33214:59;;33284:18;33305:37;33338:3;33305:28;29665:2;33305:11;:15;;:28;;;;:::i;:::-;:32;;:37;;;;:::i;:::-;33284:58;;33353:18;33374:43;33406:10;33374:27;33390:10;33374:11;:15;;:27;;;;:::i;:::-;:31;;:43;;;;:::i;:::-;33353:64;;33445:28;33462:10;33445:12;;:16;;:28;;;;:::i;:::-;33430:12;:43;;;;33509:39;33536:11;33509:9;:22;33519:11;;;;;;;;;;;33509:22;;;;;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;33484:9;:22;33494:11;;;;;;;;;;;33484:22;;;;;;;;;;;;;;;:64;;;;33576:28;33593:10;33576:12;;:16;;:28;;;;:::i;:::-;33561:12;:43;;;;33628:26;33643:10;33628;;:14;;:26;;;;:::i;:::-;33615:10;:39;;;;33691:37;33717:10;33691:9;:21;33701:10;33691:21;;;;;;;;;;;;;;;;:25;;:37;;;;:::i;:::-;33667:9;:21;33677:10;33667:21;;;;;;;;;;;;;;;:61;;;;33756:11;;;;;;;;;;;33741:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33741:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33741:34:0;;;;33793:98;33805:10;33817:11;33830:12;;33844:22;33854:11;;;;;;;;;;;33844:9;:22::i;:::-;33868:10;33880;33793:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32969:930;;;;:::o;27766:148::-;27346:12;:10;:12::i;:::-;27336:22;;:6;;;;;;;;;;;:22;;;27328:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27873:1:::1;27836:40;;27857:6;;;;;;;;;;;27836:40;;;;;;;;;;;;27904:1;27887:6;;:19;;;;;;;;;;;;;;;;;;27766:148::o:0;29450:27::-;;;;:::o;30362:103::-;;;;;;;;;;;;;:::o;27124:79::-;27162:7;27189:6;;;;;;;;;;;27182:13;;27124:79;:::o;29676:29::-;;;;:::o;29807:52::-;;;;;;;;;;;;;;;;;:::o;17496:87::-;17535:13;17568:7;17561:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17496:87;:::o;30207:21::-;;;;;;;;;;;;;:::o;21494:269::-;21587:4;21604:129;21613:12;:10;:12::i;:::-;21627:7;21636:96;21675:15;21636:96;;;;;;;;;;;;;;;;;:11;:25;21648:12;:10;:12::i;:::-;21636:25;;;;;;;;;;;;;;;:34;21662:7;21636:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21604:8;:129::i;:::-;21751:4;21744:11;;21494:269;;;;:::o;34342:684::-;27346:12;:10;:12::i;:::-;27336:22;;:6;;;;;;;;;;;:22;;;27328:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30851:6:::1;30832:14;;30826:3;:20;30825:32;;30817:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30072:2:::2;34473:7;;:14;;:32;:67;;30072:2;34473:67;;;34508:7;;:14;;34473:67;34455:15;:85;;;;34600:16;34619:31;34634:15;;34619:10;;:14;;:31;;;;:::i;:::-;34600:50;;34661:23;34687:10;;34661:36;;34713:9;34725:1:::0;34713:13:::2;;34708:146;34732:15;;34728:1;:19;34708:146;;;34800:42;34833:8;34800:16;:28;34817:7;;34825:1;34817:10;;;;;;;;;;;;;;;34800:28;;;;;;;;;;;;;;;;:32;;:42;;;;:::i;:::-;34769:16;:28;34786:7;;34794:1;34786:10;;;;;;;;;;;;;;;34769:28;;;;;;;;;;;;;;;:73;;;;34749:3;;;;;;;34708:146;;;;34914:3;34897:14;:20;;;;34941:1;34928:10;:14;;;;34960:58;34980:15;;34997;35014:3;34960:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30928:1;;34342:684:::0;;:::o;18864:175::-;18950:4;18967:42;18977:12;:10;:12::i;:::-;18991:9;19002:6;18967:9;:42::i;:::-;19027:4;19020:11;;18864:175;;;;:::o;29748:50::-;;;;;;;;;;;;;;;;;:::o;30474:26::-;;;;;;;;;;;;;:::o;29413:28::-;;;;:::o;33907:409::-;33954:7;33978:6;;;;;;;;;;;33974:20;;;33993:1;33986:8;;;;33974:20;34005:28;34042:13;;34036:3;:19;34005:50;;34066:27;34096:22;34106:11;;;;;;;;;;;34096:9;:22::i;:::-;34066:52;;34129:20;34152:6;34129:29;;34176:132;34304:3;34176:109;34272:12;34177:75;34231:20;34177:35;29523:1;34177:19;:23;;:35;;;;:::i;:::-;:53;;:75;;;;:::i;:::-;34176:95;;:109;;;;:::i;:::-;:127;;:132;;;;:::i;:::-;34169:139;;;;;33907:409;;:::o;29560:40::-;29599:1;29560:40;:::o;19102:151::-;19191:7;19218:11;:18;19230:5;19218:18;;;;;;;;;;;;;;;:27;19237:7;19218:27;;;;;;;;;;;;;;;;19211:34;;19102:151;;;;:::o;31564:215::-;27346:12;:10;:12::i;:::-;27336:22;;:6;;;;;;;;;;;:22;;;27328:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31651:1:::1;31628:25;;:11;;;;;;;;;;;:25;;;31620:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31716:14;;;;;;;;;;;:25;;;31750:4;;;;;;;;;;;31765;31716:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;31716:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;31716:55:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;31716:55:0;;;;;;;;;;;;;;;;31702:11;;:69;;;;;;;;;;;;;;;;;;31564:215::o:0;28069:244::-;27346:12;:10;:12::i;:::-;27336:22;;:6;;;;;;;;;;;:22;;;27328:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28178:1:::1;28158:22;;:8;:22;;;;28150:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28268:8;28239:38;;28260:6;;;;;;;;;;;28239:38;;;;;;;;;;;;28297:8;28288:6;;:17;;;;;;;;;;;;;;;;;;28069:244:::0;:::o;29627:40::-;29665:2;29627:40;:::o;653:106::-;706:15;741:10;734:17;;653:106;:::o;24641:346::-;24760:1;24743:19;;:5;:19;;;;24735:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24841:1;24822:21;;:7;:21;;;;24814:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24925:6;24895:11;:18;24907:5;24895:18;;;;;;;;;;;;;;;:27;24914:7;24895:27;;;;;;;;;;;;;;;:36;;;;24963:7;24947:32;;24956:5;24947:32;;;24972:6;24947:32;;;;;;;;;;;;;;;;;;24641:346;;;:::o;22253:539::-;22377:1;22359:20;;:6;:20;;;;22351:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22461:1;22440:23;;:9;:23;;;;22432:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22516:47;22537:6;22545:9;22556:6;22516:20;:47::i;:::-;22596:71;22618:6;22596:71;;;;;;;;;;;;;;;;;:9;:17;22606:6;22596:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;22576:9;:17;22586:6;22576:17;;;;;;;;;;;;;;;:91;;;;22701:32;22726:6;22701:9;:20;22711:9;22701:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;22678:9;:20;22688:9;22678:20;;;;;;;;;;;;;;;:55;;;;22766:9;22749:35;;22758:6;22749:35;;;22777:6;22749:35;;;;;;;;;;;;;;;;;;22253:539;;;:::o;5473:192::-;5559:7;5592:1;5587;:6;;5595:12;5579:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5579:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5619:9;5635:1;5631;:5;5619:17;;5656:1;5649:8;;;5473:192;;;;;:::o;4570:181::-;4628:7;4648:9;4664:1;4660;:5;4648:17;;4689:1;4684;:6;;4676:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4742:1;4735:8;;;4570:181;;;;:::o;5924:471::-;5982:7;6232:1;6227;:6;6223:47;;;6257:1;6250:8;;;;6223:47;6282:9;6298:1;6294;:5;6282:17;;6327:1;6322;6318;:5;;;;;;:10;6310:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6386:1;6379:8;;;5924:471;;;;;:::o;6871:132::-;6929:7;6956:39;6960:1;6963;6956:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6949:46;;6871:132;;;;:::o;5034:136::-;5092:7;5119:43;5123:1;5126;5119:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5112:50;;5034:136;;;;:::o;32215:277::-;32324:44;32351:4;32357:2;32361:6;32324:26;:44::i;:::-;32388:6;;;;;;;;;;;32387:7;:31;;;;32412:6;;;;;;;;;;;32398:20;;:10;:20;;;32387:31;32379:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32215:277;;;:::o;7499:278::-;7585:7;7617:1;7613;:5;7620:12;7605:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7605:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7644:9;7660:1;7656;:5;;;;;;7644:17;;7768:1;7761:8;;;7499:278;;;;;:::o;26012:92::-;;;;:::o

Swarm Source

ipfs://607790ceff27f32d08c3f7c2789046e7f590974f8d14142ce3de1ba26515320d
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.