ETH Price: $3,044.38 (-5.62%)
Gas: 6 Gwei

Token

meteorbase.finance (METEORBASE)
 

Overview

Max Total Supply

100,000 METEORBASE

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
0xtsuyoppe.eth
Balance
0.561507459 METEORBASE

Value
$0.00
0x8d61c148a41f67d3b4d19e1532b464121ef865c9
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:
MBASE

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-12-16
*/

pragma solidity ^0.6.0;


// 
/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such 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.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value < 2**128, "SafeCast: value doesn\'t fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value < 2**64, "SafeCast: value doesn\'t fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value < 2**32, "SafeCast: value doesn\'t fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value < 2**16, "SafeCast: value doesn\'t fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value < 2**8, "SafeCast: value doesn\'t fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= -2**127 && value < 2**127, "SafeCast: value doesn\'t fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= -2**63 && value < 2**63, "SafeCast: value doesn\'t fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= -2**31 && value < 2**31, "SafeCast: value doesn\'t fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= -2**15 && value < 2**15, "SafeCast: value doesn\'t fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= -2**7 && value < 2**7, "SafeCast: value doesn\'t fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        require(value < 2**255, "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

// 
/**
 * @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 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 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) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

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

interface IUniswapV2Router01 {
    function WETH() external pure returns (address);
}

contract MBASE is IERC20, Ownable {    
    using SafeCast for int256;
    using SafeMath for uint256;
    using Address for address;
    
    uint256 private _epoch;
    event LogRebase(uint256 indexed epoch, uint256 totalSupply);

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
	
    uint256 private constant DECIMALS = 9;
    uint256 private constant RATE_PRECISION = 10 ** DECIMALS;

    string private _name = "meteorbase.finance";
    string private _symbol = "METEORBASE";
    uint8 private _decimals = uint8(DECIMALS);
	uint256 private _totalSupply;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _rTotal;
    uint256 private _tFeeTotal;
    
    uint256 public _tFeePercent;
    uint256 public _tFeeTimestamp;
    
    address public _rebaser;
    
    uint256 public _limitExpiresTimestamp;
    uint256 public _limitTransferAmount;
    uint256 public _limitMaxBalance;
    uint256 public _limitSellFeePercent;
    
    uint256 public _limitTimestamp;

    IUniswapV2Factory public constant uniswapFactory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); 

    IUniswapV2Router01 public constant uniswapRouter = IUniswapV2Router01(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 

    address public uniswapPair; 

    constructor(uint256 initialSupply)
    public
    Ownable()
    {
        _totalSupply = initialSupply;
        _rTotal = (MAX - (MAX % _totalSupply));
        
        _rebaser = _msgSender();
        
        _tFeePercent = 600; // 6.00%
        _tFeeTimestamp = now;

        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _totalSupply);
        
        excludeAccount(_msgSender());
    }

    function setUniswapPair() external onlyOwner {
        require(uniswapPair == address(0), "already initialized");
        uniswapPair = uniswapFactory.createPair(uniswapRouter.WETH(), address(this));
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }    
    
    function setRebaser(address rebaser) external onlyOwner() {
        _rebaser = rebaser;
    }
    
    function setTransferFeePercent(uint256 tFeePercent) external onlyOwner() {
        require(now >= (_tFeeTimestamp + 12 hours), "Transfer fee changes timelocked for 12 hours");

        _tFeePercent = tFeePercent;
        
        _tFeeTimestamp = now;
    }
    
    function setLimit(uint256 expiresTimestamp, uint256 transferAmount, uint256 maxBalance, uint256 sellFeePercent) external onlyOwner() {
        require(_limitTimestamp == 0, "Limit changes not allowed");
        
        _limitExpiresTimestamp = expiresTimestamp;
        _limitTransferAmount = transferAmount;
        _limitMaxBalance = maxBalance;
        _limitSellFeePercent = sellFeePercent;

        _limitTimestamp = now;
    }
    
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }
    
    function rebase(int256 supplyDelta)
        external
        returns (uint256)
    {
        require(_msgSender() == owner() || _msgSender() == _rebaser, "Sender not authorized");
        
        _epoch = _epoch.add(1);
		
        if (supplyDelta == 0) {
            emit LogRebase(_epoch, _totalSupply);
            return _totalSupply;
        }
        
        uint256 uSupplyDelta = (supplyDelta < 0 ? -supplyDelta : supplyDelta).toUint256();
        uint256 rate = uSupplyDelta.mul(RATE_PRECISION).div(_totalSupply);
        uint256 multiplier;
        
        if (supplyDelta < 0) {
            multiplier = RATE_PRECISION.sub(rate);
        } else {
            multiplier = RATE_PRECISION.add(rate);
        }
        
        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uSupplyDelta);
        } else {
            _totalSupply = _totalSupply.add(uSupplyDelta);
        }
        
        if (_totalSupply > MAX) {
            _totalSupply = MAX;
        }
        
        for (uint256 i = 0; i < _excluded.length; i++) {
            if(_tOwned[_excluded[i]] > 0) {
                _tOwned[_excluded[i]] = _tOwned[_excluded[i]].mul(multiplier).div(RATE_PRECISION);
            }
        }
    
        // Sync the pair so uniswap is aware of the new supply
		IUniswapV2Pair(uniswapPair).sync();

        emit LogRebase(_epoch, _totalSupply);

        return _totalSupply;
    }
    
    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromRefraction(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    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;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function refract(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,) = _getValues(tAmount, _tFeePercent);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function refractionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _totalSupply, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,) = _getValues(tAmount, _tFeePercent);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,) = _getValues(tAmount, _tFeePercent);
            return rTransferAmount;
        }
    }

    function tokenFromRefraction(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total refractions");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromRefraction(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) public onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if(_isExcluded[sender] && !_isExcluded[recipient])
        {
            if(_limitExpiresTimestamp >= now) {
                require(amount <= _limitTransferAmount, "Initial Uniswap listing - amount exceeds transfer limit");
                require(balanceOf(recipient).add(amount) <= _limitMaxBalance, "Initial Uniswap listing - max balance limit");
            }
            _transferFromExcluded(sender, recipient, amount, _tFeePercent);            
        } 
        else if (!_isExcluded[sender] && _isExcluded[recipient]) 
        {            
            if (_limitExpiresTimestamp >= now) {
                _transferToExcluded(sender, recipient, amount, _limitSellFeePercent);
            } else {
                _transferToExcluded(sender, recipient, amount, _tFeePercent);
            }

        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            require(_limitExpiresTimestamp < now, "Initial Uniswap listing - Wallet to Wallet transfers temporarily disabled");
            _transferStandard(sender, recipient, amount, _tFeePercent);
            
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount, 0);            
        } else {
            require(_limitExpiresTimestamp < now, "Initial Uniswap listing - Wallet to Wallet transfers temporarily disabled");
            _transferStandard(sender, recipient, amount, _tFeePercent);            
        }
    }
    
    function _transferStandard(address sender, address recipient, uint256 tAmount, uint256 tFeePercent) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount, tFeePercent);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _refractFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount, uint256 tFeePercent) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount, tFeePercent);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _refractFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount, uint256 tFeePercent) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount, tFeePercent);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _refractFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount, uint256 tFeePercent) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount, tFeePercent);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _refractFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _refractFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount, uint256 tFeePercent) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount, tFeePercent);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount, uint256 tFeePercent) private pure returns (uint256, uint256) {
        uint256 tFee = tAmount.mul(tFeePercent).div(10000);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _totalSupply;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _totalSupply);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_totalSupply)) return (_rTotal, _totalSupply);
        return (rSupply, tSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_limitExpiresTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_limitMaxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_limitSellFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_limitTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_limitTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rebaser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tFeeTimestamp","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"int256","name":"supplyDelta","type":"int256"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"refract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"refractionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"expiresTimestamp","type":"uint256"},{"internalType":"uint256","name":"transferAmount","type":"uint256"},{"internalType":"uint256","name":"maxBalance","type":"uint256"},{"internalType":"uint256","name":"sellFeePercent","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rebaser","type":"address"}],"name":"setRebaser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tFeePercent","type":"uint256"}],"name":"setTransferFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromRefraction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":[],"name":"uniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router01","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280601281526020017f6d6574656f72626173652e66696e616e63650000000000000000000000000000815250600790805190602001906200005192919062000c0e565b506040518060400160405280600a81526020017f4d4554454f524241534500000000000000000000000000000000000000000000815250600890805190602001906200009f92919062000c0e565b5060098060006101000a81548160ff021916908360ff160217905550348015620000c857600080fd5b50604051620054203803806200542083398181016040526020811015620000ee57600080fd5b81019080805190602001909291905050506000620001116200032260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600a81905550600a5460001981620001c457fe5b0660001903600b81905550620001df6200032260201b60201c565b600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610258600d8190555042600e81905550600b5460026000620002466200032260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620002946200032260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a36200031b6200030f6200032260201b60201c565b6200032a60201b60201c565b5062000cbd565b600033905090565b6200033a6200032260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620003fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620004bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156200059a5762000556600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200065860201b60201c565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b54821115620006b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180620053f6602a913960400191505060405180910390fd5b6000620006c9620006ed60201b60201c565b9050620006e581846200072760201b62002ef61790919060201c565b915050919050565b6000806000620007026200077960201b60201c565b915091506200072081836200072760201b62002ef61790919060201c565b9250505090565b60006200077183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000a2d60201b60201c565b905092915050565b6000806000600b5490506000600a54905060008090505b600680549050811015620009e757826002600060068481548110620007b157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806200089a57508160036000600684815481106200083257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15620008b357600b54600a549450945050505062000a29565b620009446002600060068481548110620008c957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548462000af860201b62002f401790919060201c565b9250620009d760036000600684815481106200095c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548362000af860201b62002f401790919060201c565b9150808060010191505062000790565b5062000a06600a54600b546200072760201b62002ef61790919060201c565b82101562000a2057600b54600a5493509350505062000a29565b81819350935050505b9091565b6000808311829062000add576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000aa157808201518184015260208101905062000a84565b50505050905090810190601f16801562000acf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858162000aea57fe5b049050809150509392505050565b600062000b4283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000b4a60201b60201c565b905092915050565b600083831115829062000bfb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000bbf57808201518184015260208101905062000ba2565b50505050905090810190601f16801562000bed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000c5157805160ff191683800117855562000c82565b8280016001018555821562000c82579182015b8281111562000c8157825182559160200191906001019062000c64565b5b50905062000c91919062000c95565b5090565b62000cba91905b8082111562000cb657600081600090555060010162000c9c565b5090565b90565b6147298062000ccd6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063a9059cbb116100b8578063e46adf621161007c578063e46adf6214610aa4578063f1bd7df814610ae8578063f2cc0c1814610af2578063f2fde38b14610b36578063f84354f114610b7a57610227565b8063a9059cbb14610902578063aef7f99e14610968578063c816841b14610986578063cba0e996146109d0578063dd62ed3e14610a2c57610227565b80638bdb2afa116100ff5780638bdb2afa146107375780638da5cb5b1461078157806395d89b41146107cb57806397d0677b1461084e578063a457c2d71461089c57610227565b806370a082311461066d578063715018a6146106c5578063735de9f7146106cf5780637d4497891461071957610227565b80632ae427dc116101b357806338a9ad1d1161018257806338a9ad1d1461053557806339509351146105535780633aa8d4be146105b9578063456e0a5d146106035780635c1eca841461062157610227565b80632ae427dc146104935780632bc1281e146104b1578063303bb0b6146104cf578063313ce5671461051157610227565b806313114a9d116101fa57806313114a9d1461037557806314f43f7e1461039357806318160ddd146103c15780631f36d925146103df57806323b872dd1461040d57610227565b806306fdde031461022c57806308d1dd8a146102af578063095ea7b3146102cd5780630ab114f914610333575b600080fd5b610234610bbe565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b7610c60565b6040518082815260200191505060405180910390f35b610319600480360360408110156102e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c66565b604051808215151515815260200191505060405180910390f35b61035f6004803603602081101561034957600080fd5b8101908080359060200190929190505050610c84565b6040518082815260200191505060405180910390f35b61037d61116f565b6040518082815260200191505060405180910390f35b6103bf600480360360208110156103a957600080fd5b8101908080359060200190929190505050611179565b005b6103c961130c565b6040518082815260200191505060405180910390f35b61040b600480360360208110156103f557600080fd5b8101908080359060200190929190505050611316565b005b6104796004803603606081101561042357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061144f565b604051808215151515815260200191505060405180910390f35b61049b611528565b6040518082815260200191505060405180910390f35b6104b961152e565b6040518082815260200191505060405180910390f35b6104fb600480360360208110156104e557600080fd5b8101908080359060200190929190505050611534565b6040518082815260200191505060405180910390f35b6105196115b8565b604051808260ff1660ff16815260200191505060405180910390f35b61053d6115cf565b6040518082815260200191505060405180910390f35b61059f6004803603604081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115d5565b604051808215151515815260200191505060405180910390f35b6105c1611688565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61060b6116ae565b6040518082815260200191505060405180910390f35b61066b6004803603608081101561063757600080fd5b81019080803590602001909291908035906020019092919080359060200190929190803590602001909291905050506116b4565b005b6106af6004803603602081101561068357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061181e565b6040518082815260200191505060405180910390f35b6106cd611909565b005b6106d7611a91565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610721611aa9565b6040518082815260200191505060405180910390f35b61073f611aaf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610789611ac7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107d3611af0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108135780820151818401526020810190506107f8565b50505050905090810190601f1680156108405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108866004803603604081101561086457600080fd5b8101908080359060200190929190803515159060200190929190505050611b92565b6040518082815260200191505060405180910390f35b6108e8600480360360408110156108b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c4d565b604051808215151515815260200191505060405180910390f35b61094e6004803603604081101561091857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d1a565b604051808215151515815260200191505060405180910390f35b610970611d38565b6040518082815260200191505060405180910390f35b61098e611d3e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a12600480360360208110156109e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d64565b604051808215151515815260200191505060405180910390f35b610a8e60048036036040811015610a4257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dba565b6040518082815260200191505060405180910390f35b610ae660048036036020811015610aba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e41565b005b610af0611f4e565b005b610b3460048036036020811015610b0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122b3565b005b610b7860048036036020811015610b4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ce565b005b610bbc60048036036020811015610b9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127db565b005b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c565780601f10610c2b57610100808354040283529160200191610c56565b820191906000526020600020905b815481529060010190602001808311610c3957829003601f168201915b5050505050905090565b60145481565b6000610c7a610c73612b69565b8484612b71565b6001905092915050565b6000610c8e611ac7565b73ffffffffffffffffffffffffffffffffffffffff16610cac612b69565b73ffffffffffffffffffffffffffffffffffffffff161480610d225750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d0a612b69565b73ffffffffffffffffffffffffffffffffffffffff16145b610d94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f53656e646572206e6f7420617574686f72697a6564000000000000000000000081525060200191505060405180910390fd5b610da960018054612d6890919063ffffffff16565b6001819055506000821415610dfe576001547f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2600a546040518082815260200191505060405180910390a2600a54905061116a565b6000610e1b60008412610e115783610e16565b836000035b612df0565b90506000610e4a600a54610e3c6009600a0a85612e7090919063ffffffff16565b612ef690919063ffffffff16565b9050600080851215610e7457610e6d826009600a0a612f4090919063ffffffff16565b9050610e8e565b610e8b826009600a0a612d6890919063ffffffff16565b90505b6000851215610eb757610eac83600a54612f4090919063ffffffff16565b600a81905550610ed3565b610ecc83600a54612d6890919063ffffffff16565b600a819055505b600019600a541115610ee957600019600a819055505b60008090505b6006805490508110156110a25760006003600060068481548110610f0f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156110955761101a6009600a0a61100c846003600060068781548110610f9857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e7090919063ffffffff16565b612ef690919063ffffffff16565b600360006006848154811061102b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8080600101915050610eef565b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561110d57600080fd5b505af1158015611121573d6000803e3d6000fd5b505050506001547f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2600a546040518082815260200191505060405180910390a2600a5493505050505b919050565b6000600c54905090565b6000611183612b69565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806146a3602c913960400191505060405180910390fd5b600061123683600d54612f8a565b50505050905061128e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112e681600b54612f4090919063ffffffff16565b600b8190555061130183600c54612d6890919063ffffffff16565b600c81905550505050565b6000600a54905090565b61131e612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61a8c0600e540142101561143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806145b0602c913960400191505060405180910390fd5b80600d8190555042600e8190555050565b600061145c848484612fe4565b61151d84611468612b69565b6115188560405180606001604052806028815260200161458860289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006114ce612b69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f69092919063ffffffff16565b612b71565b600190509392505050565b600d5481565b60115481565b6000600b54821115611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614630602a913960400191505060405180910390fd5b600061159b6136b6565b90506115b08184612ef690919063ffffffff16565b915050919050565b6000600960009054906101000a900460ff16905090565b60105481565b600061167e6115e2612b69565b8461167985600460006115f3612b69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b612b71565b6001905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b6116bc612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461177d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601454146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4c696d6974206368616e676573206e6f7420616c6c6f7765640000000000000081525060200191505060405180910390fd5b836010819055508260118190555081601281905550806013819055504260148190555050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118b957600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611904565b611901600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611534565b90505b919050565b611911612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60135481565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b885780601f10611b5d57610100808354040283529160200191611b88565b820191906000526020600020905b815481529060010190602001808311611b6b57829003601f168201915b5050505050905090565b6000600a54831115611c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611c2e576000611c1f84600d54612f8a565b50505050905080915050611c47565b6000611c3c84600d54612f8a565b505050915050809150505b92915050565b6000611d10611c5a612b69565b84611d0b856040518060600160405280602581526020016146cf6025913960046000611c84612b69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f69092919063ffffffff16565b612b71565b6001905092915050565b6000611d2e611d27612b69565b8484612fe4565b6001905092915050565b600e5481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e49612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f56612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612017576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f616c726561647920696e697469616c697a65640000000000000000000000000081525060200191505060405180910390fd5b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c65396737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561216557600080fd5b505afa158015612179573d6000803e3d6000fd5b505050506040513d602081101561218f57600080fd5b8101908080519060200190929190505050306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561223657600080fd5b505af115801561224a573d6000803e3d6000fd5b505050506040513d602081101561226057600080fd5b8101908080519060200190929190505050601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6122bb612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461237c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561243c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612510576124cc600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611534565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6125d6612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612697576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561271d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061449f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6127e3612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60008090505b600680549050811015612b65578173ffffffffffffffffffffffffffffffffffffffff166006828154811061299a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b58576006600160068054905003815481106129f657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110612a2e57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480612b1e57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612b65565b8080600101915050612969565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061467f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806144c56022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600080828401905083811015612de6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080821215612e68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f53616665436173743a2076616c7565206d75737420626520706f73697469766581525060200191505060405180910390fd5b819050919050565b600080831415612e835760009050612ef0565b6000828402905082848281612e9457fe5b0414612eeb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145676021913960400191505060405180910390fd5b809150505b92915050565b6000612f3883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e1565b905092915050565b6000612f8283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506135f6565b905092915050565b6000806000806000806000612f9f89896137a7565b915091506000612fad6136b6565b90506000806000612fbf8d86866137fb565b92509250925082828288889a509a509a509a509a505050505050509295509295909350565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561306a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061465a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061447c6023913960400191505060405180910390fd5b60008111613149576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806145dc6029913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ec5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132de5742601054106132cb57601154811115613255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806145306037913960400191505060405180910390fd5b601254613273826132658561181e565b612d6890919063ffffffff16565b11156132ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614605602b913960400191505060405180910390fd5b5b6132d9838383600d54613859565b6135f1565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156133815750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133b65742601054106133a25761339d838383601354613aae565b6133b1565b6133b0838383600d54613aae565b5b6135f0565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561345a5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134cc5742601054106134b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260498152602001806144e76049913960600191505060405180910390fd5b6134c7838383600d54613d03565b6135ef565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561356e5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613585576135808383836000613ec3565b6135ee565b42601054106135df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260498152602001806144e76049913960600191505060405180910390fd5b6135ed838383600d54613d03565b5b5b5b5b505050565b60008383111582906136a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561366857808201518184015260208101905061364d565b50505050905090810190601f1680156136955780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006136c36141ad565b915091506136da8183612ef690919063ffffffff16565b9250505090565b6000808311829061378d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613752578082015181840152602081019050613737565b50505050905090810190601f16801561377f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161379957fe5b049050809150509392505050565b60008060006137d36127106137c58688612e7090919063ffffffff16565b612ef690919063ffffffff16565b905060006137ea8287612f4090919063ffffffff16565b905080829350935050509250929050565b6000806000806138148588612e7090919063ffffffff16565b9050600061382b8688612e7090919063ffffffff16565b905060006138428284612f4090919063ffffffff16565b905082818395509550955050505093509350939050565b600080600080600061386b8787612f8a565b945094509450945094506138c787600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061395c85600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139f184600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a3e8382614441565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050505050505050565b6000806000806000613ac08787612f8a565b94509450945094509450613b1c85600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bb182600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c4684600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c938382614441565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050505050505050565b6000806000806000613d158787612f8a565b94509450945094509450613d7185600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e0684600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e538382614441565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050505050505050565b6000806000806000613ed58787612f8a565b94509450945094509450613f3187600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fc685600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061405b82600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140f084600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413d8382614441565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050505050505050565b6000806000600b5490506000600a54905060008090505b600680549050811015614404578260026000600684815481106141e357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806142ca575081600360006006848154811061426257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156142e157600b54600a549450945050505061443d565b61436a60026000600684815481106142f557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484612f4090919063ffffffff16565b92506143f5600360006006848154811061438057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612f4090919063ffffffff16565b915080806001019150506141c4565b5061441c600a54600b54612ef690919063ffffffff16565b82101561443457600b54600a5493509350505061443d565b81819350935050505b9091565b61445682600b54612f4090919063ffffffff16565b600b8190555061447181600c54612d6890919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373496e697469616c20556e6973776170206c697374696e67202d2057616c6c657420746f2057616c6c6574207472616e73666572732074656d706f726172696c792064697361626c6564496e697469616c20556e6973776170206c697374696e67202d20616d6f756e742065786365656473207472616e73666572206c696d6974536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220666565206368616e6765732074696d656c6f636b656420666f7220313220686f7572735472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f496e697469616c20556e6973776170206c697374696e67202d206d61782062616c616e6365206c696d6974416d6f756e74206d757374206265206c657373207468616e20746f74616c2072656672616374696f6e7345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f3d7bada87ef9128296e6a3b6bb19b1e81edc401d5adf1d99c175235d99040bd64736f6c63430006060033416d6f756e74206d757374206265206c657373207468616e20746f74616c2072656672616374696f6e7300000000000000000000000000000000000000000000000000005af3107a4000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063a9059cbb116100b8578063e46adf621161007c578063e46adf6214610aa4578063f1bd7df814610ae8578063f2cc0c1814610af2578063f2fde38b14610b36578063f84354f114610b7a57610227565b8063a9059cbb14610902578063aef7f99e14610968578063c816841b14610986578063cba0e996146109d0578063dd62ed3e14610a2c57610227565b80638bdb2afa116100ff5780638bdb2afa146107375780638da5cb5b1461078157806395d89b41146107cb57806397d0677b1461084e578063a457c2d71461089c57610227565b806370a082311461066d578063715018a6146106c5578063735de9f7146106cf5780637d4497891461071957610227565b80632ae427dc116101b357806338a9ad1d1161018257806338a9ad1d1461053557806339509351146105535780633aa8d4be146105b9578063456e0a5d146106035780635c1eca841461062157610227565b80632ae427dc146104935780632bc1281e146104b1578063303bb0b6146104cf578063313ce5671461051157610227565b806313114a9d116101fa57806313114a9d1461037557806314f43f7e1461039357806318160ddd146103c15780631f36d925146103df57806323b872dd1461040d57610227565b806306fdde031461022c57806308d1dd8a146102af578063095ea7b3146102cd5780630ab114f914610333575b600080fd5b610234610bbe565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b7610c60565b6040518082815260200191505060405180910390f35b610319600480360360408110156102e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c66565b604051808215151515815260200191505060405180910390f35b61035f6004803603602081101561034957600080fd5b8101908080359060200190929190505050610c84565b6040518082815260200191505060405180910390f35b61037d61116f565b6040518082815260200191505060405180910390f35b6103bf600480360360208110156103a957600080fd5b8101908080359060200190929190505050611179565b005b6103c961130c565b6040518082815260200191505060405180910390f35b61040b600480360360208110156103f557600080fd5b8101908080359060200190929190505050611316565b005b6104796004803603606081101561042357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061144f565b604051808215151515815260200191505060405180910390f35b61049b611528565b6040518082815260200191505060405180910390f35b6104b961152e565b6040518082815260200191505060405180910390f35b6104fb600480360360208110156104e557600080fd5b8101908080359060200190929190505050611534565b6040518082815260200191505060405180910390f35b6105196115b8565b604051808260ff1660ff16815260200191505060405180910390f35b61053d6115cf565b6040518082815260200191505060405180910390f35b61059f6004803603604081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115d5565b604051808215151515815260200191505060405180910390f35b6105c1611688565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61060b6116ae565b6040518082815260200191505060405180910390f35b61066b6004803603608081101561063757600080fd5b81019080803590602001909291908035906020019092919080359060200190929190803590602001909291905050506116b4565b005b6106af6004803603602081101561068357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061181e565b6040518082815260200191505060405180910390f35b6106cd611909565b005b6106d7611a91565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610721611aa9565b6040518082815260200191505060405180910390f35b61073f611aaf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610789611ac7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107d3611af0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108135780820151818401526020810190506107f8565b50505050905090810190601f1680156108405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108866004803603604081101561086457600080fd5b8101908080359060200190929190803515159060200190929190505050611b92565b6040518082815260200191505060405180910390f35b6108e8600480360360408110156108b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c4d565b604051808215151515815260200191505060405180910390f35b61094e6004803603604081101561091857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d1a565b604051808215151515815260200191505060405180910390f35b610970611d38565b6040518082815260200191505060405180910390f35b61098e611d3e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a12600480360360208110156109e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d64565b604051808215151515815260200191505060405180910390f35b610a8e60048036036040811015610a4257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dba565b6040518082815260200191505060405180910390f35b610ae660048036036020811015610aba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e41565b005b610af0611f4e565b005b610b3460048036036020811015610b0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122b3565b005b610b7860048036036020811015610b4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ce565b005b610bbc60048036036020811015610b9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127db565b005b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c565780601f10610c2b57610100808354040283529160200191610c56565b820191906000526020600020905b815481529060010190602001808311610c3957829003601f168201915b5050505050905090565b60145481565b6000610c7a610c73612b69565b8484612b71565b6001905092915050565b6000610c8e611ac7565b73ffffffffffffffffffffffffffffffffffffffff16610cac612b69565b73ffffffffffffffffffffffffffffffffffffffff161480610d225750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d0a612b69565b73ffffffffffffffffffffffffffffffffffffffff16145b610d94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f53656e646572206e6f7420617574686f72697a6564000000000000000000000081525060200191505060405180910390fd5b610da960018054612d6890919063ffffffff16565b6001819055506000821415610dfe576001547f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2600a546040518082815260200191505060405180910390a2600a54905061116a565b6000610e1b60008412610e115783610e16565b836000035b612df0565b90506000610e4a600a54610e3c6009600a0a85612e7090919063ffffffff16565b612ef690919063ffffffff16565b9050600080851215610e7457610e6d826009600a0a612f4090919063ffffffff16565b9050610e8e565b610e8b826009600a0a612d6890919063ffffffff16565b90505b6000851215610eb757610eac83600a54612f4090919063ffffffff16565b600a81905550610ed3565b610ecc83600a54612d6890919063ffffffff16565b600a819055505b600019600a541115610ee957600019600a819055505b60008090505b6006805490508110156110a25760006003600060068481548110610f0f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156110955761101a6009600a0a61100c846003600060068781548110610f9857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e7090919063ffffffff16565b612ef690919063ffffffff16565b600360006006848154811061102b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8080600101915050610eef565b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561110d57600080fd5b505af1158015611121573d6000803e3d6000fd5b505050506001547f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2600a546040518082815260200191505060405180910390a2600a5493505050505b919050565b6000600c54905090565b6000611183612b69565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806146a3602c913960400191505060405180910390fd5b600061123683600d54612f8a565b50505050905061128e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112e681600b54612f4090919063ffffffff16565b600b8190555061130183600c54612d6890919063ffffffff16565b600c81905550505050565b6000600a54905090565b61131e612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61a8c0600e540142101561143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806145b0602c913960400191505060405180910390fd5b80600d8190555042600e8190555050565b600061145c848484612fe4565b61151d84611468612b69565b6115188560405180606001604052806028815260200161458860289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006114ce612b69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f69092919063ffffffff16565b612b71565b600190509392505050565b600d5481565b60115481565b6000600b54821115611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614630602a913960400191505060405180910390fd5b600061159b6136b6565b90506115b08184612ef690919063ffffffff16565b915050919050565b6000600960009054906101000a900460ff16905090565b60105481565b600061167e6115e2612b69565b8461167985600460006115f3612b69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b612b71565b6001905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b6116bc612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461177d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601454146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4c696d6974206368616e676573206e6f7420616c6c6f7765640000000000000081525060200191505060405180910390fd5b836010819055508260118190555081601281905550806013819055504260148190555050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118b957600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611904565b611901600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611534565b90505b919050565b611911612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60135481565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b885780601f10611b5d57610100808354040283529160200191611b88565b820191906000526020600020905b815481529060010190602001808311611b6b57829003601f168201915b5050505050905090565b6000600a54831115611c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611c2e576000611c1f84600d54612f8a565b50505050905080915050611c47565b6000611c3c84600d54612f8a565b505050915050809150505b92915050565b6000611d10611c5a612b69565b84611d0b856040518060600160405280602581526020016146cf6025913960046000611c84612b69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f69092919063ffffffff16565b612b71565b6001905092915050565b6000611d2e611d27612b69565b8484612fe4565b6001905092915050565b600e5481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e49612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f56612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612017576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f616c726561647920696e697469616c697a65640000000000000000000000000081525060200191505060405180910390fd5b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c65396737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561216557600080fd5b505afa158015612179573d6000803e3d6000fd5b505050506040513d602081101561218f57600080fd5b8101908080519060200190929190505050306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561223657600080fd5b505af115801561224a573d6000803e3d6000fd5b505050506040513d602081101561226057600080fd5b8101908080519060200190929190505050601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6122bb612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461237c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561243c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612510576124cc600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611534565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6125d6612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612697576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561271d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061449f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6127e3612b69565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60008090505b600680549050811015612b65578173ffffffffffffffffffffffffffffffffffffffff166006828154811061299a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b58576006600160068054905003815481106129f657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110612a2e57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480612b1e57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612b65565b8080600101915050612969565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061467f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806144c56022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600080828401905083811015612de6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080821215612e68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f53616665436173743a2076616c7565206d75737420626520706f73697469766581525060200191505060405180910390fd5b819050919050565b600080831415612e835760009050612ef0565b6000828402905082848281612e9457fe5b0414612eeb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145676021913960400191505060405180910390fd5b809150505b92915050565b6000612f3883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e1565b905092915050565b6000612f8283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506135f6565b905092915050565b6000806000806000806000612f9f89896137a7565b915091506000612fad6136b6565b90506000806000612fbf8d86866137fb565b92509250925082828288889a509a509a509a509a505050505050509295509295909350565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561306a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061465a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061447c6023913960400191505060405180910390fd5b60008111613149576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806145dc6029913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ec5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132de5742601054106132cb57601154811115613255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806145306037913960400191505060405180910390fd5b601254613273826132658561181e565b612d6890919063ffffffff16565b11156132ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614605602b913960400191505060405180910390fd5b5b6132d9838383600d54613859565b6135f1565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156133815750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133b65742601054106133a25761339d838383601354613aae565b6133b1565b6133b0838383600d54613aae565b5b6135f0565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561345a5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134cc5742601054106134b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260498152602001806144e76049913960600191505060405180910390fd5b6134c7838383600d54613d03565b6135ef565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561356e5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613585576135808383836000613ec3565b6135ee565b42601054106135df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260498152602001806144e76049913960600191505060405180910390fd5b6135ed838383600d54613d03565b5b5b5b5b505050565b60008383111582906136a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561366857808201518184015260208101905061364d565b50505050905090810190601f1680156136955780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006136c36141ad565b915091506136da8183612ef690919063ffffffff16565b9250505090565b6000808311829061378d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613752578082015181840152602081019050613737565b50505050905090810190601f16801561377f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161379957fe5b049050809150509392505050565b60008060006137d36127106137c58688612e7090919063ffffffff16565b612ef690919063ffffffff16565b905060006137ea8287612f4090919063ffffffff16565b905080829350935050509250929050565b6000806000806138148588612e7090919063ffffffff16565b9050600061382b8688612e7090919063ffffffff16565b905060006138428284612f4090919063ffffffff16565b905082818395509550955050505093509350939050565b600080600080600061386b8787612f8a565b945094509450945094506138c787600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061395c85600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139f184600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a3e8382614441565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050505050505050565b6000806000806000613ac08787612f8a565b94509450945094509450613b1c85600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bb182600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c4684600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c938382614441565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050505050505050565b6000806000806000613d158787612f8a565b94509450945094509450613d7185600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e0684600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e538382614441565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050505050505050565b6000806000806000613ed58787612f8a565b94509450945094509450613f3187600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fc685600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f4090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061405b82600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140f084600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d6890919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413d8382614441565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3505050505050505050565b6000806000600b5490506000600a54905060008090505b600680549050811015614404578260026000600684815481106141e357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806142ca575081600360006006848154811061426257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156142e157600b54600a549450945050505061443d565b61436a60026000600684815481106142f557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484612f4090919063ffffffff16565b92506143f5600360006006848154811061438057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612f4090919063ffffffff16565b915080806001019150506141c4565b5061441c600a54600b54612ef690919063ffffffff16565b82101561443457600b54600a5493509350505061443d565b81819350935050505b9091565b61445682600b54612f4090919063ffffffff16565b600b8190555061447181600c54612d6890919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373496e697469616c20556e6973776170206c697374696e67202d2057616c6c657420746f2057616c6c6574207472616e73666572732074656d706f726172696c792064697361626c6564496e697469616c20556e6973776170206c697374696e67202d20616d6f756e742065786365656473207472616e73666572206c696d6974536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220666565206368616e6765732074696d656c6f636b656420666f7220313220686f7572735472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f496e697469616c20556e6973776170206c697374696e67202d206d61782062616c616e6365206c696d6974416d6f756e74206d757374206265206c657373207468616e20746f74616c2072656672616374696f6e7345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f3d7bada87ef9128296e6a3b6bb19b1e81edc401d5adf1d99c175235d99040bd64736f6c63430006060033

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

00000000000000000000000000000000000000000000000000005af3107a4000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000005af3107a4000


Deployed Bytecode Sourcemap

35013:15001:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35013:15001:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;37204: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;37204:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36217:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40438:161;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;40438:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38437:1457;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;38437:1457:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41549:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41644:390;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;41644:390:0;;;;;;;;;;;;;;;;;:::i;:::-;;38325:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37596:263;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;37596:263:0;;;;;;;;;;;;;;;;;:::i;:::-;;40607:313;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;40607:313:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35933:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36089:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42517:253;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;42517:253:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37390:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36045:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40928:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;40928:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36009:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36131:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37871:442;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;37871:442:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39906:198;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;39906:198:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34178:148;;;:::i;:::-;;36378:113;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36169:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36256:112;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33536:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37295: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;37295:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42042:467;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;42042:467:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41154:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;41154:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40112:167;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;40112:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35967:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36501:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41431:110;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;41431:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40287:143;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;40287:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37489:95;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;37489:95:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;36988:208;;;:::i;:::-;;42778:330;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;42778:330:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;34481:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;34481:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;43116:476;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;43116:476:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;37204:83;37241:13;37274:5;37267:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37204:83;:::o;36217:30::-;;;;:::o;40438:161::-;40513:4;40530:39;40539:12;:10;:12::i;:::-;40553:7;40562:6;40530:8;:39::i;:::-;40587:4;40580:11;;40438:161;;;;:::o;38437:1457::-;38509:7;38558;:5;:7::i;:::-;38542:23;;:12;:10;:12::i;:::-;:23;;;:51;;;;38585:8;;;;;;;;;;;38569:24;;:12;:10;:12::i;:::-;:24;;;38542:51;38534:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38649:13;38660:1;38649:6;;:10;;:13;;;;:::i;:::-;38640:6;:22;;;;38696:1;38681:11;:16;38677:119;;;38729:6;;38719:31;38737:12;;38719:31;;;;;;;;;;;;;;;;;;38772:12;;38765:19;;;;38677:119;38816:20;38839:58;38854:1;38840:11;:15;:44;;38873:11;38840:44;;;38859:11;38858:12;;38840:44;38839:56;:58::i;:::-;38816:81;;38908:12;38923:50;38960:12;;38923:32;35563:1;35613:2;:14;38923:12;:16;;:32;;;;:::i;:::-;:36;;:50;;;;:::i;:::-;38908:65;;38984:18;39041:1;39027:11;:15;39023:155;;;39072:24;39091:4;35563:1;35613:2;:14;39072:18;;:24;;;;:::i;:::-;39059:37;;39023:155;;;39142:24;39161:4;35563:1;35613:2;:14;39142:18;;:24;;;;:::i;:::-;39129:37;;39023:155;39216:1;39202:11;:15;39198:171;;;39249:30;39266:12;39249;;:16;;:30;;;;:::i;:::-;39234:12;:45;;;;39198:171;;;39327:30;39344:12;39327;;:16;;:30;;;;:::i;:::-;39312:12;:45;;;;39198:171;35855:1;35846:11;39393:12;;:18;39389:69;;;35855:1;35846:11;39428:12;:18;;;;39389:69;39483:9;39495:1;39483:13;;39478:219;39502:9;:16;;;;39498:1;:20;39478:219;;;39567:1;39543:7;:21;39551:9;39561:1;39551:12;;;;;;;;;;;;;;;;;;;;;;;;;39543:21;;;;;;;;;;;;;;;;:25;39540:146;;;39613:57;35563:1;35613:2;:14;39613:37;39639:10;39613:7;:21;39621:9;39631:1;39621:12;;;;;;;;;;;;;;;;;;;;;;;;;39613:21;;;;;;;;;;;;;;;;:25;;:37;;;;:::i;:::-;:41;;:57;;;;:::i;:::-;39589:7;:21;39597:9;39607:1;39597:12;;;;;;;;;;;;;;;;;;;;;;;;;39589:21;;;;;;;;;;;;;;;:81;;;;39540:146;39520:3;;;;;;;39478:219;;;;39786:11;;;;;;;;;;;39771:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;39771:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39771:34:0;;;;39833:6;;39823:31;39841:12;;39823:31;;;;;;;;;;;;;;;;;;39874:12;;39867:19;;;;;38437:1457;;;;:::o;41549:87::-;41591:7;41618:10;;41611:17;;41549:87;:::o;41644:390::-;41696:14;41713:12;:10;:12::i;:::-;41696:29;;41745:11;:19;41757:6;41745:19;;;;;;;;;;;;;;;;;;;;;;;;;41744:20;41736:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41825:15;41848:33;41859:7;41868:12;;41848:10;:33::i;:::-;41824:57;;;;;;41910:28;41930:7;41910;:15;41918:6;41910:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41892:7;:15;41900:6;41892:15;;;;;;;;;;;;;;;:46;;;;41959:20;41971:7;41959;;:11;;:20;;;;:::i;:::-;41949:7;:30;;;;42003:23;42018:7;42003:10;;:14;;:23;;;;:::i;:::-;41990:10;:36;;;;41644:390;;;:::o;38325:100::-;38378:7;38405:12;;38398:19;;38325:100;:::o;37596:263::-;33758:12;:10;:12::i;:::-;33748:22;;:6;;;;;;;;;;;:22;;;33740:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37713:8:::1;37696:14;;:25;37688:3;:34;;37680:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37799:11;37784:12;:26;;;;37848:3;37831:14;:20;;;;37596:263:::0;:::o;40607:313::-;40705:4;40722:36;40732:6;40740:9;40751:6;40722:9;:36::i;:::-;40769:121;40778:6;40786:12;:10;:12::i;:::-;40800:89;40838:6;40800:89;;;;;;;;;;;;;;;;;:11;:19;40812:6;40800:19;;;;;;;;;;;;;;;:33;40820:12;:10;:12::i;:::-;40800:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;40769:8;:121::i;:::-;40908:4;40901:11;;40607:313;;;;;:::o;35933:27::-;;;;:::o;36089:35::-;;;;:::o;42517:253::-;42583:7;42622;;42611;:18;;42603:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42687:19;42710:10;:8;:10::i;:::-;42687:33;;42738:24;42750:11;42738:7;:11;;:24;;;;:::i;:::-;42731:31;;;42517:253;;;:::o;37390:83::-;37431:5;37456:9;;;;;;;;;;;37449:16;;37390:83;:::o;36045:37::-;;;;:::o;40928:218::-;41016:4;41033:83;41042:12;:10;:12::i;:::-;41056:7;41065:50;41104:10;41065:11;:25;41077:12;:10;:12::i;:::-;41065:25;;;;;;;;;;;;;;;:34;41091:7;41065:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;41033:8;:83::i;:::-;41134:4;41127:11;;40928:218;;;;:::o;36009:23::-;;;;;;;;;;;;;:::o;36131:31::-;;;;:::o;37871:442::-;33758:12;:10;:12::i;:::-;33748:22;;:6;;;;;;;;;;;:22;;;33740:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38042:1:::1;38023:15;;:20;38015:58;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38119:16;38094:22;:41;;;;38169:14;38146:20;:37;;;;38213:10;38194:16;:29;;;;38257:14;38234:20;:37;;;;38302:3;38284:15;:21;;;;37871:442:::0;;;;:::o;39906:198::-;39972:7;39996:11;:20;40008:7;39996:20;;;;;;;;;;;;;;;;;;;;;;;;;39992:49;;;40025:7;:16;40033:7;40025:16;;;;;;;;;;;;;;;;40018:23;;;;39992:49;40059:37;40079:7;:16;40087:7;40079:16;;;;;;;;;;;;;;;;40059:19;:37::i;:::-;40052:44;;39906:198;;;;:::o;34178:148::-;33758:12;:10;:12::i;:::-;33748:22;;:6;;;;;;;;;;;:22;;;33740:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34285:1:::1;34248:40;;34269:6;::::0;::::1;;;;;;;;;34248:40;;;;;;;;;;;;34316:1;34299:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;34178:148::o:0;36378:113::-;36448:42;36378:113;:::o;36169:35::-;;;;:::o;36256:112::-;36325:42;36256:112;:::o;33536:79::-;33574:7;33601:6;;;;;;;;;;;33594:13;;33536:79;:::o;37295:87::-;37334:13;37367:7;37360:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37295:87;:::o;42042:467::-;42132:7;42171:12;;42160:7;:23;;42152:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42235:17;42230:272;;42270:15;42293:33;42304:7;42313:12;;42293:10;:33::i;:::-;42269:57;;;;;;42348:7;42341:14;;;;;42230:272;42390:23;42420:33;42431:7;42440:12;;42420:10;:33::i;:::-;42388:65;;;;;;42475:15;42468:22;;;42042:467;;;;;:::o;41154:269::-;41247:4;41264:129;41273:12;:10;:12::i;:::-;41287:7;41296:96;41335:15;41296:96;;;;;;;;;;;;;;;;;:11;:25;41308:12;:10;:12::i;:::-;41296:25;;;;;;;;;;;;;;;:34;41322:7;41296:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;41264:8;:129::i;:::-;41411:4;41404:11;;41154:269;;;;:::o;40112:167::-;40190:4;40207:42;40217:12;:10;:12::i;:::-;40231:9;40242:6;40207:9;:42::i;:::-;40267:4;40260:11;;40112:167;;;;:::o;35967:29::-;;;;:::o;36501:26::-;;;;;;;;;;;;;:::o;41431:110::-;41489:4;41513:11;:20;41525:7;41513:20;;;;;;;;;;;;;;;;;;;;;;;;;41506:27;;41431:110;;;:::o;40287:143::-;40368:7;40395:11;:18;40407:5;40395:18;;;;;;;;;;;;;;;:27;40414:7;40395:27;;;;;;;;;;;;;;;;40388:34;;40287:143;;;;:::o;37489:95::-;33758:12;:10;:12::i;:::-;33748:22;;:6;;;;;;;;;;;:22;;;33740:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37569:7:::1;37558:8;;:18;;;;;;;;;;;;;;;;;;37489:95:::0;:::o;36988:208::-;33758:12;:10;:12::i;:::-;33748:22;;:6;;;;;;;;;;;:22;;;33740:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37075:1:::1;37052:25;;:11;;;;;;;;;;;:25;;;37044:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36325:42;37126:25;;;36448:42;37152:18;;;:20;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;37152:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;37152:20:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;37152:20:0;;;;;;;;;;;;;;;;37182:4;37126:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;37126:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;37126:62:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;37126:62:0;;;;;;;;;;;;;;;;37112:11;;:76;;;;;;;;;;;;;;;;;;36988:208::o:0;42778:330::-;33758:12;:10;:12::i;:::-;33748:22;;:6;;;;;;;;;;;:22;;;33740:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42858:11:::1;:20;42870:7;42858:20;;;;;;;;;;;;;;;;;;;;;;;;;42857:21;42849:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42943:1;42924:7;:16;42932:7;42924:16;;;;;;;;;;;;;;;;:20;42921:108;;;42980:37;43000:7;:16;43008:7;43000:16;;;;;;;;;;;;;;;;42980:19;:37::i;:::-;42961:7;:16;42969:7;42961:16;;;;;;;;;;;;;;;:56;;;;42921:108;43062:4;43039:11;:20;43051:7;43039:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;43077:9;43092:7;43077:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;43077:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42778:330:::0;:::o;34481:244::-;33758:12;:10;:12::i;:::-;33748:22;;:6;;;;;;;;;;;:22;;;33740:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34590:1:::1;34570:22;;:8;:22;;;;34562:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34680:8;34651:38;;34672:6;::::0;::::1;;;;;;;;;34651:38;;;;;;;;;;;;34709:8;34700:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;34481:244:::0;:::o;43116:476::-;33758:12;:10;:12::i;:::-;33748:22;;:6;;;;;;;;;;;:22;;;33740:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43195:11:::1;:20;43207:7;43195:20;;;;;;;;;;;;;;;;;;;;;;;;;43187:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;43263:9;43275:1:::0;43263:13:::1;;43258:327;43282:9;:16;;;;43278:1;:20;43258:327;;;43340:7;43324:23;;:9;43334:1;43324:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;43320:254;;;43383:9;43412:1;43393:9;:16;;;;:20;43383:31;;;;;;;;;;;;;;;;;;;;;;;;;43368:9;43378:1;43368:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;43452:1;43433:7;:16;43441:7;43433:16;;;;;;;;;;;;;;;:20;;;;43495:5;43472:11;:20;43484:7;43472:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;43519:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43553:5;;43320:254;43300:3;;;;;;;43258:327;;;;43116:476:::0;:::o;9984:106::-;10037:15;10072:10;10065:17;;9984:106;:::o;43600:338::-;43711:1;43694:19;;:5;:19;;;;43686:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43792:1;43773:21;;:7;:21;;;;43765:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43876:6;43846:11;:18;43858:5;43846:18;;;;;;;;;;;;;;;:27;43865:7;43846:27;;;;;;;;;;;;;;;:36;;;;43914:7;43898:32;;43907:5;43898:32;;;43923:6;43898:32;;;;;;;;;;;;;;;;;;43600:338;;;:::o;11183:181::-;11241:7;11261:9;11277:1;11273;:5;11261:17;;11302:1;11297;:6;;11289:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11355:1;11348:8;;;11183:181;;;;:::o;3348:171::-;3404:7;3441:1;3432:5;:10;;3424:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3505:5;3490:21;;3348:171;;;:::o;12537:471::-;12595:7;12845:1;12840;:6;12836:47;;;12870:1;12863:8;;;;12836:47;12895:9;12911:1;12907;:5;12895:17;;12940:1;12935;12931;:5;;;;;;:10;12923:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12999:1;12992:8;;;12537:471;;;;;:::o;13484:132::-;13542:7;13569:39;13573:1;13576;13569:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;13562:46;;13484:132;;;;:::o;11647:136::-;11705:7;11732:43;11736:1;11739;11732:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;11725:50;;11647:136;;;;:::o;48193:445::-;48273:7;48282;48291;48300;48309;48330:23;48355:12;48371:33;48383:7;48392:11;48371;:33::i;:::-;48329:75;;;;48415:19;48438:10;:8;:10::i;:::-;48415:33;;48460:15;48477:23;48502:12;48518:39;48530:7;48539:4;48545:11;48518;:39::i;:::-;48459:98;;;;;;48576:7;48585:15;48602:4;48608:15;48625:4;48568:62;;;;;;;;;;;;;;;;48193:445;;;;;;;;:::o;43946:1837::-;44062:1;44044:20;;:6;:20;;;;44036:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44146:1;44125:23;;:9;:23;;;;44117:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44216:1;44207:6;:10;44199:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44287:11;:19;44299:6;44287:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;44311:11;:22;44323:9;44311:22;;;;;;;;;;;;;;;;;;;;;;;;;44310:23;44287:46;44284:1492;;;44388:3;44362:22;;:29;44359:294;;44430:20;;44420:6;:30;;44412:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44573:16;;44537:32;44562:6;44537:20;44547:9;44537;:20::i;:::-;:24;;:32;;;;:::i;:::-;:52;;44529:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44359:294;44667:62;44689:6;44697:9;44708:6;44716:12;;44667:21;:62::i;:::-;44284:1492;;;44774:11;:19;44786:6;44774:19;;;;;;;;;;;;;;;;;;;;;;;;;44773:20;:46;;;;;44797:11;:22;44809:9;44797:22;;;;;;;;;;;;;;;;;;;;;;;;;44773:46;44769:1007;;;44888:3;44862:22;;:29;44858:239;;44912:68;44932:6;44940:9;44951:6;44959:20;;44912:19;:68::i;:::-;44858:239;;;45021:60;45041:6;45049:9;45060:6;45068:12;;45021:19;:60::i;:::-;44858:239;44769:1007;;;45121:11;:19;45133:6;45121:19;;;;;;;;;;;;;;;;;;;;;;;;;45120:20;:47;;;;;45145:11;:22;45157:9;45145:22;;;;;;;;;;;;;;;;;;;;;;;;;45144:23;45120:47;45116:660;;;45217:3;45192:22;;:28;45184:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45313:58;45331:6;45339:9;45350:6;45358:12;;45313:17;:58::i;:::-;45116:660;;;45407:11;:19;45419:6;45407:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;45430:11;:22;45442:9;45430:22;;;;;;;;;;;;;;;;;;;;;;;;;45407:45;45403:373;;;45469:51;45491:6;45499:9;45510:6;45518:1;45469:21;:51::i;:::-;45403:373;;;45598:3;45573:22;;:28;45565:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45694:58;45712:6;45720:9;45731:6;45739:12;;45694:17;:58::i;:::-;45403:373;45116:660;44769:1007;44284:1492;43946:1837;;;:::o;12086:192::-;12172:7;12205:1;12200;:6;;12208:12;12192: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;12192:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12232:9;12248:1;12244;:5;12232:17;;12269:1;12262:8;;;12086:192;;;;;:::o;49259:163::-;49300:7;49321:15;49338;49357:19;:17;:19::i;:::-;49320:56;;;;49394:20;49406:7;49394;:11;;:20;;;;:::i;:::-;49387:27;;;;49259:163;:::o;14112:278::-;14198:7;14230:1;14226;:5;14233:12;14218: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;14218:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14257:9;14273:1;14269;:5;;;;;;14257:17;;14381:1;14374:8;;;14112:278;;;;;:::o;48646:263::-;48727:7;48736;48756:12;48771:35;48800:5;48771:24;48783:11;48771:7;:11;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;48756:50;;48817:23;48843:17;48855:4;48843:7;:11;;:17;;;;:::i;:::-;48817:43;;48879:15;48896:4;48871:30;;;;;;48646:263;;;;;:::o;48917:334::-;49012:7;49021;49030;49050:15;49068:24;49080:11;49068:7;:11;;:24;;;;:::i;:::-;49050:42;;49103:12;49118:21;49127:11;49118:4;:8;;:21;;;;:::i;:::-;49103:36;;49150:23;49176:17;49188:4;49176:7;:11;;:17;;;;:::i;:::-;49150:43;;49212:7;49221:15;49238:4;49204:39;;;;;;;;;48917:334;;;;;;;:::o;46860:543::-;46984:15;47001:23;47026:12;47040:23;47065:12;47081:32;47092:7;47101:11;47081:10;:32::i;:::-;46983:130;;;;;;;;;;47142:28;47162:7;47142;:15;47150:6;47142:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;47124:7;:15;47132:6;47124:15;;;;;;;;;;;;;;;:46;;;;47199:28;47219:7;47199;:15;47207:6;47199:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;47181:7;:15;47189:6;47181:15;;;;;;;;;;;;;;;:46;;;;47259:39;47282:15;47259:7;:18;47267:9;47259:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;47238:7;:18;47246:9;47238:18;;;;;;;;;;;;;;;:60;;;;47312:23;47324:4;47330;47312:11;:23::i;:::-;47368:9;47351:44;;47360:6;47351:44;;;47379:15;47351:44;;;;;;;;;;;;;;;;;;46860:543;;;;;;;;;:::o;46289:563::-;46411:15;46428:23;46453:12;46467:23;46492:12;46508:32;46519:7;46528:11;46508:10;:32::i;:::-;46410:130;;;;;;;;;;46569:28;46589:7;46569;:15;46577:6;46569:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46551:7;:15;46559:6;46551:15;;;;;;;;;;;;;;;:46;;;;46629:39;46652:15;46629:7;:18;46637:9;46629:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46608:7;:18;46616:9;46608:18;;;;;;;;;;;;;;;:60;;;;46700:39;46723:15;46700:7;:18;46708:9;46700:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46679:7;:18;46687:9;46679:18;;;;;;;;;;;;;;;:60;;;;46761:23;46773:4;46779;46761:11;:23::i;:::-;46817:9;46800:44;;46809:6;46800:44;;;46828:15;46800:44;;;;;;;;;;;;;;;;;;46289:563;;;;;;;;;:::o;45795:486::-;45915:15;45932:23;45957:12;45971:23;45996:12;46012:32;46023:7;46032:11;46012:10;:32::i;:::-;45914:130;;;;;;;;;;46073:28;46093:7;46073;:15;46081:6;46073:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46055:7;:15;46063:6;46055:15;;;;;;;;;;;;;;;:46;;;;46133:39;46156:15;46133:7;:18;46141:9;46133:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46112:7;:18;46120:9;46112:18;;;;;;;;;;;;;;;:60;;;;46190:23;46202:4;46208;46190:11;:23::i;:::-;46246:9;46229:44;;46238:6;46229:44;;;46257:15;46229:44;;;;;;;;;;;;;;;;;;45795:486;;;;;;;;;:::o;47411:619::-;47535:15;47552:23;47577:12;47591:23;47616:12;47632:32;47643:7;47652:11;47632:10;:32::i;:::-;47534:130;;;;;;;;;;47693:28;47713:7;47693;:15;47701:6;47693:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;47675:7;:15;47683:6;47675:15;;;;;;;;;;;;;;;:46;;;;47750:28;47770:7;47750;:15;47758:6;47750:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;47732:7;:15;47740:6;47732:15;;;;;;;;;;;;;;;:46;;;;47810:39;47833:15;47810:7;:18;47818:9;47810:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;47789:7;:18;47797:9;47789:18;;;;;;;;;;;;;;;:60;;;;47881:39;47904:15;47881:7;:18;47889:9;47881:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;47860:7;:18;47868:9;47860:18;;;;;;;;;;;;;;;:60;;;;47939:23;47951:4;47957;47939:11;:23::i;:::-;47995:9;47978:44;;47987:6;47978:44;;;48006:15;47978:44;;;;;;;;;;;;;;;;;;47411:619;;;;;;;;;:::o;49430:581::-;49480:7;49489;49509:15;49527:7;;49509:25;;49545:15;49563:12;;49545:30;;49597:9;49609:1;49597:13;;49592:294;49616:9;:16;;;;49612:1;:20;49592:294;;;49682:7;49658;:21;49666:9;49676:1;49666:12;;;;;;;;;;;;;;;;;;;;;;;;;49658:21;;;;;;;;;;;;;;;;:31;:66;;;;49717:7;49693;:21;49701:9;49711:1;49701:12;;;;;;;;;;;;;;;;;;;;;;;;;49693:21;;;;;;;;;;;;;;;;:31;49658:66;49654:102;;;49734:7;;49743:12;;49726:30;;;;;;;;;49654:102;49781:34;49793:7;:21;49801:9;49811:1;49801:12;;;;;;;;;;;;;;;;;;;;;;;;;49793:21;;;;;;;;;;;;;;;;49781:7;:11;;:34;;;;:::i;:::-;49771:44;;49840:34;49852:7;:21;49860:9;49870:1;49860:12;;;;;;;;;;;;;;;;;;;;;;;;;49852:21;;;;;;;;;;;;;;;;49840:7;:11;;:34;;;;:::i;:::-;49830:44;;49634:3;;;;;;;49592:294;;;;49910:25;49922:12;;49910:7;;:11;;:25;;;;:::i;:::-;49900:7;:35;49896:71;;;49945:7;;49954:12;;49937:30;;;;;;;;49896:71;49986:7;49995;49978:25;;;;;;49430:581;;;:::o;48038:147::-;48116:17;48128:4;48116:7;;:11;;:17;;;;:::i;:::-;48106:7;:27;;;;48157:20;48172:4;48157:10;;:14;;:20;;;;:::i;:::-;48144:10;:33;;;;48038:147;;:::o

Swarm Source

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