BscScan - Sponsored slots available. Book your slot here!
Overview
Max Total Supply
999,785,033,525,475.482347WSG (CSupply: 999,785,030,525,475.482347)
Holders
1,441,445 ( 0.000%)
Market
Price
$0.00 @ 0.000000 BNB (-54.29%)
Onchain Market Cap
$228,226.93
Circulating Supply Market Cap
$97,076.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
500,000 WSGValue
$0.00 ( ~0 BNB) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
JulPadToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at BscScan.com on 2021-05-25
*/
// File: @openzeppelin/upgrades/contracts/Initializable.sol
pragma solidity >=0.4.24 <0.7.0;
/**
* @title Initializable
*
* @dev Helper contract to support initializer functions. To use it, replace
* the constructor with a function that has the `initializer` modifier.
* WARNING: Unlike constructors, initializer functions must be manually
* invoked. This applies both to deploying an Initializable contract, as well
* as extending an Initializable contract via inheritance.
* WARNING: When used with inheritance, manual care must be taken to not invoke
* a parent initializer twice, or ensure that all initializers are idempotent,
* because this is not dealt with automatically as with constructors.
*/
contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private initializing;
/**
* @dev Modifier to use in the initializer function of a contract.
*/
modifier initializer() {
require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");
bool isTopLevelCall = !initializing;
if (isTopLevelCall) {
initializing = true;
initialized = true;
}
_;
if (isTopLevelCall) {
initializing = false;
}
}
/// @dev Returns true if and only if the function is running in the constructor
function isConstructor() private view returns (bool) {
// extcodesize checks the size of the code stored in an address, and
// address returns the current address. Since the code is still not
// deployed when running a constructor, any checks on its code size will
// yield zero, making it an effective way to detect if a contract is
// under construction or not.
address self = address(this);
uint256 cs;
assembly { cs := extcodesize(self) }
return cs == 0;
}
// Reserved storage space to allow for layout changes in the future.
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/GSN/Context.sol
pragma solidity ^0.5.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract Context is Initializable {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: @openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol
pragma solidity ^0.5.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
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.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
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.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20Mintable}.
*
* 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 Initializable, Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view 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 returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public 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 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 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 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 {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_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 {
require(account != address(0), "ERC20: mint to the zero address");
_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 {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
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 Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
}
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Burnable.sol
pragma solidity ^0.5.0;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
contract ERC20Burnable is Initializable, Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public {
_burn(_msgSender(), amount);
}
/**
* @dev See {ERC20-_burnFrom}.
*/
function burnFrom(address account, uint256 amount) public {
_burnFrom(account, amount);
}
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Detailed.sol
pragma solidity ^0.5.0;
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed is Initializable, IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
function initialize(string memory name, string memory symbol, uint8 decimals) public initializer {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @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.
*
* 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;
}
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/access/Roles.sol
pragma solidity ^0.5.0;
/**
* @title Roles
* @dev Library for managing addresses assigned to a Role.
*/
library Roles {
struct Role {
mapping (address => bool) bearer;
}
/**
* @dev Give an account access to this role.
*/
function add(Role storage role, address account) internal {
require(!has(role, account), "Roles: account already has role");
role.bearer[account] = true;
}
/**
* @dev Remove an account's access to this role.
*/
function remove(Role storage role, address account) internal {
require(has(role, account), "Roles: account does not have role");
role.bearer[account] = false;
}
/**
* @dev Check if an account has this role.
* @return bool
*/
function has(Role storage role, address account) internal view returns (bool) {
require(account != address(0), "Roles: account is the zero address");
return role.bearer[account];
}
}
// File: @openzeppelin/contracts-ethereum-package/contracts/access/roles/MinterRole.sol
pragma solidity ^0.5.0;
contract MinterRole is Initializable, Context {
using Roles for Roles.Role;
event MinterAdded(address indexed account);
event MinterRemoved(address indexed account);
Roles.Role private _minters;
function initialize(address sender) public initializer {
if (!isMinter(sender)) {
_addMinter(sender);
}
}
modifier onlyMinter() {
require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
_;
}
function isMinter(address account) public view returns (bool) {
return _minters.has(account);
}
function addMinter(address account) public onlyMinter {
_addMinter(account);
}
function renounceMinter() public {
_removeMinter(_msgSender());
}
function _addMinter(address account) internal {
_minters.add(account);
emit MinterAdded(account);
}
function _removeMinter(address account) internal {
_minters.remove(account);
emit MinterRemoved(account);
}
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Mintable.sol
pragma solidity ^0.5.0;
/**
* @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
* which have permission to mint (create) new tokens as they see fit.
*
* At construction, the deployer of the contract is the only minter.
*/
contract ERC20Mintable is Initializable, ERC20, MinterRole {
function initialize(address sender) public initializer {
MinterRole.initialize(sender);
}
/**
* @dev See {ERC20-_mint}.
*
* Requirements:
*
* - the caller must have the {MinterRole}.
*/
function mint(address account, uint256 amount) public onlyMinter returns (bool) {
_mint(account, amount);
return true;
}
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/access/roles/PauserRole.sol
pragma solidity ^0.5.0;
contract PauserRole is Initializable, Context {
using Roles for Roles.Role;
event PauserAdded(address indexed account);
event PauserRemoved(address indexed account);
Roles.Role private _pausers;
function initialize(address sender) public initializer {
if (!isPauser(sender)) {
_addPauser(sender);
}
}
modifier onlyPauser() {
require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
_;
}
function isPauser(address account) public view returns (bool) {
return _pausers.has(account);
}
function addPauser(address account) public onlyPauser {
_addPauser(account);
}
function renouncePauser() public {
_removePauser(_msgSender());
}
function _addPauser(address account) internal {
_pausers.add(account);
emit PauserAdded(account);
}
function _removePauser(address account) internal {
_pausers.remove(account);
emit PauserRemoved(account);
}
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/lifecycle/Pausable.sol
pragma solidity ^0.5.0;
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is Initializable, Context, PauserRole {
/**
* @dev Emitted when the pause is triggered by a pauser (`account`).
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by a pauser (`account`).
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state. Assigns the Pauser role
* to the deployer.
*/
function initialize(address sender) public initializer {
PauserRole.initialize(sender);
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Called by a pauser to pause, triggers stopped state.
*/
function pause() public onlyPauser whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Called by a pauser to unpause, returns to normal state.
*/
function unpause() public onlyPauser whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Pausable.sol
pragma solidity ^0.5.0;
/**
* @title Pausable token
* @dev ERC20 with pausable transfers and allowances.
*
* Useful if you want to stop trades until the end of a crowdsale, or have
* an emergency switch for freezing all token transfers in the event of a large
* bug.
*/
contract ERC20Pausable is Initializable, ERC20, Pausable {
function initialize(address sender) public initializer {
Pausable.initialize(sender);
}
function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
return super.transfer(to, value);
}
function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
return super.transferFrom(from, to, value);
}
function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
return super.approve(spender, value);
}
function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
return super.increaseAllowance(spender, addedValue);
}
function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
return super.decreaseAllowance(spender, subtractedValue);
}
uint256[50] private ______gap;
}
// File: @openzeppelin/contracts-ethereum-package/contracts/ownership/Ownable.sol
pragma solidity ^0.5.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be aplied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Initializable, Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function initialize(address sender) public initializer {
_owner = sender;
emit OwnershipTransferred(address(0), _owner);
}
/**
* @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(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return _msgSender() == _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 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 onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
uint256[50] private ______gap;
}
// File: contracts/JulPadToken.sol
pragma solidity 0.5.16;
contract JulPadToken is
Initializable,
ERC20Burnable,
ERC20Mintable,
ERC20Pausable,
ERC20Detailed,
Ownable
{
address private tokenOwner;
function() external payable {}
function initialize(
string calldata name,
string calldata symbol,
uint8 decimals,
address _tokenOwner
) external initializer {
Ownable.initialize(msg.sender);
tokenOwner = _tokenOwner;
ERC20Detailed.initialize(name, symbol, decimals);
ERC20Mintable.initialize(address(this));
_removeMinter(address(this));
_addMinter(tokenOwner);
ERC20Pausable.initialize(address(this));
_removePauser(address(this));
_addPauser(tokenOwner);
_transferOwnership(tokenOwner);
}
function setOwner(address _tokenOwner) external onlyOwner {
_removeMinter(tokenOwner);
_removePauser(tokenOwner);
tokenOwner = _tokenOwner;
_addMinter(_tokenOwner);
_addPauser(_tokenOwner);
_transferOwnership(_tokenOwner);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"address","name":"_tokenOwner","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_tokenOwner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052612697806100136000396000f3fe6080604052600436106101f5576000357c010000000000000000000000000000000000000000000000000000000090048063715018a61161011f57806398650275116100b2578063c4d66de811610081578063c4d66de8146107f4578063dd62ed3e14610827578063de7ea79d14610862578063f2fde38b14610943576101f5565b8063986502751461073a578063a457c2d71461074f578063a9059cbb14610788578063aa271e1a146107c1576101f5565b80638da5cb5b116100ee5780638da5cb5b146106ac5780638f32d59b146106dd57806395d89b41146106f2578063983b2d5614610707576101f5565b8063715018a61461061657806379cc67901461062b57806382dc1ec4146106645780638456cb5914610697576101f5565b8063395093511161019757806346fbf68e1161016657806346fbf68e146105865780635c975abb146105b95780636ef8d66d146105ce57806370a08231146105e3576101f5565b806339509351146104d55780633f4ba83a1461050e57806340c10f191461052357806342966c681461055c576101f5565b80631624f6c6116101d35780631624f6c61461030157806318160ddd1461044057806323b872dd14610467578063313ce567146104aa576101f5565b806306fdde03146101f7578063095ea7b31461028157806313af4035146102ce575b005b34801561020357600080fd5b5061020c610976565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024657818101518382015260200161022e565b50505050905090810190601f1680156102735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028d57600080fd5b506102ba600480360360408110156102a457600080fd5b50600160a060020a038135169060200135610a0e565b604080519115158252519081900360200190f35b3480156102da57600080fd5b506101f5600480360360208110156102f157600080fd5b5035600160a060020a0316610a6c565b34801561030d57600080fd5b506101f56004803603606081101561032457600080fd5b81019060208101813564010000000081111561033f57600080fd5b82018360208201111561035157600080fd5b8035906020019184600183028401116401000000008311171561037357600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156103c657600080fd5b8201836020820111156103d857600080fd5b803590602001918460018302840111640100000000831117156103fa57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610b3b9050565b34801561044c57600080fd5b50610455610c1d565b60408051918252519081900360200190f35b34801561047357600080fd5b506102ba6004803603606081101561048a57600080fd5b50600160a060020a03813581169160208101359091169060400135610c23565b3480156104b657600080fd5b506104bf610c83565b6040805160ff9092168252519081900360200190f35b3480156104e157600080fd5b506102ba600480360360408110156104f857600080fd5b50600160a060020a038135169060200135610c8d565b34801561051a57600080fd5b506101f5610ce4565b34801561052f57600080fd5b506102ba6004803603604081101561054657600080fd5b50600160a060020a038135169060200135610dde565b34801561056857600080fd5b506101f56004803603602081101561057f57600080fd5b5035610e41565b34801561059257600080fd5b506102ba600480360360208110156105a957600080fd5b5035600160a060020a0316610e52565b3480156105c557600080fd5b506102ba610e6b565b3480156105da57600080fd5b506101f5610e75565b3480156105ef57600080fd5b506104556004803603602081101561060657600080fd5b5035600160a060020a0316610e87565b34801561062257600080fd5b506101f5610ea2565b34801561063757600080fd5b506101f56004803603604081101561064e57600080fd5b50600160a060020a038135169060200135610f57565b34801561067057600080fd5b506101f56004803603602081101561068757600080fd5b5035600160a060020a0316610f65565b3480156106a357600080fd5b506101f5610fb7565b3480156106b857600080fd5b506106c1611081565b60408051600160a060020a039092168252519081900360200190f35b3480156106e957600080fd5b506102ba611091565b3480156106fe57600080fd5b5061020c6110b8565b34801561071357600080fd5b506101f56004803603602081101561072a57600080fd5b5035600160a060020a031661111a565b34801561074657600080fd5b506101f561116c565b34801561075b57600080fd5b506102ba6004803603604081101561077257600080fd5b50600160a060020a03813516906020013561117c565b34801561079457600080fd5b506102ba600480360360408110156107ab57600080fd5b50600160a060020a0381351690602001356111d3565b3480156107cd57600080fd5b506102ba600480360360208110156107e457600080fd5b5035600160a060020a031661122a565b34801561080057600080fd5b506101f56004803603602081101561081757600080fd5b5035600160a060020a031661123d565b34801561083357600080fd5b506104556004803603604081101561084a57600080fd5b50600160a060020a038135811691602001351661133f565b34801561086e57600080fd5b506101f56004803603608081101561088557600080fd5b8101906020810181356401000000008111156108a057600080fd5b8201836020820111156108b257600080fd5b803590602001918460018302840111640100000000831117156108d457600080fd5b9193909290916020810190356401000000008111156108f257600080fd5b82018360208201111561090457600080fd5b8035906020019184600183028401116401000000008311171561092657600080fd5b9193509150803560ff169060200135600160a060020a031661136a565b34801561094f57600080fd5b506101f56004803603602081101561096657600080fd5b5035600160a060020a0316611520565b6101978054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a035780601f106109d857610100808354040283529160200191610a03565b820191906000526020600020905b8154815290600101906020018083116109e657829003601f168201915b505050505090505b90565b6101325460009060ff1615610a5b576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610a65838361157c565b9392505050565b610a74611091565b610ac8576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6101ff54610ade90600160a060020a0316611590565b6101ff54610af490600160a060020a03166115d8565b6101ff805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038316179055610b2681611620565b610b2f81611668565b610b38816116b0565b50565b600054610100900460ff1680610b545750610b54611763565b80610b62575060005460ff16155b610ba05760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff16158015610bcb576000805460ff1961ff0019909116610100171660011790555b8351610bdf9061019790602087019061234b565b508251610bf49061019890602086019061234b565b50610199805460ff191660ff84161790558015610c17576000805461ff00191690555b50505050565b60355490565b6101325460009060ff1615610c70576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610c7b848484611769565b949350505050565b6101995460ff1690565b6101325460009060ff1615610cda576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610a6583836117f6565b610cf4610cef61184a565b610e52565b610d325760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124296030913960400191505060405180910390fd5b6101325460ff16610d8d576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b610132805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dc161184a565b60408051600160a060020a039092168252519081900360200190a1565b6000610df0610deb61184a565b61122a565b610e2e5760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124c76030913960400191505060405180910390fd5b610e38838361184e565b50600192915050565b610b38610e4c61184a565b82611943565b6000610e6560ff8363ffffffff611a4216565b92915050565b6101325460ff1690565b610e85610e8061184a565b6115d8565b565b600160a060020a031660009081526033602052604090205490565b610eaa611091565b610efe576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6101cc54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36101cc805473ffffffffffffffffffffffffffffffffffffffff19169055565b610f618282611aac565b5050565b610f70610cef61184a565b610fae5760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124296030913960400191505060405180910390fd5b610b3881611668565b610fc2610cef61184a565b6110005760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124296030913960400191505060405180910390fd5b6101325460ff161561104a576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610132805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dc161184a565b6101cc54600160a060020a031690565b6101cc54600090600160a060020a03166110a961184a565b600160a060020a031614905090565b6101988054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a035780601f106109d857610100808354040283529160200191610a03565b611125610deb61184a565b6111635760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124c76030913960400191505060405180910390fd5b610b3881611620565b610e8561117761184a565b611590565b6101325460009060ff16156111c9576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610a658383611b00565b6101325460009060ff1615611220576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610a658383611b6e565b6000610e65609a8363ffffffff611a4216565b600054610100900460ff16806112565750611256611763565b80611264575060005460ff16155b6112a25760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff161580156112cd576000805460ff1961ff0019909116610100171660011790555b6101cc805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38015610f61576000805461ff00191690555050565b600160a060020a03918216600090815260346020908152604080832093909416825291909152205490565b600054610100900460ff16806113835750611383611763565b80611391575060005460ff16155b6113cf5760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff161580156113fa576000805460ff1961ff0019909116610100171660011790555b6114033361123d565b6101ff805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416179055604080516020601f890181900481028201810190925287815261149f91899089908190840183828082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250889250610b3b915050565b6114a830611b82565b6114b130611590565b6101ff546114c790600160a060020a0316611620565b6114d030611c30565b6114d9306115d8565b6101ff546114ef90600160a060020a0316611668565b6101ff5461150590600160a060020a03166116b0565b8015611517576000805461ff00191690555b50505050505050565b611528611091565b610b2f576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000610e3861158961184a565b8484611cc9565b6115a1609a8263ffffffff611dbb16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6115e960ff8263ffffffff611dbb16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611631609a8263ffffffff611e2516565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61167960ff8263ffffffff611e2516565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a0381166116f85760405160e560020a62461bcd0281526004018080602001828103825260268152602001806124596026913960400191505060405180910390fd5b6101cc54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36101cc805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b303b1590565b6000611776848484611ea9565b6117ec8461178261184a565b6117e78560405180606001604052806028815260200161251860289139600160a060020a038a166000908152603460205260408120906117c061184a565b600160a060020a03168152602081019190915260400160002054919063ffffffff61200d16565b611cc9565b5060019392505050565b6000610e3861180361184a565b846117e7856034600061181461184a565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6120a716565b3390565b600160a060020a0382166118ac576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6035546118bf908263ffffffff6120a716565b603555600160a060020a0382166000908152603360205260409020546118eb908263ffffffff6120a716565b600160a060020a03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03821661198b5760405160e560020a62461bcd0281526004018080602001828103825260218152602001806125b46021913960400191505060405180910390fd5b6119ce8160405180606001604052806022815260200161240760229139600160a060020a038516600090815260336020526040902054919063ffffffff61200d16565b600160a060020a0383166000908152603360205260409020556035546119fa908263ffffffff61210416565b603555604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000600160a060020a038216611a8c5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806125406022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b611ab68282611943565b610f6182611ac261184a565b6117e78460405180606001604052806024815260200161259060249139600160a060020a0388166000908152603460205260408120906117c061184a565b6000610e38611b0d61184a565b846117e78560405180606001604052806025815260200161263e6025913960346000611b3761184a565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61200d16565b6000610e38611b7b61184a565b8484611ea9565b600054610100900460ff1680611b9b5750611b9b611763565b80611ba9575060005460ff16155b611be75760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff16158015611c12576000805460ff1961ff0019909116610100171660011790555b611c1b82612146565b8015610f61576000805461ff00191690555050565b600054610100900460ff1680611c495750611c49611763565b80611c57575060005460ff16155b611c955760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff16158015611cc0576000805460ff1961ff0019909116610100171660011790555b611c1b826121ec565b600160a060020a038316611d115760405160e560020a62461bcd02815260040180806020018281038252602481526020018061261a6024913960400191505060405180910390fd5b600160a060020a038216611d595760405160e560020a62461bcd02815260040180806020018281038252602281526020018061247f6022913960400191505060405180910390fd5b600160a060020a03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b611dc58282611a42565b611e035760405160e560020a62461bcd0281526004018080602001828103825260218152602001806124f76021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b611e2f8282611a42565b15611e84576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a038316611ef15760405160e560020a62461bcd0281526004018080602001828103825260258152602001806125d56025913960400191505060405180910390fd5b600160a060020a038216611f395760405160e560020a62461bcd0281526004018080602001828103825260238152602001806123e46023913960400191505060405180910390fd5b611f7c816040518060600160405280602681526020016124a160269139600160a060020a038616600090815260336020526040902054919063ffffffff61200d16565b600160a060020a038085166000908152603360205260408082209390935590841681522054611fb1908263ffffffff6120a716565b600160a060020a0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561209f5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561206457818101518382015260200161204c565b50505050905090810190601f1680156120915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610a65576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610a6583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061200d565b600054610100900460ff168061215f575061215f611763565b8061216d575060005460ff16155b6121ab5760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff161580156121d6576000805460ff1961ff0019909116610100171660011790555b6121df8261122a565b611c1b57611c1b82611620565b600054610100900460ff16806122055750612205611763565b80612213575060005460ff16155b6122515760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff1615801561227c576000805460ff1961ff0019909116610100171660011790555b612285826122a5565b610132805460ff191690558015610f61576000805461ff00191690555050565b600054610100900460ff16806122be57506122be611763565b806122cc575060005460ff16155b61230a5760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff16158015612335576000805460ff1961ff0019909116610100171660011790555b61233e82610e52565b611c1b57611c1b82611668565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061238c57805160ff19168380011785556123b9565b828001600101855582156123b9579182015b828111156123b957825182559160200191906001019061239e565b506123c59291506123c9565b5090565b610a0b91905b808211156123c557600081556001016123cf56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735061757361626c653a207061757365640000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582092d070f3a541646e19a084a5ba056ce797bcca7a13c76bc989017c8b677076aa64736f6c63430005100032
Deployed Bytecode
0x6080604052600436106101f5576000357c010000000000000000000000000000000000000000000000000000000090048063715018a61161011f57806398650275116100b2578063c4d66de811610081578063c4d66de8146107f4578063dd62ed3e14610827578063de7ea79d14610862578063f2fde38b14610943576101f5565b8063986502751461073a578063a457c2d71461074f578063a9059cbb14610788578063aa271e1a146107c1576101f5565b80638da5cb5b116100ee5780638da5cb5b146106ac5780638f32d59b146106dd57806395d89b41146106f2578063983b2d5614610707576101f5565b8063715018a61461061657806379cc67901461062b57806382dc1ec4146106645780638456cb5914610697576101f5565b8063395093511161019757806346fbf68e1161016657806346fbf68e146105865780635c975abb146105b95780636ef8d66d146105ce57806370a08231146105e3576101f5565b806339509351146104d55780633f4ba83a1461050e57806340c10f191461052357806342966c681461055c576101f5565b80631624f6c6116101d35780631624f6c61461030157806318160ddd1461044057806323b872dd14610467578063313ce567146104aa576101f5565b806306fdde03146101f7578063095ea7b31461028157806313af4035146102ce575b005b34801561020357600080fd5b5061020c610976565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024657818101518382015260200161022e565b50505050905090810190601f1680156102735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028d57600080fd5b506102ba600480360360408110156102a457600080fd5b50600160a060020a038135169060200135610a0e565b604080519115158252519081900360200190f35b3480156102da57600080fd5b506101f5600480360360208110156102f157600080fd5b5035600160a060020a0316610a6c565b34801561030d57600080fd5b506101f56004803603606081101561032457600080fd5b81019060208101813564010000000081111561033f57600080fd5b82018360208201111561035157600080fd5b8035906020019184600183028401116401000000008311171561037357600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156103c657600080fd5b8201836020820111156103d857600080fd5b803590602001918460018302840111640100000000831117156103fa57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610b3b9050565b34801561044c57600080fd5b50610455610c1d565b60408051918252519081900360200190f35b34801561047357600080fd5b506102ba6004803603606081101561048a57600080fd5b50600160a060020a03813581169160208101359091169060400135610c23565b3480156104b657600080fd5b506104bf610c83565b6040805160ff9092168252519081900360200190f35b3480156104e157600080fd5b506102ba600480360360408110156104f857600080fd5b50600160a060020a038135169060200135610c8d565b34801561051a57600080fd5b506101f5610ce4565b34801561052f57600080fd5b506102ba6004803603604081101561054657600080fd5b50600160a060020a038135169060200135610dde565b34801561056857600080fd5b506101f56004803603602081101561057f57600080fd5b5035610e41565b34801561059257600080fd5b506102ba600480360360208110156105a957600080fd5b5035600160a060020a0316610e52565b3480156105c557600080fd5b506102ba610e6b565b3480156105da57600080fd5b506101f5610e75565b3480156105ef57600080fd5b506104556004803603602081101561060657600080fd5b5035600160a060020a0316610e87565b34801561062257600080fd5b506101f5610ea2565b34801561063757600080fd5b506101f56004803603604081101561064e57600080fd5b50600160a060020a038135169060200135610f57565b34801561067057600080fd5b506101f56004803603602081101561068757600080fd5b5035600160a060020a0316610f65565b3480156106a357600080fd5b506101f5610fb7565b3480156106b857600080fd5b506106c1611081565b60408051600160a060020a039092168252519081900360200190f35b3480156106e957600080fd5b506102ba611091565b3480156106fe57600080fd5b5061020c6110b8565b34801561071357600080fd5b506101f56004803603602081101561072a57600080fd5b5035600160a060020a031661111a565b34801561074657600080fd5b506101f561116c565b34801561075b57600080fd5b506102ba6004803603604081101561077257600080fd5b50600160a060020a03813516906020013561117c565b34801561079457600080fd5b506102ba600480360360408110156107ab57600080fd5b50600160a060020a0381351690602001356111d3565b3480156107cd57600080fd5b506102ba600480360360208110156107e457600080fd5b5035600160a060020a031661122a565b34801561080057600080fd5b506101f56004803603602081101561081757600080fd5b5035600160a060020a031661123d565b34801561083357600080fd5b506104556004803603604081101561084a57600080fd5b50600160a060020a038135811691602001351661133f565b34801561086e57600080fd5b506101f56004803603608081101561088557600080fd5b8101906020810181356401000000008111156108a057600080fd5b8201836020820111156108b257600080fd5b803590602001918460018302840111640100000000831117156108d457600080fd5b9193909290916020810190356401000000008111156108f257600080fd5b82018360208201111561090457600080fd5b8035906020019184600183028401116401000000008311171561092657600080fd5b9193509150803560ff169060200135600160a060020a031661136a565b34801561094f57600080fd5b506101f56004803603602081101561096657600080fd5b5035600160a060020a0316611520565b6101978054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a035780601f106109d857610100808354040283529160200191610a03565b820191906000526020600020905b8154815290600101906020018083116109e657829003601f168201915b505050505090505b90565b6101325460009060ff1615610a5b576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610a65838361157c565b9392505050565b610a74611091565b610ac8576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6101ff54610ade90600160a060020a0316611590565b6101ff54610af490600160a060020a03166115d8565b6101ff805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038316179055610b2681611620565b610b2f81611668565b610b38816116b0565b50565b600054610100900460ff1680610b545750610b54611763565b80610b62575060005460ff16155b610ba05760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff16158015610bcb576000805460ff1961ff0019909116610100171660011790555b8351610bdf9061019790602087019061234b565b508251610bf49061019890602086019061234b565b50610199805460ff191660ff84161790558015610c17576000805461ff00191690555b50505050565b60355490565b6101325460009060ff1615610c70576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610c7b848484611769565b949350505050565b6101995460ff1690565b6101325460009060ff1615610cda576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610a6583836117f6565b610cf4610cef61184a565b610e52565b610d325760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124296030913960400191505060405180910390fd5b6101325460ff16610d8d576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b610132805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dc161184a565b60408051600160a060020a039092168252519081900360200190a1565b6000610df0610deb61184a565b61122a565b610e2e5760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124c76030913960400191505060405180910390fd5b610e38838361184e565b50600192915050565b610b38610e4c61184a565b82611943565b6000610e6560ff8363ffffffff611a4216565b92915050565b6101325460ff1690565b610e85610e8061184a565b6115d8565b565b600160a060020a031660009081526033602052604090205490565b610eaa611091565b610efe576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6101cc54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36101cc805473ffffffffffffffffffffffffffffffffffffffff19169055565b610f618282611aac565b5050565b610f70610cef61184a565b610fae5760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124296030913960400191505060405180910390fd5b610b3881611668565b610fc2610cef61184a565b6110005760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124296030913960400191505060405180910390fd5b6101325460ff161561104a576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610132805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dc161184a565b6101cc54600160a060020a031690565b6101cc54600090600160a060020a03166110a961184a565b600160a060020a031614905090565b6101988054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a035780601f106109d857610100808354040283529160200191610a03565b611125610deb61184a565b6111635760405160e560020a62461bcd0281526004018080602001828103825260308152602001806124c76030913960400191505060405180910390fd5b610b3881611620565b610e8561117761184a565b611590565b6101325460009060ff16156111c9576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610a658383611b00565b6101325460009060ff1615611220576040805160e560020a62461bcd02815260206004820152601060248201526000805160206125fa833981519152604482015290519081900360640190fd5b610a658383611b6e565b6000610e65609a8363ffffffff611a4216565b600054610100900460ff16806112565750611256611763565b80611264575060005460ff16155b6112a25760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff161580156112cd576000805460ff1961ff0019909116610100171660011790555b6101cc805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38015610f61576000805461ff00191690555050565b600160a060020a03918216600090815260346020908152604080832093909416825291909152205490565b600054610100900460ff16806113835750611383611763565b80611391575060005460ff16155b6113cf5760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff161580156113fa576000805460ff1961ff0019909116610100171660011790555b6114033361123d565b6101ff805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416179055604080516020601f890181900481028201810190925287815261149f91899089908190840183828082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250889250610b3b915050565b6114a830611b82565b6114b130611590565b6101ff546114c790600160a060020a0316611620565b6114d030611c30565b6114d9306115d8565b6101ff546114ef90600160a060020a0316611668565b6101ff5461150590600160a060020a03166116b0565b8015611517576000805461ff00191690555b50505050505050565b611528611091565b610b2f576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000610e3861158961184a565b8484611cc9565b6115a1609a8263ffffffff611dbb16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6115e960ff8263ffffffff611dbb16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611631609a8263ffffffff611e2516565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61167960ff8263ffffffff611e2516565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a0381166116f85760405160e560020a62461bcd0281526004018080602001828103825260268152602001806124596026913960400191505060405180910390fd5b6101cc54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36101cc805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b303b1590565b6000611776848484611ea9565b6117ec8461178261184a565b6117e78560405180606001604052806028815260200161251860289139600160a060020a038a166000908152603460205260408120906117c061184a565b600160a060020a03168152602081019190915260400160002054919063ffffffff61200d16565b611cc9565b5060019392505050565b6000610e3861180361184a565b846117e7856034600061181461184a565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6120a716565b3390565b600160a060020a0382166118ac576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6035546118bf908263ffffffff6120a716565b603555600160a060020a0382166000908152603360205260409020546118eb908263ffffffff6120a716565b600160a060020a03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03821661198b5760405160e560020a62461bcd0281526004018080602001828103825260218152602001806125b46021913960400191505060405180910390fd5b6119ce8160405180606001604052806022815260200161240760229139600160a060020a038516600090815260336020526040902054919063ffffffff61200d16565b600160a060020a0383166000908152603360205260409020556035546119fa908263ffffffff61210416565b603555604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000600160a060020a038216611a8c5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806125406022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b611ab68282611943565b610f6182611ac261184a565b6117e78460405180606001604052806024815260200161259060249139600160a060020a0388166000908152603460205260408120906117c061184a565b6000610e38611b0d61184a565b846117e78560405180606001604052806025815260200161263e6025913960346000611b3761184a565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61200d16565b6000610e38611b7b61184a565b8484611ea9565b600054610100900460ff1680611b9b5750611b9b611763565b80611ba9575060005460ff16155b611be75760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff16158015611c12576000805460ff1961ff0019909116610100171660011790555b611c1b82612146565b8015610f61576000805461ff00191690555050565b600054610100900460ff1680611c495750611c49611763565b80611c57575060005460ff16155b611c955760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff16158015611cc0576000805460ff1961ff0019909116610100171660011790555b611c1b826121ec565b600160a060020a038316611d115760405160e560020a62461bcd02815260040180806020018281038252602481526020018061261a6024913960400191505060405180910390fd5b600160a060020a038216611d595760405160e560020a62461bcd02815260040180806020018281038252602281526020018061247f6022913960400191505060405180910390fd5b600160a060020a03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b611dc58282611a42565b611e035760405160e560020a62461bcd0281526004018080602001828103825260218152602001806124f76021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b611e2f8282611a42565b15611e84576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a038316611ef15760405160e560020a62461bcd0281526004018080602001828103825260258152602001806125d56025913960400191505060405180910390fd5b600160a060020a038216611f395760405160e560020a62461bcd0281526004018080602001828103825260238152602001806123e46023913960400191505060405180910390fd5b611f7c816040518060600160405280602681526020016124a160269139600160a060020a038616600090815260336020526040902054919063ffffffff61200d16565b600160a060020a038085166000908152603360205260408082209390935590841681522054611fb1908263ffffffff6120a716565b600160a060020a0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561209f5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561206457818101518382015260200161204c565b50505050905090810190601f1680156120915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610a65576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610a6583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061200d565b600054610100900460ff168061215f575061215f611763565b8061216d575060005460ff16155b6121ab5760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff161580156121d6576000805460ff1961ff0019909116610100171660011790555b6121df8261122a565b611c1b57611c1b82611620565b600054610100900460ff16806122055750612205611763565b80612213575060005460ff16155b6122515760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff1615801561227c576000805460ff1961ff0019909116610100171660011790555b612285826122a5565b610132805460ff191690558015610f61576000805461ff00191690555050565b600054610100900460ff16806122be57506122be611763565b806122cc575060005460ff16155b61230a5760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612562602e913960400191505060405180910390fd5b600054610100900460ff16158015612335576000805460ff1961ff0019909116610100171660011790555b61233e82610e52565b611c1b57611c1b82611668565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061238c57805160ff19168380011785556123b9565b828001600101855582156123b9579182015b828111156123b957825182559160200191906001019061239e565b506123c59291506123c9565b5090565b610a0b91905b808211156123c557600081556001016123cf56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735061757361626c653a207061757365640000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582092d070f3a541646e19a084a5ba056ce797bcca7a13c76bc989017c8b677076aa64736f6c63430005100032
Deployed Bytecode Sourcemap
33541:1119:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21783:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21783:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;21783:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30331:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30331:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30331:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;34372:285;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34372:285:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34372:285:0;-1:-1:-1;;;;;34372:285:0;;:::i;21527:186::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21527:186:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21527:186:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;21527:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21527:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;21527:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21527:186:0;;;;;;;;-1:-1:-1;21527:186:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;21527:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21527:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;21527:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21527:186:0;;-1:-1:-1;;;21527:186:0;;;;;-1:-1:-1;21527:186:0;;-1:-1:-1;21527:186:0:i;13443:91::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13443:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;30163:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30163:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30163:160:0;;;;;;;;;;;;;;;;;:::i;22635:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22635:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30479:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30479:170:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30479:170:0;;;;;;;;:::i;29298:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29298:120:0;;;:::i;25791:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25791:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25791:143:0;;;;;;;;:::i;20715:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20715:83:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20715:83:0;;:::i;26622:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26622:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26622:109:0;-1:-1:-1;;;;;26622:109:0;;:::i;28505:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28505:78:0;;;:::i;26839:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26839:79:0;;;:::i;13597:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13597:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13597:110:0;-1:-1:-1;;;;;13597:110:0;;:::i;32678:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32678:140:0;;;:::i;20860:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20860:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20860:103:0;;;;;;;;:::i;26739:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26739:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26739:92:0;-1:-1:-1;;;;;26739:92:0;;:::i;29085:118::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29085:118:0;;;:::i;31865:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31865:79:0;;;:::i;:::-;;;;-1:-1:-1;;;;;31865:79:0;;;;;;;;;;;;;;32231:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32231:94:0;;;:::i;21985:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21985:87:0;;;:::i;24623:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24623:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24623:92:0;-1:-1:-1;;;;;24623:92:0;;:::i;24723:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24723:79:0;;;:::i;30657:180::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30657:180:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30657:180:0;;;;;;;;:::i;30023:132::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30023:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30023:132:0;;;;;;;;:::i;24506:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24506:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24506:109:0;-1:-1:-1;;;;;24506:109:0;;:::i;31639:145::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31639:145:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31639:145:0;-1:-1:-1;;;;;31639:145:0;;:::i;14141:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14141:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14141:134:0;;;;;;;;;;:::i;33759:605::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33759:605:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;33759:605:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;33759:605:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33759:605:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33759:605:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;33759:605:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33759:605:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33759:605:0;;-1:-1:-1;33759:605:0;-1:-1:-1;33759:605:0;;;;;;;;-1:-1:-1;;;;;33759:605:0;;:::i;32973:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32973:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32973:109:0;-1:-1:-1;;;;;32973:109:0;;:::i;21783:83::-;21853:5;21846:12;;;;;;;;-1:-1:-1;;21846:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21820:13;;21846:12;;21853:5;;21846:12;;21853:5;21846:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21783:83;;:::o;30331:140::-;28742:7;;30410:4;;28742:7;;28741:8;28733:37;;;;;-1:-1:-1;;;;;28733:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28733:37:0;;;;;;;;;;;;;;;30434:29;30448:7;30457:5;30434:13;:29::i;:::-;30427:36;30331:140;-1:-1:-1;;;30331:140:0:o;34372:285::-;32077:9;:7;:9::i;:::-;32069:54;;;;;-1:-1:-1;;;;;32069:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34455:10;;34441:25;;-1:-1:-1;;;;;34455:10:0;34441:13;:25::i;:::-;34491:10;;34477:25;;-1:-1:-1;;;;;34491:10:0;34477:13;:25::i;:::-;34515:10;:24;;-1:-1:-1;;34515:24:0;-1:-1:-1;;;;;34515:24:0;;;;;34550:23;34515:24;34550:10;:23::i;:::-;34584;34595:11;34584:10;:23::i;:::-;34618:31;34637:11;34618:18;:31::i;:::-;34372:285;:::o;21527:186::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;21635:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;21658:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;21685:9:0;:20;;-1:-1:-1;;21685:20:0;;;;;;;1368:57;;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;1368:57;21527:186;;;;:::o;13443:91::-;13514:12;;13443:91;:::o;30163:160::-;28742:7;;30256:4;;28742:7;;28741:8;28733:37;;;;;-1:-1:-1;;;;;28733:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28733:37:0;;;;;;;;;;;;;;;30280:35;30299:4;30305:2;30309:5;30280:18;:35::i;:::-;30273:42;30163:160;-1:-1:-1;;;;30163:160:0:o;22635:83::-;22701:9;;;;22635:83;:::o;30479:170::-;28742:7;;30573:4;;28742:7;;28741:8;28733:37;;;;;-1:-1:-1;;;;;28733:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28733:37:0;;;;;;;;;;;;;;;30597:44;30621:7;30630:10;30597:23;:44::i;29298:120::-;26519:22;26528:12;:10;:12::i;:::-;26519:8;:22::i;:::-;26511:83;;;;-1:-1:-1;;;;;26511:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28941:7;;;;28933:40;;;;;-1:-1:-1;;;;;28933:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29357:7;:15;;-1:-1:-1;;29357:15:0;;;29388:22;29397:12;:10;:12::i;:::-;29388:22;;;-1:-1:-1;;;;;29388:22:0;;;;;;;;;;;;;;29298:120::o;25791:143::-;25865:4;24403:22;24412:12;:10;:12::i;:::-;24403:8;:22::i;:::-;24395:83;;;;-1:-1:-1;;;;;24395:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25882:22;25888:7;25897:6;25882:5;:22::i;:::-;-1:-1:-1;25922:4:0;25791:143;;;;:::o;20715:83::-;20763:27;20769:12;:10;:12::i;:::-;20783:6;20763:5;:27::i;26622:109::-;26678:4;26702:21;:8;26715:7;26702:21;:12;:21;:::i;:::-;26695:28;26622:109;-1:-1:-1;;26622:109:0:o;28505:78::-;28568:7;;;;28505:78;:::o;26839:79::-;26883:27;26897:12;:10;:12::i;:::-;26883:13;:27::i;:::-;26839:79::o;13597:110::-;-1:-1:-1;;;;;13681:18:0;13654:7;13681:18;;;:9;:18;;;;;;;13597:110::o;32678:140::-;32077:9;:7;:9::i;:::-;32069:54;;;;;-1:-1:-1;;;;;32069:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32761:6;;32740:40;;32777:1;;-1:-1:-1;;;;;32761:6:0;;32740:40;;32777:1;;32740:40;32791:6;:19;;-1:-1:-1;;32791:19:0;;;32678:140::o;20860:103::-;20929:26;20939:7;20948:6;20929:9;:26::i;:::-;20860:103;;:::o;26739:92::-;26519:22;26528:12;:10;:12::i;26519:22::-;26511:83;;;;-1:-1:-1;;;;;26511:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26804:19;26815:7;26804:10;:19::i;29085:118::-;26519:22;26528:12;:10;:12::i;26519:22::-;26511:83;;;;-1:-1:-1;;;;;26511:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28742:7;;;;28741:8;28733:37;;;;;-1:-1:-1;;;;;28733:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28733:37:0;;;;;;;;;;;;;;;29145:7;:14;;-1:-1:-1;;29145:14:0;29155:4;29145:14;;;29175:20;29182:12;:10;:12::i;31865:79::-;31930:6;;-1:-1:-1;;;;;31930:6:0;31865:79;:::o;32231:94::-;32311:6;;32271:4;;-1:-1:-1;;;;;32311:6:0;32295:12;:10;:12::i;:::-;-1:-1:-1;;;;;32295:22:0;;32288:29;;32231:94;:::o;21985:87::-;22057:7;22050:14;;;;;;;;-1:-1:-1;;22050:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22024:13;;22050:14;;22057:7;;22050:14;;22057:7;22050:14;;;;;;;;;;;;;;;;;;;;;;;;24623:92;24403:22;24412:12;:10;:12::i;24403:22::-;24395:83;;;;-1:-1:-1;;;;;24395:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24688:19;24699:7;24688:10;:19::i;24723:79::-;24767:27;24781:12;:10;:12::i;:::-;24767:13;:27::i;30657:180::-;28742:7;;30756:4;;28742:7;;28741:8;28733:37;;;;;-1:-1:-1;;;;;28733:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28733:37:0;;;;;;;;;;;;;;;30780:49;30804:7;30813:15;30780:23;:49::i;30023:132::-;28742:7;;30098:4;;28742:7;;28741:8;28733:37;;;;;-1:-1:-1;;;;;28733:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28733:37:0;;;;;;;;;;;;;;;30122:25;30137:2;30141:5;30122:14;:25::i;24506:109::-;24562:4;24586:21;:8;24599:7;24586:21;:12;:21;:::i;31639:145::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;31705:6;:15;;-1:-1:-1;;31705:15:0;-1:-1:-1;;;;;31705:15:0;;;;;;;;;;;31736:40;;31769:6;;;-1:-1:-1;;31736:40:0;;-1:-1:-1;;31736:40:0;1372:14;1368:57;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;31639:145;;:::o;14141:134::-;-1:-1:-1;;;;;14240:18:0;;;14213:7;14240:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14141:134::o;33759:605::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;33937:30;33956:10;33937:18;:30::i;:::-;33980:10;:24;;-1:-1:-1;;33980:24:0;-1:-1:-1;;;;;33980:24:0;;;;;34017:48;;;;;;;;;;;;;;;;;;;;;;;;34042:4;;34017:48;;;;;;34042:4;34017:48;;34042:4;34017:48;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;;34017:48:0;;;;137:4:-1;34017:48:0;;;;;;;;;;;;;;;;;;-1:-1:-1;34048:6:0;;-1:-1:-1;34048:6:0;;;;34017:48;;34048:6;;;;34017:48;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;34056:8:0;;-1:-1:-1;34017:24:0;;-1:-1:-1;;34017:48:0:i;:::-;34078:39;34111:4;34078:24;:39::i;:::-;34128:28;34150:4;34128:13;:28::i;:::-;34178:10;;34167:22;;-1:-1:-1;;;;;34178:10:0;34167;:22::i;:::-;34202:39;34235:4;34202:24;:39::i;:::-;34252:28;34274:4;34252:13;:28::i;:::-;34302:10;;34291:22;;-1:-1:-1;;;;;34302:10:0;34291;:22::i;:::-;34345:10;;34326:30;;-1:-1:-1;;;;;34345:10:0;34326:18;:30::i;:::-;1372:14;1368:57;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;1368:57;33759:605;;;;;;;:::o;32973:109::-;32077:9;:7;:9::i;:::-;32069:54;;;;;-1:-1:-1;;;;;32069:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14422:152;14488:4;14505:39;14514:12;:10;:12::i;:::-;14528:7;14537:6;14505:8;:39::i;24940:130::-;25000:24;:8;25016:7;25000:24;:15;:24;:::i;:::-;25040:22;;-1:-1:-1;;;;;25040:22:0;;;;;;;;24940:130;:::o;27056:::-;27116:24;:8;27132:7;27116:24;:15;:24;:::i;:::-;27156:22;;-1:-1:-1;;;;;27156:22:0;;;;;;;;27056:130;:::o;24810:122::-;24867:21;:8;24880:7;24867:21;:12;:21;:::i;:::-;24904:20;;-1:-1:-1;;;;;24904:20:0;;;;;;;;24810:122;:::o;26926:::-;26983:21;:8;26996:7;26983:21;:12;:21;:::i;:::-;27020:20;;-1:-1:-1;;;;;27020:20:0;;;;;;;;26926:122;:::o;33188:229::-;-1:-1:-1;;;;;33262:22:0;;33254:73;;;;-1:-1:-1;;;;;33254:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33364:6;;33343:38;;-1:-1:-1;;;;;33343:38:0;;;;33364:6;;33343:38;;33364:6;;33343:38;33392:6;:17;;-1:-1:-1;;33392:17:0;-1:-1:-1;;;;;33392:17:0;;;;;;;;;;33188:229::o;1519:508::-;1936:4;1982:17;2014:7;1519:508;:::o;15046:304::-;15135:4;15152:36;15162:6;15170:9;15181:6;15152:9;:36::i;:::-;15199:121;15208:6;15216:12;:10;:12::i;:::-;15230:89;15268:6;15230:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15230:19:0;;;;;;:11;:19;;;;;;15250:12;:10;:12::i;:::-;-1:-1:-1;;;;;15230:33:0;;;;;;;;;;;;-1:-1:-1;15230:33:0;;;:89;;:37;:89;:::i;:::-;15199:8;:121::i;:::-;-1:-1:-1;15338:4:0;15046:304;;;;;:::o;15759:210::-;15839:4;15856:83;15865:12;:10;:12::i;:::-;15879:7;15888:50;15927:10;15888:11;:25;15900:12;:10;:12::i;:::-;-1:-1:-1;;;;;15888:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15888:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;3046:98::-;3126:10;3046:98;:::o;17975:308::-;-1:-1:-1;;;;;18051:21:0;;18043:65;;;;;-1:-1:-1;;;;;18043:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18136:12;;:24;;18153:6;18136:24;:16;:24;:::i;:::-;18121:12;:39;-1:-1:-1;;;;;18192:18:0;;;;;;:9;:18;;;;;;:30;;18215:6;18192:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;18171:18:0;;;;;;:9;:18;;;;;;;;:51;;;;18238:37;;;;;;;18171:18;;;;18238:37;;;;;;;;;;17975:308;;:::o;18615:348::-;-1:-1:-1;;;;;18691:21:0;;18683:67;;;;-1:-1:-1;;;;;18683:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18784:68;18807:6;18784:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18784:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;18763:18:0;;;;;;:9;:18;;;;;:89;18878:12;;:24;;18895:6;18878:24;:16;:24;:::i;:::-;18863:12;:39;18918:37;;;;;;;;18944:1;;-1:-1:-1;;;;;18918:37:0;;;;;;;;;;;;18615:348;;:::o;23653:203::-;23725:4;-1:-1:-1;;;;;23750:21:0;;23742:68;;;;-1:-1:-1;;;;;23742:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23828:20:0;:11;:20;;;;;;;;;;;;;;;23653:203::o;19927:232::-;19999:22;20005:7;20014:6;19999:5;:22::i;:::-;20032:119;20041:7;20050:12;:10;:12::i;:::-;20064:86;20103:6;20064:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20064:20:0;;;;;;:11;:20;;;;;;20085:12;:10;:12::i;16472:261::-;16557:4;16574:129;16583:12;:10;:12::i;:::-;16597:7;16606:96;16645:15;16606:96;;;;;;;;;;;;;;;;;:11;:25;16618:12;:10;:12::i;:::-;-1:-1:-1;;;;;16606:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16606:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;13920:158::-;13989:4;14006:42;14016:12;:10;:12::i;:::-;14030:9;14041:6;14006:9;:42::i;25543:103::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;25609:29;25631:6;25609:21;:29::i;:::-;1372:14;1368:57;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;25543:103;;:::o;29914:101::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;29980:27;30000:6;29980:19;:27::i;19403:338::-;-1:-1:-1;;;;;19497:19:0;;19489:68;;;;-1:-1:-1;;;;;19489:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19576:21:0;;19568:68;;;;-1:-1:-1;;;;;19568:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19649:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19701:32;;;;;;;;;;;;;;;;;19403:338;;;:::o;23375:183::-;23455:18;23459:4;23465:7;23455:3;:18::i;:::-;23447:64;;;;-1:-1:-1;;;;;23447:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23522:20:0;23545:5;23522:20;;;;;;;;;;;:28;;-1:-1:-1;;23522:28:0;;;23375:183::o;23117:178::-;23195:18;23199:4;23205:7;23195:3;:18::i;:::-;23194:19;23186:63;;;;;-1:-1:-1;;;;;23186:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23260:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;23260:27:0;23283:4;23260:27;;;23117:178::o;17223:471::-;-1:-1:-1;;;;;17321:20:0;;17313:70;;;;-1:-1:-1;;;;;17313:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17402:23:0;;17394:71;;;;-1:-1:-1;;;;;17394:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17498;17520:6;17498:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17498:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17478:17:0;;;;;;;:9;:17;;;;;;:91;;;;17603:20;;;;;;;:32;;17628:6;17603:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17580:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17651:35;;;;;;;17580:20;;17651:35;;;;;;;;;;;;;17223:471;;;:::o;8160:192::-;8246:7;8282:12;8274:6;;;;8266:29;;;;-1:-1:-1;;;;;8266:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8266:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8318:5:0;;;8160:192::o;7231:181::-;7289:7;7321:5;;;7345:6;;;;7337:46;;;;;-1:-1:-1;;;;;7337:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7687:136;7745:7;7772:43;7776:1;7779;7772:43;;;;;;;;;;;;;;;;;:3;:43::i;24213:141::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;24284:16;24293:6;24284:8;:16::i;:::-;24279:68;;24317:18;24328:6;24317:10;:18::i;28274:131::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;28340:29;28362:6;28340:21;:29::i;:::-;28382:7;:15;;-1:-1:-1;;28382:15:0;;;1368:57;;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;28274:131;;:::o;26329:141::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;26400:16;26409:6;26400:8;:16::i;:::-;26395:68;;26433:18;26444:6;26433:10;:18::i;33541:1119::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33541:1119:0;;;-1:-1:-1;33541:1119:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://92d070f3a541646e19a084a5ba056ce797bcca7a13c76bc989017c8b677076aa
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.
Add Token to MetaMask (Web3)